/* ============================================================
   WestCoast Automation Solutions — Shared Design System
   Bold & Modern: dark base, neon cyan/pink gradients, glassmorphism
   ============================================================ */

/* ---- 1. CSS Custom Properties ---- */
:root {
  --bg-base: #0a0a1a;
  --bg-base-end: #0f0c29;
  --bg-surface: #1a1640;
  --primary-start: #00d2ff;
  --primary-end: #3a7bd5;
  --accent-start: #f857a6;
  --accent-end: #ff5858;
  --success-start: #00b090;
  --success-end: #00d4aa;
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-faint: #64748b;
  --text-dim: #475569;
  --border-subtle: rgba(255,255,255,0.04);
  --border-light: rgba(255,255,255,0.05);
  --border-medium: rgba(255,255,255,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 50px;
}

/* ---- 2. Reset & Base ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-base);
  color: var(--text-secondary);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ---- 3. Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(10,10,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo span {
  color: var(--primary-start);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-cta {
  background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
  color: var(--text-primary);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.9;
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- 4. Hero (Homepage) ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 60px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,210,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(248,87,166,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,210,255,0.08);
  border: 1px solid rgba(0,210,255,0.2);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-start);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 .gradient {
  background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ---- 5. Page Hero (Inner Pages) ---- */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 60px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,210,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(248,87,166,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero h1 {
  font-size: 44px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.page-hero h1 .gradient {
  background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

/* ---- 6. Buttons ---- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
  color: var(--text-primary);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(0,210,255,0.3);
  background: transparent;
  color: var(--primary-start);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  background: rgba(0,210,255,0.06);
  border-color: rgba(0,210,255,0.5);
}

.btn-accent {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  color: var(--text-primary);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-accent:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ---- 7. Section Labels ---- */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.section-label.red {
  color: var(--accent-end);
}

.section-label.red::before {
  background: var(--accent-end);
}

.section-label.cyan {
  color: var(--primary-start);
}

.section-label.cyan::before {
  background: var(--primary-start);
}

/* ---- 8. Section Titles ---- */
.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 48px;
  max-width: 600px;
  line-height: 1.2;
}

.section-title .gradient {
  background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- 9. Stat Cards ---- */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: linear-gradient(135deg, var(--bg-base-end), var(--bg-surface));
  border: 1px solid rgba(255,88,88,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-end), transparent);
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,88,88,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stat-card.cyan {
  border-color: rgba(0,210,255,0.12);
}

.stat-card.cyan::before {
  background: linear-gradient(90deg, transparent, var(--primary-start), transparent);
}

.stat-card.cyan::after {
  background: radial-gradient(circle, rgba(0,210,255,0.05) 0%, transparent 70%);
}

.stat-number {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number.red {
  color: var(--accent-end);
}

.stat-number.cyan {
  background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-headline {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.7;
}

.stat-source {
  margin-top: 12px;
  font-size: 10px;
  color: var(--text-dim);
  font-style: italic;
}

/* ---- 10. Divider Arrow ---- */
.divider-arrow {
  text-align: center;
  margin: 48px 0;
  position: relative;
}

.divider-arrow::before {
  content: '';
  position: absolute;
  left: 60px;
  right: 60px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,210,255,0.3), transparent);
}

.divider-arrow span {
  display: inline-block;
  background: var(--bg-base);
  border: 1px solid rgba(0,210,255,0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 20px;
  position: relative;
  z-index: 1;
  color: var(--primary-start);
}

/* ---- 11. Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(0,210,255,0.2);
  background: rgba(0,210,255,0.03);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0,210,255,0.15), rgba(58,123,213,0.15));
  border: 1px solid rgba(0,210,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- 12. Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--bg-base-end), var(--bg-surface));
  border: 1px solid rgba(0,210,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-start), transparent);
}

.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 28px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(0,210,255,0.06);
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-medium);
  padding-top: 20px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  flex-shrink: 0;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
}

.author-avatar.avatar-don {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
}

.author-avatar.avatar-itzel {
  background: linear-gradient(135deg, #7c2d8e, #c084fc);
}

.author-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.author-info .company {
  font-size: 12px;
  color: var(--primary-start);
  font-weight: 600;
}

.author-info .role {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.4;
}

.testimonial-badge {
  text-align: center;
  margin-top: 40px;
}

.testimonial-badge span {
  display: inline-block;
  background: rgba(0,210,255,0.04);
  border: 1px solid rgba(0,210,255,0.1);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-badge span strong {
  color: var(--primary-start);
  font-weight: 600;
}

/* ---- 13. Steps / How It Works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- 14. Credibility Box ---- */
.cred-box {
  background: linear-gradient(135deg, var(--bg-base-end), var(--bg-surface));
  border: 1px solid rgba(0,210,255,0.1);
  border-radius: var(--radius-xl);
  padding: 60px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cred-box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,210,255,0.06), transparent 70%);
  pointer-events: none;
}

.cred-box blockquote {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.cred-box blockquote span {
  color: var(--primary-start);
}

.cred-box .attribution {
  font-size: 14px;
  color: var(--text-faint);
  position: relative;
}

/* ---- 15. Final CTA ---- */
.final-cta {
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,210,255,0.1), transparent 60%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: 44px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
}

.final-cta p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.final-cta .btn-primary {
  position: relative;
}

/* ---- 16. Footer ---- */
.footer {
  padding: 60px;
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 4px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-faint);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* ---- 17. Pricing Cards ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(135deg, var(--bg-base-end), var(--bg-surface));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: rgba(0,210,255,0.15);
}

.pricing-card.featured {
  border-color: rgba(0,210,255,0.3);
  box-shadow: 0 0 40px rgba(0,210,255,0.08);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1.1;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-body);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary-start);
  font-weight: 700;
}

/* ---- 18. FAQ Accordion ---- */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, var(--bg-base-end), var(--bg-surface));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--primary-start);
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ---- 19. Legal Pages ---- */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

.legal-page h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.legal-page .last-updated {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-start);
  margin: 36px 0 12px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
}

.legal-page a {
  color: var(--primary-start);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.legal-page a:hover {
  opacity: 0.8;
}

/* ---- 20. Industry Badges ---- */
.industry-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.industry-badge {
  background: linear-gradient(135deg, var(--bg-base-end), var(--bg-surface));
  border: 1px solid rgba(0,210,255,0.08);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- 21. Service Detail Cards (Services Page) ---- */
.service-detail {
  display: flex;
  flex-direction: row;
  gap: 32px;
  background: linear-gradient(135deg, var(--bg-base-end), var(--bg-surface));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}

.service-detail:hover {
  border-color: rgba(0,210,255,0.15);
}

.service-detail .service-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  font-size: 28px;
}

.service-detail h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-detail p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-detail .impact {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-start);
  margin-bottom: 4px;
}

.service-detail .industries {
  font-size: 12px;
  color: var(--text-faint);
}

/* ---- 22. Scroll Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- 23. Contact Page ---- */
.scheduling-placeholder {
  background: linear-gradient(135deg, var(--bg-base-end), var(--bg-surface));
  border: 2px dashed rgba(0,210,255,0.2);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--radius-xl);
  padding: 40px;
}

.scheduling-placeholder p {
  color: var(--text-muted);
  font-size: 15px;
}

.contact-info {
  text-align: center;
  margin-top: 48px;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-info a {
  color: var(--primary-start);
  font-weight: 600;
  text-decoration: none;
}

.what-to-expect {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

/* ---- 24. Utility: Section Padding ---- */
.section {
  padding: 100px 60px;
  position: relative;
}

.section-centered {
  text-align: center;
}

.section-centered .section-label {
  justify-content: center;
}

.section-centered .section-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---- 25. Responsive: max-width 1024px ---- */
@media (max-width: 1024px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail {
    flex-direction: column;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .what-to-expect {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    padding: 16px 32px;
  }

  .hero {
    padding: 120px 32px 80px;
  }

  .page-hero {
    padding: 120px 32px 48px;
  }

  .section {
    padding: 80px 32px;
  }

  .final-cta {
    padding: 80px 32px;
  }

  .footer {
    padding: 40px 32px;
  }
}

/* ---- 26. Responsive: max-width 768px ---- */
@media (max-width: 768px) {
  .stat-grid,
  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .steps-grid,
  .what-to-expect {
    grid-template-columns: 1fr;
  }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,26,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 105;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* Hero mobile */
  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Page hero mobile */
  .page-hero {
    padding: 100px 24px 40px;
    min-height: auto;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 15px;
  }

  /* Section sizing mobile */
  .section {
    padding: 60px 24px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .stat-number {
    font-size: 36px;
  }

  /* Final CTA mobile */
  .final-cta {
    padding: 60px 24px;
  }

  .final-cta h2 {
    font-size: 32px;
  }

  .final-cta p {
    font-size: 15px;
  }

  /* Footer mobile */
  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer {
    padding: 40px 24px;
  }

  /* Credibility box mobile */
  .cred-box {
    padding: 32px 24px;
  }

  .cred-box blockquote {
    font-size: 16px;
  }

  /* Pricing card featured badge position */
  .pricing-card {
    padding: 32px 24px;
  }

  /* Testimonials mobile */
  .testimonial-card {
    padding: 28px;
  }

  /* Service detail mobile */
  .service-detail {
    flex-direction: column;
    padding: 28px;
  }

  /* Divider mobile */
  .divider-arrow::before {
    left: 24px;
    right: 24px;
  }

  /* Legal page mobile */
  .legal-page {
    padding: 120px 20px 60px;
  }

  .legal-page h1 {
    font-size: 28px;
  }
}
