/* ========================================
   Prism — White & Light Purple Professional Theme
   ======================================== */

/* ----- Custom Properties ----- */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f6fc;
  --bg-tertiary: #f1edf9;
  --purple: #7c3aed;
  --purple-dark: #6d28d9;
  --purple-light: #a78bfa;
  --purple-deep: #5b21b6;
  --purple-subtle: #ede9fe;
  --cyan: #06b6d4;
  --text-heading: #1e1b2e;
  --text-body: #4a4560;
  --text-muted: #7c7694;
  --border: rgba(124, 58, 237, 0.1);
  --border-hover: rgba(124, 58, 237, 0.25);
  --card-bg: #ffffff;
  --card-border: rgba(124, 58, 237, 0.1);
  --container: 1140px;
  --section-padding: 120px;
  --radius: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-card: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Reset ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

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

/* ----- Icon ----- */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ----- Scroll Progress Bar ----- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  z-index: 10000; transition: width 0.1s linear;
}

/* ----- Container ----- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--text-heading); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
}
h1 { font-size: 58px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.08; }
h2 { font-size: 40px; letter-spacing: -0.03em; }
h3 { font-size: 22px; font-weight: 600; }
p { color: var(--text-body); line-height: 1.7; }

/* ----- Section ----- */
.section { padding: var(--section-padding) 0; position: relative; }
.section-alt { background-color: var(--bg-secondary); }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 4px; border: 1px solid var(--border);
  background-color: var(--purple-subtle); font-size: 13px; font-weight: 600;
  color: var(--purple); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px;
}
.section-title { margin-bottom: 20px; }
.section-subtitle { font-size: 17px; color: var(--text-body); max-width: 560px; line-height: 1.75; }
.section-header { margin-bottom: 64px; }

/* ----- Navbar ----- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0;
  transition: background-color 0.3s ease, border-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95); border-bottom-color: var(--border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 14px 0;
  box-shadow: 0 1px 12px rgba(124, 58, 237, 0.06);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--text-heading); letter-spacing: -0.03em;
}
.nav-logo-icon { color: var(--purple); font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 450; color: var(--text-muted); transition: color var(--transition); position: relative; }
.nav-links a:not(.nav-cta):hover { color: var(--text-heading); }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--purple); transition: width var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--purple); color: #fff !important; padding: 9px 22px; border-radius: 4px;
  font-weight: 600; font-size: 14px; transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  cursor: pointer; box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}
.nav-cta:hover { transform: translateY(-1px); background-color: var(--purple-dark); box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { width: 22px; height: 2px; background-color: var(--text-heading); border-radius: 1px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 500; color: var(--text-body); transition: color var(--transition); }
.mobile-menu a:hover { color: var(--purple); }

/* ----- Hero — Split Layout ----- */
.hero {
  padding: 140px 0 100px; min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.hero-grid-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.5) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; opacity: 0.25; }
.hero-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%); top: -100px; right: -100px; animation: floatOrb1 12s ease-in-out infinite; }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(167, 139, 250, 0.2), transparent 70%); bottom: -50px; left: -100px; animation: floatOrb2 15s ease-in-out infinite; }
.hero-orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(109, 40, 217, 0.15), transparent 70%); top: 40%; left: 50%; animation: floatOrb3 10s ease-in-out infinite; }

@keyframes floatOrb1 { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(-30px, 20px); } 66% { transform: translate(20px, -30px); } }
@keyframes floatOrb2 { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(25px, -15px); } 66% { transform: translate(-20px, 25px); } }
@keyframes floatOrb3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-40px, -20px); } }

#hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
#particle-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: 0.5; }

.hero .container { position: relative; z-index: 2; }

.hero-split { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  border-radius: 4px; border: 1px solid var(--border); background-color: var(--purple-subtle);
  font-size: 13px; font-weight: 500; color: var(--text-body); margin-bottom: 32px;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background-color: #22c55e; flex-shrink: 0; position: relative; }
.hero-badge-dot::after {
  content: ''; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px;
  border-radius: 50%; background-color: rgba(34, 197, 94, 0.3); animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.6); opacity: 0; } }

.hero-title { margin-bottom: 24px; }
.hero-title-line { display: block; }
.gradient-text {
  background: linear-gradient(90deg, var(--purple), var(--purple-light), var(--purple-deep), var(--purple));
  background-size: 300% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.typewriter-cursor { color: var(--purple); font-weight: 300; animation: blink 1s step-end infinite; -webkit-text-fill-color: var(--purple); }
@keyframes blink { 50% { opacity: 0; } }

.hero-subtitle { font-size: 17px; color: var(--text-body); max-width: 540px; line-height: 1.75; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 14px; margin-bottom: 48px; }

/* ----- Buttons ----- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; background: var(--purple); color: #fff; border-radius: 4px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.2); position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); background-color: var(--purple-dark); box-shadow: 0 6px 24px rgba(124, 58, 237, 0.3); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px;
  background-color: transparent; color: var(--text-heading); border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 4px; font-weight: 500; font-size: 15px; cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), background-color var(--transition);
}
.btn-secondary:hover { border-color: var(--purple); background-color: var(--purple-subtle); transform: translateY(-2px); }

/* Hero metrics */
.hero-metrics { display: flex; gap: 48px; }
.hero-metric-value { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700; color: var(--text-heading); letter-spacing: -0.02em; }
.hero-metric-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* ----- Floating Boxes ----- */
.hero-floating-area { position: relative; min-height: 480px; }

.floating-box {
  position: absolute; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 16px 20px; box-shadow: 0 4px 24px rgba(124, 58, 237, 0.06);
  animation: floatBox ease-in-out infinite; z-index: 3; white-space: nowrap;
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.fb-review { top: 10%; left: -20px; max-width: 280px; white-space: normal; }
.fb-review .fb-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 8px; }
.fb-review p { font-size: 14px; color: var(--text-body); line-height: 1.6; font-style: italic; margin-bottom: 8px; }
.fb-review .fb-author { font-size: 12px; color: var(--text-muted); font-weight: 500; }

.fb-stat { top: 5%; right: 0; display: flex; align-items: center; gap: 12px; }
.fb-stat .icon { color: var(--purple); }
.fb-stat .fb-stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--text-heading); }
.fb-stat .fb-stat-label { font-size: 12px; color: var(--text-muted); }

.fb-badge { top: 45%; right: 10px; display: flex; align-items: center; gap: 10px; }
.fb-badge .icon { color: #22c55e; }
.fb-badge span { font-size: 13px; font-weight: 600; color: var(--text-heading); }

.fb-tech { bottom: 25%; left: 0; flex-direction: column; align-items: flex-start; gap: 8px; }
.fb-tech-label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-heading); }
.fb-tech-label .icon { color: var(--purple); }
.fb-bar { width: 140px; height: 6px; background: var(--purple-subtle); border-radius: 3px; overflow: hidden; }
.fb-bar-fill { width: 92%; height: 100%; background: var(--purple); border-radius: 3px; animation: barGrow 2s ease-out forwards; }
@keyframes barGrow { from { width: 0; } to { width: 92%; } }

.fb-rating { bottom: 10%; right: 20px; display: flex; align-items: center; gap: 10px; }
.fb-rating .icon { color: #ef4444; }
.fb-rating span { font-size: 13px; font-weight: 600; color: var(--text-heading); }

/* ----- Social Proof Marquee ----- */
.social-proof {
  background: var(--purple-subtle); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 16px 0; overflow: hidden; position: relative;
}
.social-proof-track {
  display: flex; gap: 48px; animation: marquee 30s linear infinite; width: max-content;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.social-proof-item {
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 14px; font-weight: 500; color: var(--text-body);
}
.social-proof-item .icon { color: var(--purple); }

/* ----- Cards (global) ----- */
.card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 36px; transition: border-color var(--transition-card), transform var(--transition-card), box-shadow var(--transition-card);
  position: relative; overflow: hidden;
}
.card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08); }
.card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124, 58, 237, 0.04), transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity var(--transition-card); border-radius: inherit;
}
.card:hover::after { opacity: 1; }

/* ----- Services — Bento Grid ----- */
.services-bento {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-featured { grid-row: span 2; display: flex; flex-direction: column; }
.service-featured .service-desc { flex: 1; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--purple); opacity: 0; transition: opacity var(--transition-card);
}
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 48px; height: 48px; border-radius: 4px; background: var(--purple-subtle);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background-color var(--transition); color: var(--purple);
}
.service-card:hover .service-icon-wrap { background: rgba(124, 58, 237, 0.12); }
.service-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: var(--text-heading); margin-bottom: 10px; }
.service-desc { font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 18px; }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.service-tag { padding: 4px 10px; border-radius: 3px; border: 1px solid var(--border); background-color: var(--bg-secondary); font-size: 12px; font-weight: 500; color: var(--text-muted); }

/* ----- Why Prism Tabs ----- */
.why-tabs {
  display: flex; gap: 4px; margin-bottom: 40px; border-bottom: 2px solid var(--border); padding-bottom: 0;
}
.why-tab {
  padding: 12px 24px; font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--text-muted); cursor: pointer; border: none; background: none;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.why-tab .icon { color: inherit; }
.why-tab:hover { color: var(--text-heading); }
.why-tab.active { color: var(--purple); border-bottom-color: var(--purple); }
.why-tab-content { display: none; animation: fadeIn 0.4s ease; }
.why-tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.why-tab-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-tab-text h3 { font-size: 26px; margin-bottom: 16px; color: var(--text-heading); }
.why-tab-text p { font-size: 16px; line-height: 1.75; margin-bottom: 20px; }
.why-tab-features { display: flex; flex-direction: column; gap: 14px; }
.why-tab-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-body); }
.why-tab-feature-icon {
  width: 24px; height: 24px; border-radius: 4px; background: var(--purple-subtle);
  display: flex; align-items: center; justify-content: center; color: var(--purple); flex-shrink: 0; margin-top: 2px;
}
.why-tab-visual {
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 320px; text-align: center; position: relative; overflow: hidden;
}
.why-tab-visual::before {
  content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08), transparent 70%);
  top: -40px; right: -40px; pointer-events: none;
}
.why-tab-visual-icon { margin-bottom: 16px; color: var(--purple); }
.why-tab-visual-label { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: var(--text-heading); }

/* ----- Process ----- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps-line {
  position: absolute; top: 32px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), var(--border-hover), transparent);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
  display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  border-radius: 4px; background-color: var(--bg-primary); border: 1px solid var(--card-border);
  color: var(--purple); margin-bottom: 24px;
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}
.section-alt .process-number { background-color: var(--bg-secondary); }
.process-step:hover .process-number {
  background: var(--purple); border-color: var(--purple); color: #fff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
}
.process-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: var(--text-heading); margin-bottom: 8px; }
.process-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; max-width: 210px; margin: 0 auto; }

/* ----- Testimonials — Staggered Grid ----- */
.testimonials-section { position: relative; overflow: hidden; }
.testimonials-section::before {
  content: ''; position: absolute; top: 0; right: -200px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.04), transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.testimonials-stagger { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }

.testimonial-card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 32px; transition: border-color var(--transition-card), transform var(--transition-card), box-shadow var(--transition-card);
  position: relative;
}
.testimonial-offset { transform: translateY(24px); }
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08); }
.testimonial-offset:hover { transform: translateY(21px); }

.testimonial-quote-mark {
  position: absolute; top: 16px; right: 16px; color: var(--purple-subtle);
}
.testimonial-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 4px; background: var(--purple-subtle);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: var(--purple); flex-shrink: 0;
}
.testimonial-name { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; color: var(--text-heading); }
.testimonial-role { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.testimonials-summary { text-align: center; font-size: 15px; color: var(--text-muted); }
.testimonials-summary strong { color: var(--text-heading); }

/* ----- About ----- */
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; margin-bottom: 64px; }
.about-card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 44px; text-align: center; position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: -40px; right: -40px; width: 120px; height: 120px;
  border-radius: 50%; background: radial-gradient(circle, rgba(124, 58, 237, 0.08), transparent 70%); pointer-events: none;
}
.about-card::after {
  content: ''; position: absolute; bottom: -30px; left: -30px; width: 100px; height: 100px;
  border-radius: 50%; background: radial-gradient(circle, rgba(167, 139, 250, 0.06), transparent 70%); pointer-events: none;
}
.about-avatar {
  width: 80px; height: 80px; border-radius: 4px; background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; color: #fff;
  margin: 0 auto 22px; box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
}
.about-name { font-family: 'Space Grotesk', sans-serif; font-size: 21px; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.about-role { font-size: 14px; color: var(--text-muted); margin-bottom: 22px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.about-badge {
  padding: 5px 14px; border-radius: 3px; border: 1px solid var(--border); background-color: var(--purple-subtle);
  font-size: 12px; font-weight: 500; color: var(--purple); display: flex; align-items: center; gap: 6px;
}
.about-text h3 { font-family: 'Space Grotesk', sans-serif; font-size: 28px; margin-bottom: 20px; }
.about-text p { font-size: 16px; line-height: 1.75; margin-bottom: 16px; }

.about-stats { display: flex; gap: 24px; }
.about-stat-card {
  flex: 1; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 28px; text-align: center;
  transition: border-color var(--transition-card), transform var(--transition-card), box-shadow var(--transition-card);
}
.about-stat-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08); }
.about-stat-icon { color: var(--purple); margin-bottom: 12px; }
.about-stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700; color: var(--text-heading); letter-spacing: -0.02em; }
.about-stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* ----- Contact ----- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: 'Space Grotesk', sans-serif; font-size: 38px; margin-bottom: 16px; }
.contact-info-subtitle { font-size: 17px; color: var(--text-body); margin-bottom: 32px; line-height: 1.75; }
.contact-details-list { display: flex; flex-direction: column; gap: 18px; }
.contact-detail { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--text-body); }
.contact-detail-icon { color: var(--purple); flex-shrink: 0; width: 20px; display: flex; justify-content: center; }

.contact-form-card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 44px;
}
.contact-form-title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--text-heading); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--text-body); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; background-color: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 4px; color: var(--text-heading); font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237c7694' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-select option { background-color: var(--bg-primary); color: var(--text-heading); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-captcha { display: flex; justify-content: center; overflow: hidden; }
.form-captcha .h-captcha { transform-origin: center; }
@media (max-width: 360px) {
  .form-captcha .h-captcha { transform: scale(0.85); margin: -8px 0; }
}

.form-submit {
  width: 100%; padding: 14px 28px; background: var(--purple); color: #fff; border-radius: 4px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.2); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.5s ease;
}
.form-submit:hover::before { left: 100%; }
.form-submit:hover { transform: translateY(-2px); background-color: var(--purple-dark); box-shadow: 0 6px 24px rgba(124, 58, 237, 0.3); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-submit .icon { color: #fff; }

/* Sending animation overlay */
.form-sending-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.95); z-index: 10;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); animation: sendingFadeIn 0.3s ease;
}
@keyframes sendingFadeIn { from { opacity: 0; } to { opacity: 1; } }
.form-sending-content { text-align: center; }
.form-sending-envelope {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; animation: envelopeFly 1.2s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
@keyframes envelopeFly {
  0% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-16px) scale(1.05); }
  50% { transform: translateY(-20px) scale(1.08); }
  70% { transform: translateY(-16px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}
.form-sending-dots {
  display: flex; justify-content: center; gap: 6px; margin-bottom: 16px;
}
.form-sending-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--purple);
  animation: sendingDot 1.2s ease-in-out infinite;
}
.form-sending-dots span:nth-child(2) { animation-delay: 0.2s; }
.form-sending-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes sendingDot {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.form-sending-text {
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--text-heading);
}

/* Error message */
.form-error {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; margin-bottom: 16px;
  background: #fef2f2; border: 1px solid #fecaca; border-radius: 4px;
  font-size: 13px; color: #dc2626; animation: shakeError 0.4s ease;
}
.form-error .icon { color: #dc2626; flex-shrink: 0; }
@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.form-success { text-align: center; padding: 48px 20px; animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.form-success-icon {
  width: 60px; height: 60px; border-radius: 4px; background: var(--purple);
  display: flex; align-items: center; justify-content: center; color: #fff;
  margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
}
@keyframes successPop { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.form-success h3 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--text-muted); }

/* ----- Footer ----- */
.footer {
  position: relative; padding: 64px 0 0; background-color: var(--bg-secondary); border-top: 1px solid var(--border);
}
.footer-neon-line {
  position: absolute; top: 0; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--purple-light), transparent); opacity: 0.3;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--text-heading); margin-bottom: 14px; letter-spacing: -0.02em;
}
.footer-brand-icon { color: var(--purple); font-size: 16px; }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-width: 300px; }
.footer-heading {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--text-heading); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--purple); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copyright { font-size: 13px; color: var(--text-muted); }
.footer-socials { display: flex; gap: 24px; }
.footer-socials a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-socials a:hover { color: var(--purple); }

/* ----- Footer CTA Banner ----- */
.footer-cta-banner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 36px 44px; margin-bottom: 56px;
  background: linear-gradient(135deg, var(--purple-subtle), rgba(124, 58, 237, 0.08));
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.footer-cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.footer-cta-text h3 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.footer-cta-text p { font-size: 15px; color: var(--text-body); }
.footer-cta-btn { display: inline-flex; align-items: center; gap: 8px; }
.footer-bg-dots {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 32px 32px; opacity: 0.4; pointer-events: none;
}

/* ----- WhyPrism Visual Illustrations ----- */
.why-visual-pricing {
  display: flex; gap: 12px; align-items: flex-end; justify-content: center;
  padding: 20px 0; width: 100%;
}
.wvp-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 16px; text-align: center; flex: 1; max-width: 140px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: wvpFloat 3s ease-in-out infinite;
}
.wvp-card-1 { animation-delay: 0s; }
.wvp-card-2 { animation-delay: 0.3s; }
.wvp-card-3 { animation-delay: 0.6s; }
@keyframes wvpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.wvp-card-highlight {
  border-color: var(--purple); transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}
.wvp-card-highlight:hover { transform: scale(1.1) translateY(-6px); }
.wvp-badge-pop {
  font-size: 9px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
  color: #fff; background: var(--purple); padding: 3px 10px; border-radius: 3px;
  margin: -10px auto 10px; display: inline-block;
}
.wvp-card-header { font-size: 11px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.wvp-card-price { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--text-heading); margin-bottom: 12px; }
.wvp-card-items { display: flex; flex-direction: column; gap: 6px; }
.wvp-card-items span {
  display: block; height: 6px; background: var(--bg-secondary); border-radius: 3px;
  animation: barShimmer 2s ease-in-out infinite;
}
@keyframes barShimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* All-in-one hub visual */
.why-visual-allinone {
  position: relative; width: 100%; height: 280px; display: flex; align-items: center; justify-content: center;
}
.wva-hub {
  width: 64px; height: 64px; border-radius: 50%; background: var(--purple);
  display: flex; align-items: center; justify-content: center; color: #fff;
  position: relative; z-index: 2; box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
  animation: hubPulse 2s ease-in-out infinite;
}
@keyframes hubPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3); }
  50% { box-shadow: 0 4px 40px rgba(124, 58, 237, 0.5); }
}
.wva-spoke {
  position: absolute; display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 10px 14px; font-size: 11px; font-weight: 600; color: var(--text-heading);
  z-index: 2; transition: transform 0.3s, box-shadow 0.3s;
}
.wva-spoke .icon { color: var(--purple); }
.wva-spoke:hover { transform: scale(1.1); box-shadow: 0 4px 16px rgba(124, 58, 237, 0.12); }
.wva-spoke-1 { top: 10%; left: 50%; transform: translateX(-50%); }
.wva-spoke-2 { top: 35%; right: 5%; }
.wva-spoke-3 { bottom: 10%; right: 15%; }
.wva-spoke-4 { bottom: 10%; left: 15%; }
.wva-spoke-5 { top: 35%; left: 5%; }
.wva-line {
  position: absolute; top: 50%; left: 50%; width: 1px; background: var(--border-hover);
  transform-origin: top center; z-index: 1; opacity: 0.5;
}
.wva-line-1 { height: 80px; transform: rotate(0deg) translateY(-80px); }
.wva-line-2 { height: 90px; transform: rotate(72deg) translateY(-90px); }
.wva-line-3 { height: 100px; transform: rotate(144deg) translateY(-100px); }
.wva-line-4 { height: 100px; transform: rotate(216deg) translateY(-100px); }
.wva-line-5 { height: 90px; transform: rotate(288deg) translateY(-90px); }

/* Global visual */
.why-visual-global {
  display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 20px 0;
}
.wvg-globe {
  position: relative; width: 160px; height: 160px;
  display: flex; align-items: center; justify-content: center;
}
.wvg-globe .icon { color: var(--purple); z-index: 2; position: relative; }
.wvg-ring {
  position: absolute; border: 1px solid var(--border-hover); border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
}
.wvg-ring-1 { width: 80px; height: 80px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0s; }
.wvg-ring-2 { width: 120px; height: 120px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0.5s; }
.wvg-ring-3 { width: 160px; height: 160px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 1s; }
@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}
.wvg-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple); animation: dotBlink 2s ease-in-out infinite;
}
.wvg-dot-1 { top: 20%; left: 15%; animation-delay: 0s; }
.wvg-dot-2 { top: 10%; right: 25%; animation-delay: 0.4s; }
.wvg-dot-3 { bottom: 25%; right: 10%; animation-delay: 0.8s; }
.wvg-dot-4 { bottom: 15%; left: 20%; animation-delay: 1.2s; }
.wvg-dot-5 { top: 50%; right: 5%; animation-delay: 1.6s; }
@keyframes dotBlink {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}
.wvg-labels { display: flex; gap: 16px; }
.wvg-label {
  padding: 4px 14px; border-radius: 3px; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; color: var(--purple); background: var(--purple-subtle);
  border: 1px solid var(--border);
  animation: labelFloat 3s ease-in-out infinite;
}
.wvg-label-1 { animation-delay: 0s; }
.wvg-label-2 { animation-delay: 0.5s; }
.wvg-label-3 { animation-delay: 1s; }
@keyframes labelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ----- Process Section Enhancements ----- */
.process-section { position: relative; overflow: hidden; }
.process-bg-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06), transparent 70%);
}
.process-bg-orb-1 { width: 400px; height: 400px; top: -100px; left: -100px; animation: orbDrift 8s ease-in-out infinite; }
.process-bg-orb-2 { width: 300px; height: 300px; bottom: -80px; right: -60px; animation: orbDrift 10s ease-in-out infinite reverse; }
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 15px); }
}
.process-step-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 800;
  color: rgba(124, 58, 237, 0.06); position: absolute; top: -10px; right: 10px;
  line-height: 1; pointer-events: none; z-index: 0;
}
.process-step-glow {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08), transparent 70%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.process-step:hover .process-step-glow { opacity: 1; }
.process-step { position: relative; z-index: 1; }

/* Process Speed Banner */
.process-speed-banner {
  display: flex; align-items: center; gap: 24px;
  margin-top: 56px; padding: 28px 36px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: var(--radius); color: #fff;
  position: relative; overflow: hidden;
}
.process-speed-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.process-speed-banner::after {
  content: ''; position: absolute; bottom: -40%; left: 10%; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.speed-banner-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; animation: speedPulse 2s ease-in-out infinite;
}
.speed-banner-icon .icon { color: #fff; }
@keyframes speedPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.speed-banner-content { flex: 1; }
.speed-banner-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700;
  margin-bottom: 4px;
}
.speed-banner-text { font-size: 14px; opacity: 0.85; line-height: 1.6; }
.speed-banner-stat {
  text-align: center; flex-shrink: 0;
  padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.2);
}
.speed-banner-stat-value {
  font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 800; letter-spacing: -0.02em;
}
.speed-banner-stat-label { font-size: 12px; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }

/* ----- Testimonials Enhancements ----- */
.testimonials-deco-quote {
  position: absolute; top: 60px; left: 40px;
  font-family: 'Georgia', serif; font-size: 200px; line-height: 1;
  color: rgba(124, 58, 237, 0.04); pointer-events: none; z-index: 0;
}
.testimonials-deco-dots {
  position: absolute; top: 40%; right: 30px; display: grid;
  grid-template-columns: repeat(3, 8px); gap: 12px; pointer-events: none; z-index: 0;
}
.testimonials-deco-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--purple);
  opacity: 0.06;
}
.testimonial-card-shine {
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.03), transparent);
  transition: left 0.6s ease; pointer-events: none;
}
.testimonial-card:hover .testimonial-card-shine { left: 100%; }

/* Testimonials Empty State */
.testimonials-empty {
  display: flex; justify-content: center; padding: 20px 0;
}
.testimonials-empty-card {
  text-align: center; padding: 48px 40px; max-width: 520px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); position: relative; overflow: hidden;
}
.testimonials-empty-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-glow));
}
.testimonials-empty-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--purple-subtle); color: var(--purple); margin-bottom: 20px;
}
.testimonials-empty-title {
  font-size: 20px; font-weight: 700; color: var(--text-heading); margin-bottom: 12px;
}
.testimonials-empty-text {
  font-size: 15px; line-height: 1.7; color: var(--text-body);
}

.testimonials-trust-bar {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  padding: 24px 36px; margin-top: 32px;
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text-body);
}
.trust-item .icon { color: var(--purple); }
.trust-item strong { color: var(--text-heading); }
.trust-divider { width: 1px; height: 28px; background: var(--border); }

/* ----- About Section Enhancements ----- */
.about-section { position: relative; overflow: hidden; }
.about-bg-shape {
  position: absolute; top: 50%; right: -150px; width: 400px; height: 400px;
  border: 1px solid var(--border); border-radius: 50%;
  transform: translateY(-50%); pointer-events: none; opacity: 0.4;
}
.about-card-glow {
  position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light), var(--purple));
  border-radius: var(--radius); z-index: -1; opacity: 0;
  transition: opacity 0.4s; filter: blur(8px);
}
.about-card:hover .about-card-glow { opacity: 0.15; }
.about-card-status {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 20px; font-size: 13px; color: var(--text-muted);
}
.about-status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: statusBlink 2s ease-in-out infinite;
}
@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ----- Expand Button ----- */
.expand-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 24px auto 0; padding: 12px 28px;
  background: var(--purple-subtle); border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--purple); transition: var(--transition);
}
.expand-btn:hover { background: rgba(124, 58, 237, 0.12); border-color: var(--border-hover); }
.expand-btn .icon { color: var(--purple); }

/* ----- WhyPrism Accordion (mobile) ----- */
.why-accordion { display: flex; flex-direction: column; gap: 8px; }
.why-acc-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card-bg); overflow: hidden;
  transition: border-color var(--transition);
}
.why-acc-item.open { border-color: var(--border-hover); }
.why-acc-header {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 16px 20px; border: none; background: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--text-heading);
}
.why-acc-header-left { display: flex; align-items: center; gap: 10px; }
.why-acc-header-left .icon { color: var(--purple); }
.why-acc-arrow { font-size: 20px; color: var(--purple); font-weight: 300; }
.why-acc-body {
  padding: 0 20px 20px; animation: accOpen 0.3s ease;
}
.why-acc-body h3 { font-size: 18px; margin-bottom: 8px; color: var(--text-heading); }
.why-acc-body p { font-size: 14px; line-height: 1.7; margin-bottom: 14px; color: var(--text-body); }
@keyframes accOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ----- Contact Section Enhancements ----- */
.contact-section { position: relative; overflow: hidden; }
.contact-bg-gradient {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.04), transparent 60%);
  pointer-events: none;
}
.contact-bg-grid {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none; opacity: 0.6;
}

/* ----- Responsive ----- */
/* ----- Theme Showcase ----- */
.theme-showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.theme-showcase-info .section-tag { margin-bottom: 16px; }
.theme-showcase-info .section-title { margin-bottom: 12px; }
.theme-showcase-info .section-subtitle { margin-bottom: 28px; }

.theme-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.theme-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card-bg);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.theme-pill:hover {
  border-color: var(--border-hover);
  background: var(--bg-secondary);
}
.theme-pill.active {
  border-color: var(--purple);
  background: var(--purple-subtle);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.15);
}
.theme-pill-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-heading);
  min-width: 60px;
}
.theme-pill-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* -- Preview container -- */
.theme-preview {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.theme-preview.theme-transitioning .tp-content {
  opacity: 0;
  transform: scale(0.97);
}

.tp-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.4s, border-color 0.4s;
}
.tp-dots {
  display: flex;
  gap: 5px;
}
.tp-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.4s;
}
.tp-dots span:first-child { background: #ff5f57; }
.tp-dots span:nth-child(2) { background: #ffbd2e; }
.tp-dots span:last-child { background: #28c840; }
.tp-url {
  flex: 1;
  background: #fff;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 11px;
  color: #888;
  text-align: center;
  transition: background 0.4s, color 0.4s;
}

.tp-content {
  padding: 24px;
  min-height: 300px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: scale(1);
}

.tp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
  transition: border-color 0.4s;
}
.tp-logo {
  font-weight: 700;
  font-size: 16px;
  color: #333;
  transition: color 0.4s, font-family 0.4s;
}
.tp-nav-links {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: #888;
  transition: color 0.4s, font-family 0.4s;
}

.tp-hero-area {
  text-align: center;
  padding: 20px 0;
}
.tp-badge-line {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 10px;
  padding: 4px 12px;
  border: 1px solid #eee;
  border-radius: 20px;
  transition: all 0.4s;
}
.tp-heading {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  transition: all 0.4s;
}
.tp-subtext {
  font-size: 12px;
  color: #888;
  margin-bottom: 16px;
  transition: all 0.4s;
}
.tp-cta-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.tp-btn-primary {
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--purple);
  transition: all 0.4s;
}
.tp-btn-secondary {
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #555;
  border: 1px solid #ddd;
  transition: all 0.4s;
}

.tp-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.tp-card {
  text-align: center;
  padding: 14px 8px;
  border-radius: 6px;
  border: 1px solid #eee;
  background: #fafafa;
  transition: all 0.4s;
}
.tp-card-icon {
  margin-bottom: 6px;
  color: var(--purple);
  transition: color 0.4s;
}
.tp-card-title {
  font-size: 11px;
  font-weight: 600;
  color: #555;
  transition: color 0.4s;
}

.tp-theme-label {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0,0,0,0.2);
  font-weight: 700;
  transition: color 0.4s;
}

/* ---- Theme: Clean (default look, already styled above) ---- */

/* ---- Theme: Modern ---- */
.theme-modern .tp-content {
  background: linear-gradient(135deg, #0f0f1a, #1a1a2e);
}
.theme-modern .tp-topbar {
  background: #12121f;
  border-color: #2a2a40;
}
.theme-modern .tp-url {
  background: #1a1a2e;
  color: #6c6c90;
}
.theme-modern .tp-nav { border-color: #2a2a40; }
.theme-modern .tp-logo { color: #e0e0ff; }
.theme-modern .tp-nav-links { color: #7c7ca0; }
.theme-modern .tp-badge-line {
  color: #a78bfa;
  border-color: #a78bfa44;
  background: rgba(167, 139, 250, 0.08);
}
.theme-modern .tp-heading { color: #fff; }
.theme-modern .tp-subtext { color: #8888aa; }
.theme-modern .tp-btn-primary {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}
.theme-modern .tp-btn-secondary {
  color: #a78bfa;
  border-color: #a78bfa55;
}
.theme-modern .tp-card {
  background: rgba(255,255,255,0.04);
  border-color: #2a2a40;
}
.theme-modern .tp-card-icon { color: #a78bfa; }
.theme-modern .tp-card-title { color: #ccc; }
.theme-modern .tp-theme-label { color: rgba(255,255,255,0.15); }

/* ---- Theme: Retro ---- */
.theme-retro .tp-content {
  background: #ece9d8;
  font-family: 'Tahoma', 'MS Sans Serif', sans-serif;
}
.theme-retro .tp-topbar {
  background: linear-gradient(180deg, #0a246a, #3a6ea5);
  border-color: #0a246a;
}
.theme-retro .tp-url {
  background: #fff;
  color: #333;
  border-radius: 0;
  border: 1px inset #888;
}
.theme-retro .tp-dots span { border-radius: 0; width: 14px; height: 14px; }
.theme-retro .tp-dots span:first-child { background: #d4d0c8; }
.theme-retro .tp-dots span:nth-child(2) { background: #d4d0c8; }
.theme-retro .tp-dots span:last-child { background: #d4d0c8; }
.theme-retro .tp-nav {
  border-color: #808080;
  border-bottom-style: solid;
}
.theme-retro .tp-logo {
  color: #0a246a;
  font-family: 'Tahoma', sans-serif;
}
.theme-retro .tp-nav-links {
  color: #0a246a;
  text-decoration: underline;
  font-family: 'Tahoma', sans-serif;
}
.theme-retro .tp-badge-line {
  border: 2px outset #d4d0c8;
  border-radius: 0;
  background: #d4d0c8;
  color: #333;
}
.theme-retro .tp-heading {
  color: #003399;
  font-family: 'Tahoma', sans-serif;
}
.theme-retro .tp-subtext { color: #555; font-family: 'Tahoma', sans-serif; }
.theme-retro .tp-btn-primary {
  background: #0a246a;
  border: 2px outset #4a87c5;
  border-radius: 0;
}
.theme-retro .tp-btn-secondary {
  border: 2px outset #d4d0c8;
  background: #d4d0c8;
  border-radius: 0;
  color: #333;
}
.theme-retro .tp-card {
  background: #fff;
  border: 2px inset #d4d0c8;
  border-radius: 0;
}
.theme-retro .tp-card-icon { color: #0a246a; }
.theme-retro .tp-card-title { color: #333; font-family: 'Tahoma', sans-serif; }
.theme-retro .tp-theme-label { color: rgba(0,0,0,0.12); font-family: 'Tahoma', sans-serif; }

/* ---- Theme: Brutalist ---- */
.theme-brutalist .tp-content {
  background: #f5f5dc;
}
.theme-brutalist .tp-topbar {
  background: #111;
  border-color: #000;
}
.theme-brutalist .tp-url {
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
}
.theme-brutalist .tp-dots span { border-radius: 0; background: #ff0 !important; }
.theme-brutalist .tp-nav { border-color: #000; border-bottom-width: 3px; }
.theme-brutalist .tp-logo {
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
}
.theme-brutalist .tp-nav-links {
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
}
.theme-brutalist .tp-badge-line {
  border: 2px solid #000;
  border-radius: 0;
  color: #000;
  font-weight: 700;
  background: #ff0;
}
.theme-brutalist .tp-heading {
  color: #000;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.theme-brutalist .tp-subtext { color: #333; font-weight: 600; }
.theme-brutalist .tp-btn-primary {
  background: #000;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #000;
}
.theme-brutalist .tp-btn-secondary {
  border: 3px solid #000;
  border-radius: 0;
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
}
.theme-brutalist .tp-card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 0;
}
.theme-brutalist .tp-card-icon { color: #000; }
.theme-brutalist .tp-card-title { color: #000; font-weight: 800; text-transform: uppercase; }
.theme-brutalist .tp-theme-label { color: rgba(0,0,0,0.1); }

/* ---- Theme: Luxury ---- */
.theme-luxury .tp-content {
  background: linear-gradient(135deg, #0a0a0a, #1a1510);
}
.theme-luxury .tp-topbar {
  background: #0d0d0d;
  border-color: #2a2520;
}
.theme-luxury .tp-url {
  background: #1a1510;
  color: #c9a96e;
  font-family: 'Georgia', serif;
}
.theme-luxury .tp-dots span:first-child { background: #c9a96e; }
.theme-luxury .tp-dots span:nth-child(2) { background: #8a7450; }
.theme-luxury .tp-dots span:last-child { background: #5a4e38; }
.theme-luxury .tp-nav { border-color: #2a2520; }
.theme-luxury .tp-logo {
  color: #c9a96e;
  font-family: 'Georgia', serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
}
.theme-luxury .tp-nav-links {
  color: #8a7a60;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
}
.theme-luxury .tp-badge-line {
  border-color: #c9a96e44;
  color: #c9a96e;
  letter-spacing: 3px;
  background: rgba(201, 169, 110, 0.06);
}
.theme-luxury .tp-heading {
  color: #f5efe6;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}
.theme-luxury .tp-subtext {
  color: #8a7a60;
  font-family: 'Georgia', serif;
}
.theme-luxury .tp-btn-primary {
  background: linear-gradient(135deg, #c9a96e, #a08040);
  color: #0a0a0a;
  font-family: 'Georgia', serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 10px;
}
.theme-luxury .tp-btn-secondary {
  border-color: #c9a96e55;
  color: #c9a96e;
  font-family: 'Georgia', serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 10px;
}
.theme-luxury .tp-card {
  background: rgba(201, 169, 110, 0.05);
  border-color: #2a2520;
}
.theme-luxury .tp-card-icon { color: #c9a96e; }
.theme-luxury .tp-card-title {
  color: #d4c4a8;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}
.theme-luxury .tp-theme-label { color: rgba(201, 169, 110, 0.15); }

@media (max-width: 1024px) {
  h1 { font-size: 44px; }
  h2 { font-size: 32px; }
  :root { --section-padding: 100px; }

  .hero-split { grid-template-columns: 1fr; }
  .hero-floating-area { display: none; }

  .services-bento, .testimonials-stagger { grid-template-columns: repeat(2, 1fr); }
  .service-featured { grid-row: span 1; }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps-line { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-card { max-width: 360px; }
  .about-stats { flex-wrap: wrap; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-tab-panel { grid-template-columns: 1fr; }
  .testimonial-offset { transform: none; }
  .testimonial-offset:hover { transform: translateY(-3px); }
  .theme-showcase-layout { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  :root { --section-padding: 64px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 130px 0 70px; min-height: auto; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-metrics { flex-direction: column; gap: 16px; }

  .services-bento, .testimonials-stagger { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .about-stats { flex-direction: column; gap: 16px; }

  .card, .contact-form-card, .about-card { padding: 24px; }

  .why-tabs { flex-wrap: wrap; }
  .why-tab { padding: 10px 16px; font-size: 14px; }
  .why-tab-panel { grid-template-columns: 1fr; }

  .social-proof-item { font-size: 13px; }

  .footer-cta-banner { flex-direction: column; text-align: center; gap: 20px; padding: 28px; }
  .testimonials-trust-bar { flex-direction: column; gap: 16px; }
  .trust-divider { width: 40px; height: 1px; }
  .testimonials-deco-quote { font-size: 120px; top: 40px; left: 20px; }
  .testimonials-deco-dots { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .process-steps-line { display: none; }
  .process-step-num { font-size: 36px; }
  .process-speed-banner { flex-direction: column; text-align: center; padding: 24px; }
  .speed-banner-stat { padding-left: 0; border-left: none; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.2); }
  .why-visual-allinone { height: 220px; }
  .wva-spoke { padding: 8px 10px; font-size: 10px; }

  .theme-pills { flex-direction: row; flex-wrap: wrap; }
  .theme-pill { padding: 8px 14px; }
  .theme-pill-desc { display: none; }
  .tp-heading { font-size: 18px; }
  .tp-content { padding: 16px; min-height: 260px; }

  /* Reduce heavy effects on mobile — keep particles */
  #hero-canvas { display: none !important; }
  .card::after { display: none; }
  .about-card-glow { display: none; }
  .testimonial-card-shine { display: none; }
  .process-bg-orb { display: none; }
  .contact-bg-grid { display: none; }
  .footer-bg-dots { display: none; }
}
