/* ═══════════════════════════════════════════════════════════
   Astera Technology Limited (星澤科技有限公司) — Premium Overhaul
   Awwwards-caliber, scroll-driven, conversion-optimized
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables / Theme ─── */
:root {
  /* Backgrounds */
  --bg: #fafbfc;
  --bg-primary: #ffffff;
  --bg-secondary: #f4f6f8;
  --bg-tertiary: #edf0f3;
  --bg-card: #ffffff;
  --bg-card-hover: #f8f9fb;
  --bg-hero: linear-gradient(180deg, #eef2ff 0%, #fafbfc 60%);
  --bg-dark: #0c1222;
  --bg-dark-secondary: #131b2e;

  /* Borders */
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --border-medium: #cbd5e1;

  /* Accent — deeper, mature orange */
  --accent: #e8590c;
  --accent-light: #f76707;
  --accent-dark: #d9480f;
  --accent-50: #fff4ed;
  --accent-100: #ffe8d5;
  --accent-glow: rgba(232, 89, 12, 0.08);
  --accent-glow-strong: rgba(232, 89, 12, 0.16);

  /* Secondary — deep blue for authority */
  --secondary: #1864ab;
  --secondary-light: #1c7ed6;
  --secondary-dark: #134e8a;

  /* Text — slate palette */
  --text: #0f172a;
  --text-primary: #0f172a;
  --text-secondary: #3b4c63;
  --text-muted: #8494a7;
  --text-light: #cbd5e1;

  /* Semantic */
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --success-border: #bbf7d0;
  --danger: #dc2626;
  --danger-bg: #fef2f2;
  --danger-border: #fecaca;
  --star: #f59e0b;

  /* Typography — distinctive, NOT AI-default */
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang HK', 'Microsoft JhengHei', sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'PingFang HK', 'Microsoft JhengHei', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-py: 100px;
  --container: 1360px;
  --container-narrow: 960px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.04);
  --shadow-accent: 0 4px 20px rgba(232, 89, 12, 0.2);
  --shadow-accent-lg: 0 8px 30px rgba(232, 89, 12, 0.28);

  /* Transitions — tuned for silky feel */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --transition: 0.35s var(--ease);
  --transition-slow: 0.7s var(--ease-out);
}

/* ─── Scroll Progress Bar ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10001;
}

/* ─── Custom Cursor (desktop only) ─── */
@media (pointer: fine) {
  .cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
    transform: translate(-50%, -50%);
    /* no blend mode — stays orange on all backgrounds */
  }
  .cursor-dot.active {
    width: 40px;
    height: 40px;
    background: rgba(232, 89, 12, 0.15);
    border: 1.5px solid var(--accent);
  }
}

/* ─── Scroll Reveal System (Intersection Observer) ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}

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

/* Variant: slide from left */
.process-card.reveal {
  transform: translateX(-40px);
}
.process-card.reveal.revealed {
  transform: translateX(0);
}

/* Variant: scale pop */
.team-role-card.reveal {
  transform: scale(0.85);
}
.team-role-card.reveal.revealed {
  transform: scale(1);
}

/* Variant: slide from right */
.contact-sidebar.reveal {
  transform: translateX(40px);
}
.contact-sidebar.reveal.revealed {
  transform: translateX(0);
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-progress { display: none; }
  .cursor-dot { display: none; }
}


/* ─── Lenis Smooth Scroll ─── */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

::selection {
  background: var(--accent-100);
  color: var(--accent-dark);
}


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

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  color: #e2e8f0;
}

.section-dark .section-label {
  color: var(--accent-light);
}

.section-dark .section-title {
  color: #f1f5f9;
}

.section-dark .team-role-card {
  background: var(--bg-dark-secondary);
  border-color: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.section-dark .team-role-card h4 {
  color: #f1f5f9;
}

.section-dark .team-role-card p {
  color: #8494a7;
}

.section-dark .team-role-card:hover {
  border-color: var(--accent);
}

.section-dark .team-location {
  color: #8494a7;
}

.section-light {
  background: var(--bg-secondary);
}


/* ─── Section Headers ─── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--accent-50);
  border: 1px solid var(--accent-100);
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark), #e11d48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn i { font-size: 0.9em; }

.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-md { padding: 10px 24px; font-size: 15px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-xl { padding: 18px 40px; font-size: 17px; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-lg);
}

.btn-outline {
  border-color: var(--border-medium);
  color: var(--text);
  background: var(--bg);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-50);
}

.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
  padding: 8px 16px;
  font-size: 14px;
}
.btn-ghost:hover { color: var(--text); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.btn-link:hover { color: var(--accent); }
.btn-link i { font-size: 12px; transition: transform var(--transition); }
.btn-link:hover i { transform: translateX(4px); }


/* ─── Avatars ─── */
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--hue, 20), 80%, 88%), hsl(var(--hue, 20), 70%, 75%));
  color: hsl(var(--hue, 20), 90%, 98%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid var(--bg);
  flex-shrink: 0;
  box-shadow: 0 2px 8px hsl(var(--hue, 20), 60%, 70%, 0.3);
}

.avatar-lg {
  width: 60px;
  height: 60px;
  font-size: 18px;
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.6s var(--ease-out-expo);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  white-space: nowrap;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: white;
}

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

.nav-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 2px;
  margin-right: 4px;
  transition: border-color var(--transition);
}

.lang-toggle:hover {
  border-color: var(--border-medium);
}

.lang-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: all 0.25s var(--ease);
  letter-spacing: 0.5px;
  line-height: 1;
  cursor: pointer;
  border: none;
  background: none;
}

.lang-btn.lang-zh {
  font-family: 'PingFang HK', 'Microsoft JhengHei', sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

.lang-btn.active {
  background: var(--bg);
  color: var(--text);
  box-shadow: var(--shadow-xs);
}

.lang-btn:not(.active):hover {
  color: var(--text-secondary);
}

.navbar.scrolled .lang-toggle {
  background: rgba(241, 245, 249, 0.7);
}

/* CJK Font Adjustments */
body.lang-zh {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang HK', 'Microsoft JhengHei', sans-serif;
  word-break: break-all;
}

body.lang-zh .section-title,
body.lang-zh .hero-title {
  font-family: 'Space Grotesk', 'PingFang HK', 'Microsoft JhengHei', sans-serif;
  word-break: normal;
}

body.lang-zh .nav-links a {
  letter-spacing: 1px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════════════════════════════════════════════════════
   HERO — 2-column split
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--bg-hero);
}

/* Hero uses light background from --bg-hero */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
  position: relative;
  max-width: 1200px;
  z-index: 1;
}

.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.hero-illustration img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(232, 89, 12, 0.08));
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  background: transparent;
}

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

.hero-proof {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-top: 24px;
}

/* Navbar uses default dark-text styling on light hero */

/* Hero gets a stronger blur fade */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}


/* ═══════════════════════════════════════════════════════════
   CLIENT LOGOS — static grid
   ═══════════════════════════════════════════════════════════ */
.logos-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg);
}

.logos-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.logo-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  opacity: 0.6;
  transition: opacity var(--transition);
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-item:hover {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════════
   PROCESS — 4 cards with images
   ═══════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  text-align: center;
}

.process-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  background: var(--bg-secondary);
}

.process-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
  color: var(--text);
}

.process-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   BENEFITS — 2x3 grid, 6 cards
   ═══════════════════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

.benefit-card {
  padding: 24px;
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.benefit-card:hover {
  border-color: var(--accent-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.benefit-icon-illustration {
  width: 140px;
  height: 120px;
  margin-bottom: 20px;
}

.benefit-icon-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.benefits-cta {
  text-align: center;
  margin-top: 48px;
}


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS — featured + tabs
   ═══════════════════════════════════════════════════════════ */
.testimonial-featured {
  position: relative;
  overflow: hidden;
}

.testimonial-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.testimonial-panel.active {
  display: grid;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-logo strong {
  font-family: var(--font-heading);
  font-size: 24px;
}

.testimonial-content blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--star);
  font-size: 14px;
}

.testimonial-device {
  display: flex;
  justify-content: center;
}

.testimonial-device img {
  max-height: 350px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.testimonial-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 32px;
  border-bottom: 2px solid var(--border-light);
}

.testimonial-tab {
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
  margin-bottom: -2px;
  font-size: 15px;
}

.testimonial-tab:hover {
  color: var(--text-secondary);
}

.testimonial-tab.active {
  border-bottom-color: var(--accent);
  color: var(--text-primary);
}


/* ═══════════════════════════════════════════════════════════
   SERVICES — 4 cards with images
   ═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
}

.service-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: var(--bg-tertiary);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-number {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin: 8px 0;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin-top: 12px;
}

.service-tags li {
  font-size: 11px;
  padding: 3px 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}


/* ─── Industries ─── */
.industries {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

.industries-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 32px;
}

.industry-tags span {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.industries-cta {
  display: inline-flex;
}


/* ═══════════════════════════════════════════════════════════
   PORTFOLIO — full-width stacked cards
   ═══════════════════════════════════════════════════════════ */
.portfolio-card {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border-light);
}

.portfolio-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.portfolio-header {
  margin-bottom: 40px;
}

.portfolio-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.portfolio-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 700px;
}

.portfolio-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.portfolio-before,
.portfolio-after {
  display: flex;
  flex-direction: column;
}

.portfolio-label-text {
  font-family: 'Georgia', 'Times New Roman', cursive, serif;
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
  font-style: italic;
}

.portfolio-metrics-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.portfolio-metrics-before {
  border: 1px solid var(--border-light);
}

.portfolio-metrics-after {
  border: 1px solid var(--accent-50);
  box-shadow: var(--shadow-md);
}

.portfolio-screenshot {
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.portfolio-screenshot img {
  width: 100%;
  display: block;
}

.portfolio-metrics-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portfolio-metrics-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.portfolio-metric-bottom {
  text-align: center;
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  text-transform: uppercase;
}

.portfolio-metric-bottom.bad {
  background: #fef2f2;
  color: #dc2626;
}

.portfolio-metric-bottom.good {
  background: var(--accent);
  color: white;
}

.portfolio-tech {
  text-align: center;
}

.portfolio-tech-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

.portfolio-tech-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.portfolio-tech-icons span {
  font-size: 12px;
  padding: 4px 12px;
  background: var(--bg-secondary);
  border-radius: 6px;
  font-family: var(--font-mono);
  color: var(--text-secondary);
}


/* ═══════════════════════════════════════════════════════════
   TEAM — grid with photos
   ═══════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.team-member {
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  background: hsl(var(--hue, 20), 50%, 50%);
}

.team-member h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 2px;
}

.team-role {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.team-location {
  text-align: center;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 15px;
}

.team-location-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 24px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  font-style: normal;
}

.team-location-badge strong {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 2px;
}


/* ═══════════════════════════════════════════════════════════
   PRICING — single card
   ═══════════════════════════════════════════════════════════ */
.pricing-single {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.pricing-single::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,89,12,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.pricing-single::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(24,100,171,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.pricing-card-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.pricing-card-info {
  padding: 40px;
}

.pricing-card-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text);
}

.pricing-card-info p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-includes-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature i {
  color: var(--accent);
  font-size: 14px;
  width: 20px;
  flex-shrink: 0;
}

.pricing-card-price {
  padding: 40px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing-simple-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-amount {
  margin-bottom: 24px;
}

.pricing-currency {
  font-size: 20px;
  vertical-align: super;
}

.pricing-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
}

.pricing-period {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 200px;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════
   FAQ — split layout
   ═══════════════════════════════════════════════════════════ */
.faq-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.faq-sidebar {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: sticky;
  top: 100px;
}

.faq-sidebar .avatar-lg {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  font-size: 18px;
}

.faq-sidebar h4 {
  font-size: 18px;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
}

.faq-sidebar p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--accent-100);
}

.faq-item.active {
  border-color: var(--accent);
  border-left-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--accent-dark); }

.faq-question i {
  font-size: 14px;
  color: var(--text-muted);
  transition: all var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  background: var(--bg-primary);
  background-image: radial-gradient(circle, rgba(232,89,12,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 120px 0;
  position: relative;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════
   FOOTER — 3-column: left text, center logo, right socials
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #eef1f5 100%);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand .logo {
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 280px;
}

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

.footer-socials-wrap {
  display: flex;
  justify-content: flex-end;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-50);
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact a i {
  font-size: 18px;
  color: #25d366;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--accent-dark); }
.footer-links a i { font-size: 13px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

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

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

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


/* ═══════════════════════════════════════════════════════════
   BOTTOM STATUS BAR
   ═══════════════════════════════════════════════════════════ */
.status-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  height: 48px;
}

.status-bar-inner {
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 60px 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-bar-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.status-bar-city {
  font-weight: 600;
  color: var(--text-secondary);
}

.status-bar-separator {
  color: var(--border-medium);
}

.status-bar-time {
  font-weight: 500;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

.status-bar-tz {
  color: var(--text-light);
  font-size: 10px;
}

.status-bar-booking {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.status-bar-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}


/* ═══════════════════════════════════════════════════════════
   SECTION BOTTOM BLUR OVERLAY
   ═══════════════════════════════════════════════════════════ */
.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.section-dark::after,
.section-light::after {
  background: linear-gradient(to top, var(--bg-secondary) 0%, transparent 100%);
}

.cta-section::after {
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}


/* ═══════════════════════════════════════════════════════════
   LEFT RULER
   ═══════════════════════════════════════════════════════════ */
.ruler {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 900;
  pointer-events: none;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ruler-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  will-change: transform;
}

.ruler-mark {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  display: flex;
  align-items: center;
}

.ruler-mark::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
}

.ruler-mark-label {
  position: absolute;
  right: 8px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  color: var(--text-light);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.ruler-mark.major::before {
  background: var(--border-medium);
}

.ruler-mark.major .ruler-mark-label {
  color: var(--text-muted);
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════
   HOVER ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

/* Card lift + shadow */
.benefit-card,
.process-card,
.service-card,
.review-card {
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover,
.process-card:hover,
.service-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-metrics-card {
  transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-metrics-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card-main {
  transition: box-shadow var(--transition);
}

.pricing-card-main:hover {
  box-shadow: var(--shadow-xl);
}

/* Logo items — scale + color pop */
.logo-item {
  transition: opacity var(--transition), color var(--transition), transform var(--transition);
}

.logo-item:hover {
  opacity: 1;
  color: var(--accent);
  transform: scale(1.08);
}

/* Team members — avatar scale + role accent */
.team-avatar {
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-member:hover .team-avatar {
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.team-role {
  transition: color var(--transition);
}

.team-member:hover .team-role {
  color: var(--accent);
}

/* FAQ items — stronger border accent */
.faq-item:hover {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 1px var(--accent-100);
}

/* 3D tilt support for images */
.service-card-image,
.portfolio-screenshot,
.process-card-image {
  perspective: 800px;
}

.service-card-image img,
.portfolio-screenshot img,
.process-card-image img {
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
}


/* ═══════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ═══════════════════════════════════════════════════════════
   CUSTOMER REVIEWS
   ═══════════════════════════════════════════════════════════ */
.reviews-summary {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.reviews-score {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
}

.reviews-stars {
  color: var(--star);
  font-size: 20px;
  letter-spacing: 2px;
}

.reviews-count {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-stars {
  color: var(--star);
  font-size: 14px;
}

.review-rating {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

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

.review-industry {
  font-size: 11px;
  padding: 2px 8px;
  background: var(--accent-50);
  color: var(--accent-dark);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
}

.review-date {
  font-size: 11px;
  color: var(--text-light);
  font-family: var(--font-mono);
  margin-left: auto;
}


/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.btn-full {
  width: 100%;
}

.contact-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
  padding: 24px 16px 8px;
}

.contact-illustration img {
  width: 100%;
  max-width: 320px;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(232, 89, 12, 0.10));
}

.contact-sidebar-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.contact-sidebar-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-checklist li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-checklist li i {
  color: var(--success);
  font-size: 12px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.contact-info-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-50);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item a,
.contact-info-item span {
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-info-item a:hover {
  color: var(--accent);
}


/* gsap-fade-up class removed — reveal system handles animations now */


/* ─── Utility ─── */
.hide-mobile { display: block; }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* Desktop ruler offset */
@media (min-width: 769px) {
  body { padding-left: 48px; }
  .navbar { left: 48px; }
  .status-bar { left: 48px; }
}

/* Tablet */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-py: 60px; }

  .container { padding: 0 16px; }

  /* Ruler hidden on mobile */
  .ruler { display: none; }

  /* Simplify status bar on mobile */
  .status-bar-inner { padding: 0 16px; }
  .status-bar-location .status-bar-tz { display: none; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }

  /* Keep lang toggle visible on mobile */
  .lang-toggle {
    margin-right: 12px;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 20px;
    z-index: 999;
  }

  .nav-links.mobile-open a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
  }

  /* Hero */
  .hero {
    padding: 100px 0 56px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 720px;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-illustration {
    display: none;
  }

  #hero-canvas {
    display: none;
  }

  .hero-fallback-img {
    display: block;
  }

  .hero-title { font-size: 30px; }

  .hero-subtitle {
    color: var(--text-secondary);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn { justify-content: center; }

  .hide-mobile { display: none; }

  /* Why Astera */
  .why-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Grids */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .services-hero-grid { grid-template-columns: 1fr; }
  .team-roles-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pricing */
  .pricing-card-main { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-desc { max-width: none; }

  /* Portfolio */
  .portfolio-card {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }

  /* Section headers */
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 15px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand { align-items: center; }
  .footer-brand p { max-width: none; }
  .footer-socials-wrap { justify-content: center; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* CTA / Contact */
  .cta-section { padding: 72px 0; }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-buttons .btn { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Why Astera Section ─── */
.why-section {
  padding: 60px 0 80px;
  background: var(--bg-primary);
  background-image: radial-gradient(circle, rgba(232,89,12,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.why-card {
  text-align: center;
  padding: 32px 24px;
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-50);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
}

.why-icon-illustration {
  width: 160px;
  height: 140px;
  background: transparent;
  border-radius: 0;
}

.why-icon-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.why-tagline {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

/* ─── NEW: Logos Marquee ─── */
.logos-marquee {
  overflow: hidden;
  white-space: nowrap;
  margin-top: 20px;
}

.logos-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
}

.logos-marquee:hover .logos-track {
  animation-play-state: paused;
}

.logos-marquee .logo-item {
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
  flex-shrink: 0;
}

.logos-marquee .logo-item:hover {
  filter: grayscale(0) opacity(1);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── NEW: Testimonials Carousel ─── */
.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 200px;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 20px;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide blockquote {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-slide .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testimonial-prev, .testimonial-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  color: var(--text-secondary);
}

.testimonial-prev:hover, .testimonial-next:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.testimonial-dots .dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ─── NEW: Services Hero Grid (2-col tier 1) ─── */
.services-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.service-card-hero {
  min-height: 360px;
}

.service-card-hero .service-card-image {
  height: 200px;
}

/* ─── NEW: Team Capabilities ─── */
.team-capabilities {
  text-align: center;
  margin-bottom: 48px;
}

.team-stat-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-stat-number {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.team-stat-label {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 8px;
}

.team-roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-role-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.team-role-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at top right, rgba(232,89,12,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.team-role-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.team-role-count {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.team-role-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.team-role-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* hero-canvas-wrap and hero-proof styles are now in the main hero block above */

/* ─── NEW: Expanded Footer ─── */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
  max-width: 320px;
}

.footer-links h4,
.footer-contact-info h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-links ul,
.footer-contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact-info a,
.footer-contact-info li {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}

.footer-links a:hover,
.footer-contact-info a:hover {
  color: var(--accent);
}

.footer-contact-info i {
  width: 16px;
  margin-right: 8px;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── WhatsApp Follow-up ─── */
.form-whatsapp-followup {
  text-align: center;
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--accent-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-100);
}

.form-whatsapp-followup a {
  color: #25d366;
  font-weight: 600;
  transition: color 0.2s;
}

.form-whatsapp-followup a:hover {
  color: #128c7e;
}

/* ─── Skip to Content (Accessibility) ─── */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 8px 16px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-sm);
  z-index: 100000;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 8px;
}

/* ─── Active Nav Underline ─── */
.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.nav-links a {
  position: relative;
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title { font-size: 26px; }

  .why-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .services-hero-grid { grid-template-columns: 1fr; }
  .team-roles-grid { grid-template-columns: 1fr; }

  .portfolio-comparison { grid-template-columns: 1fr; }

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

  .logo-item { font-size: 13px; }
  .stats-bar { grid-template-columns: 1fr; }
  .hero-stats-strip { flex-direction: column; gap: 12px; }
  .comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comparison-table { min-width: 600px; font-size: 13px; }
  .pricing-tiers-grid { grid-template-columns: 1fr; }
  .pricing-comparison { flex-direction: column; }
  .team-founder-spotlight { flex-direction: column; text-align: center; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   NEW CONTENT ELEMENTS (Content Revamp 2026)
   ═══════════════════════════════════════════ */

/* Hero Stats Strip */
.hero-stats-strip {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 89, 12, 0.06);
  border: 1px solid rgba(232, 89, 12, 0.15);
  border-radius: var(--radius-full, 999px);
  padding: 10px 20px;
}

a.hero-stat-pill-link {
  text-decoration: none;
  color: inherit;
  transition: background 0.25s var(--ease, ease), border-color 0.25s var(--ease, ease), transform 0.25s var(--ease, ease);
}

a.hero-stat-pill-link:hover {
  background: rgba(232, 89, 12, 0.12);
  border-color: rgba(232, 89, 12, 0.35);
  transform: translateY(-2px);
}
.hero-stat-number {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent, #e8590c);
}
.hero-stat-text {
  font-size: 0.85rem;
  color: var(--text-secondary, #475569);
}

/* Why Section — Proof Paragraphs */
.why-proof {
  font-size: 0.85rem;
  color: var(--text-secondary, #475569);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
  line-height: 1.6;
}
.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Comparison Section */
.comparison-section {
  margin-top: 64px;
}
.comparison-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}
.comparison-table-wrap {
  border-radius: var(--radius-lg, 14px);
  overflow: hidden;
  border: 1px solid var(--border, #e2e8f0);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border, #e2e8f0);
}
.comparison-table th {
  background: var(--bg-card, #f8fafc);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-secondary, #475569);
}
.comparison-highlight {
  background: rgba(232, 89, 12, 0.04) !important;
}
.comparison-table th.comparison-highlight {
  color: var(--accent, #e8590c);
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Process — Timeline & Deliverables */
.process-timeline {
  display: inline-block;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent, #e8590c);
  background: rgba(232, 89, 12, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full, 999px);
  margin-bottom: 8px;
}
.process-deliverables {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.process-deliverables-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary, #475569);
  display: block;
  margin-bottom: 8px;
}
.process-deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-deliverables li {
  font-size: 0.85rem;
  color: var(--text-secondary, #475569);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.process-deliverables li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent, #e8590c);
  font-weight: 600;
}

/* Stats Subtitle */
.stat-subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary, #475569);
  margin-top: 4px;
  font-weight: 400;
}

/* Testimonial Industry Tag */
.testimonial-industry-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent, #e8590c);
  margin-bottom: 16px;
}
.testimonial-industry-tag i {
  margin-right: 6px;
}

/* Service Audience Tag */
.service-audience {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent, #e8590c);
  margin-bottom: 8px;
}
.service-outcome {
  font-size: 0.85rem;
  color: var(--text-secondary, #475569);
  font-style: italic;
  margin-top: 8px;
  padding: 12px;
  background: rgba(232, 89, 12, 0.04);
  border-left: 3px solid var(--accent, #e8590c);
  border-radius: 0 var(--radius-sm, 6px) var(--radius-sm, 6px) 0;
}
.service-timeline-badge {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-secondary, #475569);
  margin-top: 12px;
}
.service-timeline-badge i {
  margin-right: 4px;
  color: var(--accent, #e8590c);
}

/* Team Founder Spotlight */
.team-founder-spotlight {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg, 14px);
  padding: 32px;
  margin-bottom: 40px;
}
.team-founder-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent, #e8590c), #f97316);
  border-radius: var(--radius-full, 999px);
  color: #fff;
  font-size: 1.8rem;
}
.team-founder-info h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.team-founder-info p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}
.team-model {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Pricing — Row Labels ─── */
.pricing-row-label {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary, #475569);
  text-align: center;
  margin: 48px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pricing-row-label::before,
.pricing-row-label::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--border, #e2e8f0);
}
.pricing-row-label-strategic {
  color: var(--accent, #e8590c);
  margin-top: 72px;
}
.pricing-row-label-strategic::before,
.pricing-row-label-strategic::after {
  background: linear-gradient(90deg, transparent, rgba(232, 89, 12, 0.3), transparent);
}
.pricing-row-sub {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-secondary, #475569);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-left: 4px;
}

/* ─── Pricing Tiers Grid ─── */
.pricing-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.pricing-tiers-strategic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tier-card {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius-lg, 14px);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease-out, cubic-bezier(.22,.61,.36,1)),
              box-shadow 0.4s var(--ease-out, cubic-bezier(.22,.61,.36,1)),
              border-color 0.3s ease;
  will-change: transform;
}
.pricing-tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 89, 12, 0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.pricing-tier-featured {
  border-color: var(--accent, #e8590c);
  box-shadow: 0 0 0 1px var(--accent, #e8590c), var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.08));
  transform: translateY(-8px);
}
.pricing-tier-featured:hover {
  transform: translateY(-12px);
}
.pricing-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent, #e8590c);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full, 999px);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pricing-tier-kicker {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent, #e8590c);
  background: rgba(232, 89, 12, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.pricing-tier-header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  line-height: 1.2;
}
.pricing-tier-desc {
  font-size: 0.87rem;
  color: var(--text-secondary, #475569);
  margin-bottom: 24px;
  line-height: 1.65;
}
.pricing-tier-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border, #e2e8f0);
}
.pricing-tier-price .pricing-currency {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary, #475569);
  vertical-align: top;
  margin-right: 2px;
}
.pricing-tier-price .pricing-number {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text, #0f172a);
  letter-spacing: -0.02em;
}
.pricing-tier-price .pricing-period {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-secondary, #475569);
  margin-left: 4px;
}
.pricing-tier-amount {
  display: block;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent, #e8590c);
}
.pricing-tier-amount + .pricing-period {
  display: block;
  margin-left: 0;
  margin-top: 4px;
}
.pricing-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.pricing-tier-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.pricing-tier-features i {
  color: var(--accent, #e8590c);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Eligibility notice inside strategic tier cards */
.pricing-tier-eligibility {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  margin: 0 0 20px;
  background: rgba(232, 89, 12, 0.05);
  border: 1px solid rgba(232, 89, 12, 0.15);
  border-radius: var(--radius-md, 10px);
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-secondary, #475569);
}
.pricing-tier-eligibility i {
  color: var(--accent, #e8590c);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-tier-eligibility strong {
  color: var(--text, #0f172a);
  font-weight: 700;
}

/* Strategic tier cards — distinct treatment */
.pricing-tier-strategic {
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 50%);
  border-color: rgba(232, 89, 12, 0.22);
  border-style: dashed;
}
.pricing-tier-strategic:hover {
  border-style: solid;
  border-color: rgba(232, 89, 12, 0.5);
}

/* Outline button variant for secondary CTAs */
.btn-outline {
  background: transparent;
  color: var(--accent, #e8590c);
  border: 1.5px solid var(--accent, #e8590c);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn-outline:hover {
  background: var(--accent, #e8590c);
  color: #fff;
  transform: translateY(-2px);
}

/* Pricing Currency Toggle */
.pricing-currency-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 36px;
}
.pricing-currency-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-secondary, #f4f6f8);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.currency-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted, #8494a7);
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  padding: 9px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.currency-btn:hover:not(.is-active) {
  color: var(--text, #0f172a);
}
.currency-btn.is-active {
  background: var(--accent, #e8590c);
  color: #fff;
  box-shadow: 0 2px 8px rgba(232, 89, 12, 0.28);
}
.currency-btn:focus-visible {
  outline: 2px solid var(--accent, #e8590c);
  outline-offset: 3px;
}

/* Pricing Comparison Bar */
.pricing-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.pricing-comparison-item {
  text-align: center;
  padding: 20px 32px;
  border-radius: var(--radius-lg, 14px);
  flex: 1;
  max-width: 360px;
}
.pricing-comparison-them {
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--border, #e2e8f0);
}
.pricing-comparison-us {
  background: rgba(232, 89, 12, 0.06);
  border: 1px solid rgba(232, 89, 12, 0.2);
}
.pricing-comparison-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary, #475569);
  margin-bottom: 8px;
}
.pricing-comparison-price {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
}
.pricing-comparison-us .pricing-comparison-price {
  color: var(--accent, #e8590c);
}
.pricing-comparison-detail {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary, #475569);
  margin-top: 4px;
}
.pricing-comparison-vs {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-secondary, #475569);
}

/* Pricing Exclusions */
.pricing-exclusions {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: rgba(0,0,0,0.02);
  border-radius: var(--radius-md, 10px);
}
.pricing-exclusions-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.pricing-exclusions-text {
  font-size: 0.85rem;
  color: var(--text-secondary, #475569);
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Urgency & Next Steps */
.contact-urgency {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md, 10px);
  margin-bottom: 16px;
}
.contact-next-steps {
  margin-top: 16px;
}
.contact-steps-list {
  padding-left: 20px;
  margin: 0;
}
.contact-steps-list li {
  font-size: 0.9rem;
  padding: 6px 0;
  color: var(--text-secondary, #475569);
}

/* Responsive overrides for new elements */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-tiers-primary { grid-template-columns: 1fr; }
  .pricing-tiers-strategic { grid-template-columns: 1fr; max-width: 520px; }
  .pricing-tier-featured { transform: none; }
  .pricing-tier-featured:hover { transform: translateY(-4px); }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats-strip { flex-direction: column; gap: 12px; }
  .pricing-comparison { flex-direction: column; }
  .comparison-table-wrap { overflow-x: auto; }
  .comparison-table { min-width: 580px; }
  .team-founder-spotlight { flex-direction: column; text-align: center; }
}

/* Testimonials disclaimer (illustrative feedback) */
.testimonials-disclaimer {
  font-size: 0.82rem;
  color: var(--text-secondary, #475569);
  max-width: 680px;
  margin: 12px auto 0;
  opacity: 0.85;
}
.testimonials-disclaimer em { font-style: italic; }

/* ═══════════════════════════════════════════════════════════
   WORKSHOP GALLERY
   ═══════════════════════════════════════════════════════════ */
.workshop-gallery-wrap {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px dashed var(--border, #e2e8f0);
}
.workshop-gallery-header {
  text-align: center;
  margin-bottom: 32px;
}
.workshop-gallery-title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.workshop-gallery-sub {
  color: var(--text-secondary, #475569);
  font-size: 0.95rem;
  max-width: 620px;
  margin: 0 auto;
}
.workshop-gallery-footnote {
  text-align: center;
  color: var(--text-secondary, #475569);
  font-size: 0.78rem;
  margin-top: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Filter pills */
.workshop-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.workshop-filter {
  background: transparent;
  border: 1px solid var(--border, #e2e8f0);
  color: var(--text-secondary, #475569);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.workshop-filter:hover {
  border-color: var(--accent, #e8590c);
  color: var(--accent, #e8590c);
}
.workshop-filter.active {
  background: var(--accent, #e8590c);
  border-color: var(--accent, #e8590c);
  color: #fff;
}

/* Gallery grid — 3 cols desktop, 2 tablet, 1 mobile */
.workshop-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .workshop-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .workshop-gallery { grid-template-columns: 1fr; }
}

/* Card */
.workshop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius-lg, 14px);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.45s var(--ease-out, cubic-bezier(.22,.61,.36,1)),
              box-shadow 0.45s var(--ease-out, cubic-bezier(.22,.61,.36,1)),
              border-color 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
  /* 3D tilt custom properties — driven by JS mousemove */
  --mx: 0deg;
  --my: 0deg;
}
@media (hover: hover) and (pointer: fine) {
  .workshop-card:hover {
    transform: perspective(900px) rotateX(var(--my)) rotateY(var(--mx)) translateY(-6px);
    border-color: rgba(232, 89, 12, 0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  }
  .workshop-card:hover .workshop-card-image img {
    transform: scale(1.06);
  }
  .workshop-card:hover .workshop-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.workshop-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
}
.workshop-card-coming-soon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent, #e8590c);
  color: #fff;
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(232, 89, 12, 0.35);
  z-index: 2;
  pointer-events: none;
}
.workshop-card[aria-disabled="true"] {
  cursor: not-allowed;
}
.workshop-card[aria-disabled="true"]:hover .workshop-card-image img {
  transform: none;
}
.workshop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out, cubic-bezier(.22,.61,.36,1));
}
.workshop-card-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.workshop-placeholder-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent, #e8590c);
  box-shadow: 0 10px 30px rgba(232, 89, 12, 0.2);
}
.workshop-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.workshop-card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.workshop-card-head h4 {
  margin: 0;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}
.workshop-card-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent, #e8590c);
}
.workshop-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary, #475569);
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}
.workshop-card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.workshop-card-tech span {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.68rem;
  padding: 3px 8px;
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 4px;
  color: var(--text-secondary, #475569);
}
.workshop-card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, #e8590c);
  font-size: 0.85rem;
  opacity: 0;
  transform: translate(6px, -6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Filter logic — CSS :has() driven, no JS */
.workshop-gallery-wrap:has(.workshop-filter[data-filter="web"].active) .workshop-card:not([data-category="web"]) { display: none; }
.workshop-gallery-wrap:has(.workshop-filter[data-filter="mobile"].active) .workshop-card:not([data-category="mobile"]) { display: none; }
.workshop-gallery-wrap:has(.workshop-filter[data-filter="ai"].active) .workshop-card:not([data-category="ai"]) { display: none; }
.workshop-gallery-wrap:has(.workshop-filter[data-filter="automation"].active) .workshop-card:not([data-category="automation"]) { display: none; }
/* "all" = show everything (no filter applied) */


/* ═══════════════════════════════════════════════════════════
   AMBIENT THREE.JS CANVASES (pricing / contact sections)
   ═══════════════════════════════════════════════════════════ */
#pricing,
#contact {
  position: relative;
  isolation: isolate;
}
.ambient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
#pricing > .container,
#contact > .container {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   PERFORMANCE: content-visibility for below-fold sections
   Skips rendering of offscreen sections until they approach viewport.
   ═══════════════════════════════════════════════════════════ */
#process,
#benefits,
#testimonials,
#services,
#workshop,
#team,
#pricing,
#faq,
#contact {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.pricing-tier-fineprint {
  margin: 14px 0 18px;
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-muted, #94a3b8);
  letter-spacing: 0.01em;
}
.pricing-tier-fineprint a {
  color: var(--accent, #e8590c);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--accent, #e8590c);
  color: #fff;
  transform: translateY(-2px);
}
.footer-registration {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}
.footer-registration em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

/* ═══════════════════════════════════════════════════════════
   LEGAL / CONTENT PAGES — shared prose layout
   ═══════════════════════════════════════════════════════════ */
.legal-page {
  min-height: 100vh;
  background: var(--bg, #ffffff);
  color: var(--text, #0f172a);
}
.legal-page .legal-header {
  padding: 28px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
}
.legal-page .legal-header-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.legal-page .legal-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text, #0f172a);
  font-weight: 800;
  font-size: 18px;
}
.legal-page .legal-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f76707, #d9480f);
  color: #fff;
  font-weight: 800;
  font-family: Georgia, serif;
  font-size: 22px;
}
.legal-page .legal-back {
  color: var(--accent, #e8590c);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.legal-page .legal-back:hover { text-decoration: underline; }
.legal-page main {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 24px 96px;
  font-size: 16px;
  line-height: 1.75;
  color: #334155;
}
.legal-page h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--text, #0f172a);
}
.legal-page .legal-meta {
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 40px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.legal-page h2 {
  font-size: 24px;
  line-height: 1.3;
  margin: 48px 0 12px;
  color: var(--text, #0f172a);
  letter-spacing: -0.01em;
}
.legal-page h3 {
  font-size: 18px;
  margin: 28px 0 8px;
  color: var(--text, #0f172a);
}
.legal-page p, .legal-page li { color: #334155; }
.legal-page ul, .legal-page ol { padding-left: 22px; margin: 8px 0 16px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--accent, #e8590c); }
.legal-page strong { color: var(--text, #0f172a); }
.legal-page .legal-callout {
  margin: 24px 0;
  padding: 18px 22px;
  background: rgba(232, 89, 12, 0.06);
  border-left: 3px solid var(--accent, #e8590c);
  border-radius: 4px;
  font-size: 15px;
}
.legal-page .legal-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}
.legal-page .legal-footer a {
  color: #64748b;
  text-decoration: none;
  margin: 0 10px;
}
.legal-page .legal-footer a:hover { color: var(--accent, #e8590c); }

/* 404 page */
.notfound-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, #fff7f0, #ffe4cc);
  text-align: center;
}
.notfound-card {
  max-width: 520px;
}
.notfound-card .notfound-code {
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #f76707, #d9480f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -4px;
}
.notfound-card h1 {
  font-size: 28px;
  margin: 12px 0 10px;
  color: #0f172a;
}
.notfound-card p {
  color: #475569;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.6;
}
.notfound-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #f76707, #d9480f);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(232, 89, 12, 0.25);
}
.notfound-card .btn:hover { transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM — PDPO consent + mailto handoff panel
   ═══════════════════════════════════════════════════════════ */
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted, #64748b);
  margin: 4px 0 18px;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent, #e8590c);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.form-consent a {
  color: var(--accent, #e8590c);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent .required { color: var(--accent, #e8590c); font-weight: 600; }

.contact-handoff {
  margin-top: 20px;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(232, 89, 12, 0.06), rgba(247, 103, 7, 0.03));
  border: 1px solid rgba(232, 89, 12, 0.2);
  border-radius: 16px;
}
.contact-handoff-inner h3 {
  margin: 0 0 12px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text, #0f172a);
}
.contact-handoff-inner h3 .fa-circle-check { color: #22c55e; }
.contact-handoff-inner > p {
  margin: 0 0 20px;
  color: var(--text-muted, #475569);
  font-size: 14px;
  line-height: 1.6;
}
.contact-handoff-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.contact-handoff-actions .btn {
  flex: 1 1 auto;
  min-width: 200px;
}
.contact-handoff-note {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted, #94a3b8);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION — disable ambient scenes & tilt
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .ambient-canvas { display: none; }
  .workshop-card:hover { transform: none !important; }
  .pricing-tier-card:hover { transform: none !important; }
  .service-card:hover { transform: none !important; }
}
