*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
:root {
  --heading: #0f172a; --body: #64748b; --muted: #94a3b8;
  --white: #ffffff; --surface: #f8fafc; --border: #e2e8f0;
  --purple: #8b5cf6; --purple-dark: #7c3aed; --cyan: #22d3ee;
  --gradient: linear-gradient(90deg, #8b5cf6 0%, #6366f1 45%, #22d3ee 100%);
  --gradient-btn: linear-gradient(90deg, #8b5cf6 0%, #6366f1 50%, #38bdf8 100%);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md: 0 8px 30px rgba(139,92,246,0.12);
  --shadow-hover: 0 12px 40px rgba(139,92,246,0.18);
  --radius: 12px; --radius-lg: 20px; --radius-pill: 100px;
  --t: 0.22s cubic-bezier(0.4,0,0.2,1);
}
body { background: var(--white); color: var(--heading); font-family: 'Inter', -apple-system, sans-serif; font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; }
.text-gradient {
  background: var(--gradient); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.38rem 0.9rem; font-size: 0.75rem; font-weight: 500;
  color: var(--purple-dark); background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.2); border-radius: var(--radius-pill);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.6rem; border-radius: var(--radius-pill);
  font-size: 0.88rem; font-weight: 600; color: #fff; text-decoration: none;
  background: var(--gradient-btn);
  box-shadow: 0 4px 20px rgba(139,92,246,0.35);
  transition: transform var(--t), box-shadow var(--t);
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(139,92,246,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.6rem; border-radius: var(--radius-pill);
  font-size: 0.88rem; font-weight: 500; color: #334155; text-decoration: none;
  background: var(--white); border: 1px solid var(--border);
  transition: border-color var(--t), background var(--t);
}
.btn-secondary:hover { border-color: #cbd5e1; background: var(--surface); }
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px;
  background: rgba(255,255,255,0.9); backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
}
.logo { font-weight: 700; font-size: 1rem; letter-spacing: -0.02em; color: var(--heading); text-decoration: none; }
.logo sup { font-size: 0.5rem; letter-spacing: 0.04em; color: var(--muted); vertical-align: super; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  display: block; padding: 0.4rem 0.85rem; font-size: 0.84rem; font-weight: 500;
  color: var(--body); text-decoration: none; border-radius: var(--radius-pill);
  transition: color var(--t), background var(--t); line-height: 1.4;
}
.nav-links a:hover { color: var(--heading); background: var(--surface); }
.nav-links a.active { color: var(--heading); background: rgba(139,92,246,0.1); }
.nav-cta {
  font-size: 0.84rem !important; font-weight: 600 !important; color: #fff !important;
  background: var(--gradient-btn) !important; padding: 0.5rem 1.15rem !important;
  border-radius: var(--radius-pill) !important; line-height: 1.4 !important;
  box-shadow: 0 2px 12px rgba(139,92,246,0.3);
  transition: transform var(--t), box-shadow var(--t) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(139,92,246,0.4) !important; }
.hero, .page-hero {
  position: relative; overflow: hidden;
  padding: 140px 5% 110px; text-align: center;
  background: #fff;
}
.page-hero { padding: 120px 5% 70px; }
.page-hero.compact { padding-bottom: 50px; }
.hero::before, .hero::after, .page-hero::before, .page-hero::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero::before, .page-hero::before {
  width: min(720px, 90vw); height: min(720px, 90vw);
  top: -20%; left: -15%;
  background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%);
}
.hero::after, .page-hero::after {
  width: min(640px, 85vw); height: min(640px, 85vw);
  top: -10%; right: -12%;
  background: radial-gradient(circle, rgba(34,211,238,0.16) 0%, transparent 70%);
}
.hero-inner, .page-hero-inner {
  position: relative; z-index: 1; max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.hero .badge-pill, .page-hero .badge-pill { margin-bottom: 1.75rem; }
.hero .badge-pill svg, .page-hero .badge-pill svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--purple); }
.hero h1, .page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.75rem); font-weight: 700;
  line-height: 1.12; letter-spacing: -0.03em; color: var(--heading);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.hero-line, .hero-gradient { display: block; }
.hero-gradient { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub, .page-hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem); color: var(--body);
  line-height: 1.7; margin-top: 1.5rem; max-width: 640px;
}
.hero-actions, .page-hero-actions {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.85rem; margin-top: 2.25rem;
}
.btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-highlights {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2rem;
  font-size: 0.8rem; color: var(--muted);
}
.hero-highlights span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-highlights .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--body); text-decoration: none; transition: color var(--t); }
.breadcrumb a:hover { color: var(--purple-dark); }
.breadcrumb span { margin: 0 0.35rem; opacity: 0.5; }
.section { position: relative; }
.section-alt { background: var(--surface); }
.section-wrap { max-width: 1140px; margin: 0 auto; padding: 100px 5%; }
.section-header {
  text-align: center; max-width: 640px; margin: 0 auto 3.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.section-header .badge-pill { margin-bottom: 1.25rem; }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.2; color: var(--heading);
}
.section-body {
  font-size: 1rem; color: var(--body); line-height: 1.7;
  max-width: 560px; margin-top: 1rem;
}
.product-suite-stats {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.75rem 1rem; margin-bottom: 2.5rem;
}
.suite-stat {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; font-size: 0.82rem; font-weight: 500; color: var(--body);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}
.suite-stat strong { color: var(--heading); font-weight: 700; }
.suite-stat .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.product-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  height: 100%; display: flex; flex-direction: column;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--card-accent, var(--gradient)); opacity: 0.9;
}
.product-card:hover {
  border-color: rgba(139,92,246,0.35);
  box-shadow: var(--shadow-hover); transform: translateY(-4px);
}
.product-card-content {
  padding: 1.5rem; flex-grow: 1;
  display: flex; flex-direction: column; gap: 0;
}
.product-card-content > .product-icon { margin-bottom: 1rem; }
.product-card-content > .product-meta-top { margin-bottom: 0.5rem; }
.product-card-content > .product-name { margin-bottom: 0.15rem; }
.product-card-content > .product-tagline { margin-bottom: 0.65rem; }
.product-card-content > .product-desc { margin-top: 0; margin-bottom: 0.75rem; font-size: 0.85rem; }
.product-card-content > .product-metric { margin-top: 0; }
.product-card-content > .product-chips { margin-top: auto; padding-top: 0.75rem; }
.product-card-content .product-name { font-size: 1.1rem; }
.product-card-inner { padding: 1.75rem 1.75rem 0; flex-grow: 1; display: flex; flex-direction: column; }
.product-card-body { padding: 0 1.75rem; flex-grow: 1; }
.product-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.25rem; gap: 1rem;
}
.product-card-head { display: flex; align-items: flex-start; gap: 1rem; flex: 1; min-width: 0; }
.product-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.product-icon svg { width: 24px; height: 24px; }
.product-icon--flagship { background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(99,102,241,0.12)); color: var(--purple-dark); }
.product-icon--engagement { background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(139,92,246,0.1)); color: #4f46e5; }
.product-icon--growth { background: linear-gradient(135deg, rgba(34,211,238,0.2), rgba(56,189,248,0.12)); color: #0891b2; }
.product-icon--marketing { background: linear-gradient(135deg, rgba(56,189,248,0.2), rgba(34,211,238,0.12)); color: #0284c7; }
.product-meta-top { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.35rem; }
.product-num { font-size: 0.72rem; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; }
.product-badge {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 0.22rem 0.6rem; border-radius: var(--radius-pill);
}
.badge-flagship { background: rgba(139,92,246,0.12); color: var(--purple-dark); }
.badge-engagement { background: rgba(99,102,241,0.12); color: #4f46e5; }
.badge-growth { background: rgba(34,211,238,0.14); color: #0891b2; }
.badge-marketing { background: rgba(56,189,248,0.14); color: #0284c7; }
.product-name {
  font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.25; color: var(--heading);
}
.product-tagline {
  font-size: 0.8rem; font-weight: 500; color: var(--purple-dark);
  margin-top: 0.2rem; line-height: 1.35;
}
.product-desc {
  font-size: 0.9rem; color: var(--body); line-height: 1.65;
  margin-top: 0.85rem; flex-grow: 1;
}
.product-metric {
  display: inline-flex; align-items: baseline; gap: 0.35rem;
  margin-top: 1rem; padding: 0.55rem 0.85rem;
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.product-metric strong {
  font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-metric span { font-size: 0.78rem; color: var(--body); font-weight: 500; }
.product-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin-top: 1.15rem;
}
.product-chips li {
  font-size: 0.75rem; font-weight: 500; color: var(--body);
  padding: 0.35rem 0.7rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-pill);
}
.product-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.product-features li {
  font-size: 0.82rem; color: var(--body); display: flex; align-items: center; gap: 0.5rem;
}
.product-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}
.product-card-footer {
  display: flex; flex-direction: column; align-items: stretch; gap: 0.75rem;
  padding: 1rem 1.5rem 1.5rem;
  margin-top: auto; border-top: 1px solid var(--border);
  background: var(--surface);
}
.product-best-for { font-size: 0.75rem; color: var(--muted); line-height: 1.45; }
.product-best-for em { font-style: normal; font-weight: 600; color: var(--heading); }
.product-card-actions { display: flex; flex-direction: column; gap: 0.5rem; }
.product-card-actions .btn-card { justify-content: center; text-align: center; }
.product-card-actions .product-card-link { justify-content: center; }
.product-card-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.85rem; font-weight: 600; color: var(--purple-dark); text-decoration: none;
  transition: color var(--t), gap var(--t);
}
.product-card-link:hover { color: var(--purple); gap: 0.5rem; }
.btn-card {
  display: inline-flex; align-items: center; padding: 0.55rem 1.1rem;
  font-size: 0.8rem; font-weight: 600; color: #fff; text-decoration: none;
  background: var(--gradient-btn); border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px rgba(139,92,246,0.25);
  transition: transform var(--t), box-shadow var(--t);
}
.btn-card:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(139,92,246,0.35); }
.product-suite-cta {
  margin-top: 2.5rem; padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(34,211,238,0.08));
  border: 1px solid rgba(139,92,246,0.18); border-radius: var(--radius-lg);
}
.product-suite-cta h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
.product-suite-cta p { font-size: 0.9rem; color: var(--body); margin-top: 0.35rem; max-width: 420px; }
.product-suite-cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.process-step {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.process-step:hover {
  border-color: rgba(139,92,246,0.25);
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.process-step-num {
  font-size: 0.8rem; font-weight: 700; color: var(--purple);
  background: rgba(139,92,246,0.1); width: 2rem; height: 2rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.process-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--heading); }
.process-step p { font-size: 0.85rem; color: var(--body); line-height: 1.65; }
.timeline { display: flex; flex-direction: column; gap: 1.25rem; }
.timeline-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem;
  padding: 2rem; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: box-shadow var(--t);
}
.timeline-item:hover { box-shadow: var(--shadow-md); }
.timeline-num {
  font-size: 0.8rem; font-weight: 700; color: var(--purple);
  background: rgba(139,92,246,0.1); width: 2.5rem; height: 2.5rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.timeline-item h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.9rem; color: var(--body); line-height: 1.65; }
.timeline-meta { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.value-card:hover {
  border-color: rgba(139,92,246,0.25);
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.value-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(34,211,238,0.15));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.1rem;
}
.value-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--heading); }
.value-card p { font-size: 0.85rem; color: var(--body); line-height: 1.65; }
.industries-list { display: flex; flex-direction: column; gap: 0.85rem; }
.industry-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 1.75rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  text-decoration: none; color: inherit;
}
.industry-row:hover {
  border-color: rgba(139,92,246,0.25);
  box-shadow: var(--shadow-sm); transform: translateX(4px);
}
.industry-row:hover .ind-arr { color: var(--purple); transform: translateX(4px); }
.ind-left { display: flex; align-items: center; gap: 1.25rem; }
.ind-num {
  font-size: 0.75rem; font-weight: 700; color: var(--purple);
  background: rgba(139,92,246,0.1); width: 1.75rem; height: 1.75rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ind-name { font-size: 1rem; font-weight: 600; color: var(--heading); }
.ind-desc { font-size: 0.88rem; color: var(--body); margin-left: auto; padding: 0 1.5rem; }
.ind-arr { color: var(--muted); transition: transform var(--t), color var(--t); font-size: 1rem; flex-shrink: 0; }
.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.industry-card {
  padding: 2rem; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: box-shadow var(--t), transform var(--t);
}
.industry-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.industry-card h3 { font-size: 1.15rem; font-weight: 600; margin: 1rem 0 0.5rem; }
.industry-card p { font-size: 0.88rem; color: var(--body); line-height: 1.65; }
.industry-card ul { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.industry-card li { font-size: 0.82rem; color: var(--body); display: flex; gap: 0.5rem; align-items: center; }
.industry-card li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.detail-panel {
  background: linear-gradient(135deg, rgba(139,92,246,0.06), rgba(34,211,238,0.06));
  border: 1px solid rgba(139,92,246,0.15); border-radius: var(--radius-lg); padding: 2rem;
}
.detail-panel h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.stat-box {
  text-align: center; padding: 1.5rem 1rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.stat-box strong { display: block; font-size: 1.75rem; font-weight: 700; letter-spacing: -0.03em; color: var(--heading); }
.stat-box span { font-size: 0.82rem; color: var(--body); margin-top: 0.25rem; display: block; }
.content-block h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.content-block p { font-size: 0.95rem; color: var(--body); line-height: 1.7; margin-bottom: 1rem; }
.content-block ul { list-style: none; margin: 1rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.content-block li { font-size: 0.9rem; color: var(--body); display: flex; gap: 0.5rem; align-items: flex-start; }
.content-block li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); margin-top: 0.5rem; flex-shrink: 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card {
  padding: 1.25rem; border: 1px solid var(--border); border-radius: var(--radius-lg);
  text-decoration: none; color: inherit; transition: box-shadow var(--t), border-color var(--t);
}
.related-card:hover { border-color: rgba(139,92,246,0.25); box-shadow: var(--shadow-sm); }
.related-card h4 { font-size: 0.95rem; font-weight: 600; margin-top: 0.5rem; }
.related-card p { font-size: 0.8rem; color: var(--body); margin-top: 0.35rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.5rem; align-items: start; }
.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.form-card h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.35rem; }
.form-card > p { font-size: 0.88rem; color: var(--body); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.15rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: 0.9rem; color: var(--heading);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
.info-stack { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--white);
}
.info-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }
.info-card p, .info-card a { font-size: 0.88rem; color: var(--body); text-decoration: none; }
.info-card a:hover { color: var(--purple-dark); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.team-card {
  text-align: center; padding: 2rem 1.5rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; color: #fff;
}
.team-card h4 { font-size: 1rem; font-weight: 600; }
.team-card p { font-size: 0.85rem; color: var(--body); margin-top: 0.35rem; }
.quote-wrap { padding: 0 5% 100px; max-width: 1140px; margin: 0 auto; }
.quote-card {
  text-align: center; padding: 3.5rem 2.5rem;
  background: linear-gradient(135deg, rgba(139,92,246,0.06) 0%, rgba(34,211,238,0.06) 100%);
  border: 1px solid rgba(139,92,246,0.15); border-radius: var(--radius-lg);
}
.quote-card .badge-pill { margin-bottom: 1.5rem; }
blockquote {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 500;
  line-height: 1.6; letter-spacing: -0.02em; color: var(--heading);
  max-width: 720px; margin: 0 auto;
}
blockquote .text-gradient { font-weight: 600; }
.quote-credit { font-size: 0.85rem; color: var(--body); margin-top: 1.5rem; }
.cta-section {
  position: relative; overflow: hidden;
  padding: 110px 5%; text-align: center;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #0e7490 100%);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 20% 50%, rgba(139,92,246,0.35), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(34,211,238,0.25), transparent 50%);
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700;
  color: #fff; letter-spacing: -0.03em; line-height: 1.15;
}
.cta-section .text-gradient {
  display: inline;
  background: linear-gradient(90deg, #c4b5fd 0%, #67e8f9 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.75); margin: 1.25rem auto 2.5rem; line-height: 1.7; }
.cta-buttons { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary { background: #fff; color: var(--heading); box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.cta-section .btn-primary:hover { box-shadow: 0 6px 32px rgba(0,0,0,0.2); }
.cta-section .btn-secondary {
  background: transparent; color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.35);
}
.cta-section .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.55); }
.cta-inline { margin-top: 2.5rem; text-align: center; }
.site-footer {
  background: var(--heading); padding: 3.5rem 5% 2rem;
  display: flex; flex-direction: column; gap: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem; width: 100%; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.88rem; color: var(--muted); margin-top: 0.75rem; max-width: 260px; line-height: 1.6; }
.footer-logo { font-size: 1.1rem; font-weight: 700; color: #fff; text-decoration: none; display: inline-block; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: #64748b; margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.85rem; color: #94a3b8;
  text-decoration: none; margin-bottom: 0.55rem; transition: color var(--t);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; width: 100%;
}
.footer-meta { font-size: 0.78rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.82rem; font-weight: 500; color: #94a3b8;
  text-decoration: none; transition: color var(--t);
}
.footer-links a:hover { color: #fff; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.form-success {
  display: none; padding: 1rem; background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.3); border-radius: var(--radius);
  font-size: 0.88rem; color: #0891b2; margin-bottom: 1rem;
}
.form-success.show { display: block; }
.form-error {
  display: none; padding: 1rem; background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25); border-radius: var(--radius);
  font-size: 0.88rem; color: #b91c1c; margin-bottom: 1rem;
}
.form-error.show { display: block; }
.btn-primary:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
@media (max-width: 900px) {
  .hero, .page-hero { padding-top: 110px; }
  .hero-highlights { gap: 1rem 1.5rem; }
  .industry-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .product-suite-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .values-grid, .team-grid, .related-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ind-desc { display: none; }
  .section-wrap { padding-top: 80px; padding-bottom: 80px; }
}
@media (max-width: 600px) {
  .nav-links li:not(:last-child) { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .process-grid, .values-grid, .team-grid, .related-grid, .stats-grid { grid-template-columns: 1fr; }
  .quote-card { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
