/* ═══════════════════════════════════════════════════════════════
   goRepairHub — Design System (Premium Edition)
   ═══════════════════════════════════════════════════════════════ */

[x-cloak] {
  display: none !important;
}

:root {
  /* Colors */
  --ink: #1a2332;
  --body: #4d4d4d;
  --mute: #6B7A8D;
  --canvas: #ffffff;
  --canvas-soft: #F7F8FA;
  --canvas-soft-2: #F4F5F7;
  --hairline: #DEE2E8;
  --hairline-strong: #a1a1a1;
  --link: #e8533f;
  --link-deep: #d14430;
  --primary: #e8533f;
  --on-primary: #ffffff;
  --accent: #e8533f;
  --success: #16A34A;
  --whatsapp: #16A34A;
  --surface: #F7F8FA;
  --dark-bg: #0f172a;

  /* Typography */
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 8px 16px -8px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04), 0 12px 24px -4px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 0 0 1px rgba(232, 83, 63, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06), 0 24px 48px -8px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition: 200ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══ Lucide Icons Base ═══ */
.problem-icon i[data-lucide],
.service-icon i[data-lucide],
.industry-icon i[data-lucide],
.feature-icon i[data-lucide],
.value-icon i[data-lucide] {
  width: 24px;
  height: 24px;
  stroke: var(--link);
}

.industry-icon i[data-lucide] {
  width: 28px;
  height: 28px;
}

.problem-icon i[data-lucide] {
  stroke: #dc2626;
}

.social-link i[data-lucide] {
  width: 20px;
  height: 20px;
}

.navbar-actions i[data-lucide] {
  width: 16px;
  height: 16px;
}

.footer-col i[data-lucide] {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.faq-question i[data-lucide] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn i[data-lucide] {
  width: 18px;
  height: 18px;
}

.hero-badge i[data-lucide] {
  width: 16px;
  height: 16px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas-soft);
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ═══ Typography ═══ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

h1 {
  font-size: 48px;
  letter-spacing: -0.025em;
  font-weight: 800;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 20px;
  letter-spacing: -0.02em;
}

p {
  color: var(--body);
  line-height: 1.7;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--link);
  margin-bottom: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--link);
  border-radius: 2px;
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-title span {
  background: linear-gradient(135deg, var(--link), #ff7a5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: var(--body);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition-slow);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-sm {
  font-size: 14px;
  padding: 8px 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--link), #d14430);
  color: var(--on-primary);
  box-shadow: 0 4px 14px rgba(232, 83, 63, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d14430, #b83a28);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 83, 63, 0.45);
}

.btn-outline {
  background: var(--canvas);
  color: var(--ink);
  border: 1.5px solid var(--hairline);
}

.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), #1ebe57);
  color: white;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1ebe57, #16A34A);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.45);
}

/* Button pulse animation for hero CTAs */
.hero .btn-primary,
.page-hero .btn-primary {
  animation: btn-glow 3s ease-in-out infinite;
}

@keyframes btn-glow {

  0%,
  100% {
    box-shadow: 0 4px 14px rgba(232, 83, 63, 0.35);
  }

  50% {
    box-shadow: 0 4px 28px rgba(232, 83, 63, 0.55);
  }
}

/* ═══ Navbar ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(222, 226, 232, 0.6);
  transition: all var(--transition);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  z-index: -1;
  pointer-events: none;
}

.navbar.scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.95);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.logo-text {
  display: inline-flex;
}

.logo-green {
  color: #16A34A;
}

.logo-red {
  color: #e8533f;
}

.logo-blue {
  color: #2563EB;
}

/* ── Desktop navbar links (always visible on desktop) ── */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: var(--canvas-soft-2);
}

/* ── Desktop phone CTA (always visible on desktop) ── */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Mobile-only elements (hidden on desktop) ── */
.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-phone-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--canvas-soft-2);
  color: var(--primary);
  border: 1px solid var(--hairline);
  transition: all var(--transition);
}

.mobile-phone-btn:hover,
.mobile-phone-btn:active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.mobile-phone-btn i[data-lucide],
.mobile-phone-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 300ms ease;
  transform-origin: center;
}

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

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ── Mobile drawer (separate element, hidden on desktop) ── */
.mobile-drawer {
  display: none;
}

.mobile-drawer-footer {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}

.btn-drawer-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius-md);
  min-height: 48px;
  transition: background 150ms ease, color 150ms ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--canvas-soft-2);
  color: var(--primary);
}

/* ═══ Hero (Home) ═══ */
.hero {
  padding: 140px 0 var(--space-4xl);
  background: linear-gradient(135deg, #fff5f3 0%, #fafbff 40%, #fff8f6 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232, 83, 63, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: hero-blob 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: hero-blob 25s ease-in-out infinite reverse;
}

@keyframes hero-blob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* Hero floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(232, 83, 63, 0.15);
  animation: particle-float 15s ease-in-out infinite;
}

.hero-particle:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  width: 8px;
  height: 8px;
}

.hero-particle:nth-child(2) {
  top: 35%;
  left: 85%;
  animation-delay: -3s;
  background: rgba(37, 99, 235, 0.12);
}

.hero-particle:nth-child(3) {
  top: 70%;
  left: 20%;
  animation-delay: -6s;
  width: 10px;
  height: 10px;
  background: rgba(22, 163, 74, 0.12);
}

.hero-particle:nth-child(4) {
  top: 20%;
  left: 70%;
  animation-delay: -9s;
  background: rgba(139, 92, 246, 0.12);
}

.hero-particle:nth-child(5) {
  top: 80%;
  left: 60%;
  animation-delay: -12s;
  width: 5px;
  height: 5px;
}

.hero-particle:nth-child(6) {
  top: 50%;
  left: 40%;
  animation-delay: -4s;
  width: 4px;
  height: 4px;
  background: rgba(234, 154, 63, 0.15);
}

@keyframes particle-float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.6;
  }

  25% {
    transform: translate(20px, -30px) rotate(90deg);
    opacity: 1;
  }

  50% {
    transform: translate(-10px, 20px) rotate(180deg);
    opacity: 0.4;
  }

  75% {
    transform: translate(15px, 10px) rotate(270deg);
    opacity: 0.8;
  }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--link);
  background: rgba(232, 83, 63, 0.08);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(232, 83, 63, 0.15);
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on hero badge */
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

.hero h1 {
  font-size: 52px;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
  line-height: 1.08;
  font-weight: 800;
}

.hero p {
  font-size: 18px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--hairline);
}

.hero-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-heading);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--mute);
  margin-top: 4px;
  font-weight: 500;
}

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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-image {
  width: 100%;
  height: auto;
}

.hero-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--canvas);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-badge-float i[data-lucide] {
  width: 16px;
  height: 16px;
}

.hero-badge-float-1 {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-badge-float-1 i {
  color: #16a34a;
}

.hero-badge-float-2 {
  bottom: 30%;
  left: -8%;
  animation-delay: 1.3s;
}

.hero-badge-float-2 i {
  color: #2563eb;
}

.hero-badge-float-3 {
  bottom: 10%;
  right: 0%;
  animation-delay: 2.6s;
}

.hero-badge-float-3 i {
  color: #e8533f;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ═══ Hero Cards (About page) ═══ */
.hero-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--canvas);
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  transition: all var(--transition);
}

.hero-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.hero-card+.hero-card {
  margin-top: var(--space-sm);
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-icon.blue {
  background: rgba(232, 83, 63, 0.1);
}

.hero-card-icon.green {
  background: rgba(22, 163, 74, 0.1);
}

.hero-card-icon.purple {
  background: rgba(139, 92, 246, 0.1);
}

.hero-card-icon.orange {
  background: rgba(234, 154, 63, 0.1);
}

.hero-card-icon i[data-lucide] {
  width: 20px;
  height: 20px;
  stroke: var(--link);
}

.hero-card-text h4 {
  font-size: 14px;
  font-weight: 600;
}

.hero-card-text p {
  font-size: 13px;
  color: var(--mute);
  margin: 0;
}

/* ═══ Page Hero (About, Services, Service Detail) ═══ */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #1a2744 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Mesh gradient overlay */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 83, 63, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  animation: mesh-shift 20s ease-in-out infinite;
}

@keyframes mesh-shift {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Grid pattern overlay */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

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

/* Floating decoration circles */
.page-hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-hero-decoration span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: float 6s ease-in-out infinite;
}

.page-hero-decoration span:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.page-hero-decoration span:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: -2s;
  border-color: rgba(232, 83, 63, 0.15);
}

.page-hero-decoration span:nth-child(3) {
  width: 50px;
  height: 50px;
  bottom: 20%;
  left: 15%;
  animation-delay: -4s;
}

.page-hero-decoration span:nth-child(4) {
  width: 160px;
  height: 160px;
  top: -5%;
  right: -3%;
  animation-delay: -1s;
  border-color: rgba(37, 99, 235, 0.1);
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.page-hero-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero-breadcrumb .separator {
  font-size: 10px;
  opacity: 0.5;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(232, 83, 63, 1);
  background: rgba(232, 83, 63, 0.12);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(232, 83, 63, 0.2);
}

.page-hero h1 {
  font-size: 48px;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: var(--space-md);
  line-height: 1.1;
  font-weight: 800;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.page-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.page-hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-stat {
  text-align: center;
}

.page-hero-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
}

.page-hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 500;
}

/* Quick features in hero */
.page-hero-features {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.page-hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.page-hero-feature i[data-lucide] {
  width: 16px;
  height: 16px;
  stroke: var(--link);
}

.page-hero-feature svg {
  width: 16px;
  height: 16px;
  color: var(--link);
}

/* ═══ Section Padding ═══ */
.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background: var(--canvas);
}

/* Dark section with mesh gradient */
.section-dark {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 60%, #172040 100%);
  color: var(--on-primary);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232, 83, 63, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--on-primary);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .section-label {
  color: rgba(255, 255, 255, 0.5);
}

.section-dark .section-label::before {
  background: rgba(255, 255, 255, 0.3);
}

/* ═══ Pain Points / Problem Cards ═══ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.problem-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--hairline);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #dc2626, #f87171);
  transition: height var(--transition-slow);
  border-radius: 0 0 3px 0;
}

.problem-card:hover {
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.problem-card:hover::before {
  height: 100%;
}

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(220, 38, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.problem-card h4 {
  margin-bottom: var(--space-xs);
  font-size: 16px;
}

.problem-card p {
  font-size: 14px;
}

/* ═══ Services Grid ═══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--hairline);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--link), #ff7a5c);
  transform: scaleX(0);
  transition: transform var(--transition-slow);
  transform-origin: left;
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(232, 83, 63, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: transform var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-icon.blue {
  background: rgba(232, 83, 63, 0.1);
}

.service-icon.green {
  background: rgba(22, 163, 74, 0.1);
}

.service-icon.purple {
  background: rgba(139, 92, 246, 0.1);
}

.service-icon.orange {
  background: rgba(234, 154, 63, 0.1);
}

.service-icon.pink {
  background: rgba(236, 72, 153, 0.1);
}

.service-icon.teal {
  background: rgba(20, 184, 166, 0.1);
}

.service-card h4 {
  margin-bottom: var(--space-xs);
}

.service-card p {
  font-size: 14px;
}

.service-card .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--link);
  font-size: 14px;
  font-weight: 600;
  margin-top: var(--space-md);
  transition: gap var(--transition), color var(--transition);
}

.service-card:hover .btn-link {
  gap: 10px;
}

/* ═══ Industries ═══ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.industry-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--hairline);
  text-align: center;
  transition: all var(--transition-slow);
}

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

.industry-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--canvas-soft-2), rgba(232, 83, 63, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  transition: all var(--transition);
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, rgba(232, 83, 63, 0.1), rgba(232, 83, 63, 0.05));
  transform: scale(1.05);
}

.industry-card h4 {
  margin-bottom: var(--space-xs);
}

.industry-card p {
  font-size: 14px;
}

/* ═══ How It Works ═══ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--hairline), var(--link), var(--hairline));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--link), #d14430);
  color: var(--on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto var(--space-md);
  border: 4px solid var(--canvas);
  box-shadow: 0 4px 14px rgba(232, 83, 63, 0.3);
  transition: all var(--transition);
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 83, 63, 0.4);
}

.step-card h4 {
  margin-bottom: var(--space-xs);
}

.step-card p {
  font-size: 14px;
}

/* ═══ Why Choose Us ═══ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--hairline);
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: rgba(232, 83, 63, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(232, 83, 63, 0.15);
  transform: scale(1.1);
}

.feature-card h4 {
  margin-bottom: var(--space-xs);
}

.feature-card p {
  font-size: 14px;
}

/* ═══ Testimonials ═══ */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 var(--space-xl);
}

.testimonial-inner {
  background: var(--canvas);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  border: 1px solid var(--hairline);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-card);
}

/* Quote decoration */
.testimonial-inner::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--link);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 20px;
  margin-bottom: var(--space-md);
  letter-spacing: 4px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
}

.testimonial-role {
  font-size: 14px;
  color: var(--mute);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-xl);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--hairline);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.testimonial-dot.active {
  background: var(--link);
  width: 32px;
}

/* ═══ Stats ═══ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item {
  position: relative;
  padding: var(--space-lg) 0;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
  display: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.stat-icon i[data-lucide] {
  width: 22px;
  height: 22px;
  stroke: var(--link);
}

.stat-item .stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--on-primary);
  font-family: var(--font-heading);
}

.stat-item .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 500;
}

/* ═══ FAQ ═══ */
.faq-list {
  max-width: 768px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: color var(--transition);
}

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

.faq-question svg {
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: var(--space-lg);
  font-size: 15px;
  line-height: 1.7;
}

/* ═══ Contact CTA ═══ */
.contact-section {
  background: linear-gradient(135deg, #fff5f3 0%, #faf5ff 50%, #fff8f6 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 83, 63, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-info>p {
  font-size: 18px;
  margin-bottom: var(--space-xl);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(232, 83, 63, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail-text p {
  font-size: 14px;
  margin: 0;
}

.contact-form-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--canvas);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--link);
  box-shadow: 0 0 0 3px rgba(232, 83, 63, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* ═══ Footer ═══ */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 83, 63, 0.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .navbar-logo {
  margin-bottom: var(--space-md);
}

.footer-brand .logo-green {
  color: #4ade80;
}

.footer-brand .logo-red {
  color: #ff7a5c;
}

.footer-brand .logo-blue {
  color: #60a5fa;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-link:hover {
  background: rgba(232, 83, 63, 0.15);
  color: var(--link);
  transform: translateY(-2px);
  border-color: rgba(232, 83, 63, 0.2);
}

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.footer-col ul li {
  margin-bottom: var(--space-xs);
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: white;
}

.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-col ul li svg {
  margin-top: 3px;
  flex-shrink: 0;
  opacity: 0.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: white;
}

/* ═══ Back to Top ═══ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--link), #d14430);
  color: var(--on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 50;
  box-shadow: 0 4px 14px rgba(232, 83, 63, 0.35);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232, 83, 63, 0.45);
}

/* ═══ Blog ═══ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.blog-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: all var(--transition-slow);
}

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

.blog-card-body {
  padding: var(--space-lg);
}

.blog-card-meta {
  font-size: 12px;
  color: var(--mute);
  margin-bottom: var(--space-xs);
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: var(--space-xs);
}

.blog-card p {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--link);
  font-size: 14px;
  font-weight: 500;
  margin-top: var(--space-md);
}

/* ═══ Single Post ═══ */
.post-meta {
  font-size: 14px;
  color: var(--mute);
  margin-bottom: var(--space-sm);
}

.post-content {
  max-width: 768px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.post-content h2 {
  font-size: 28px;
  margin: var(--space-xl) 0 var(--space-md);
}

.post-content h3 {
  font-size: 22px;
  margin: var(--space-lg) 0 var(--space-sm);
}

.post-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.post-content ul,
.post-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.post-content li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

.post-content ul {
  list-style: disc;
}

.post-content ol {
  list-style: decimal;
}

.post-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  background: var(--canvas-soft-2);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.post-content pre {
  background: var(--dark-bg);
  color: var(--on-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin-bottom: var(--space-md);
}

.post-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.post-content a {
  color: var(--link);
  text-decoration: underline;
}

.post-content blockquote {
  border-left: 3px solid var(--link);
  padding-left: var(--space-md);
  margin: var(--space-md) 0;
  color: var(--body);
  font-style: italic;
}

/* ═══ Page Header (Legacy — kept for non-hero pages) ═══ */
.page-header {
  padding: 120px 0 var(--space-2xl);
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}

.page-header h1 {
  font-size: 40px;
  margin-bottom: var(--space-sm);
}

.page-header p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ═══ About Page ═══ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content p {
  margin-bottom: var(--space-md);
}

/* Timeline-style story section */
.about-content-timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.about-content-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--link), rgba(232, 83, 63, 0.1));
  border-radius: 2px;
}

.about-content-timeline p {
  position: relative;
  margin-bottom: var(--space-lg);
}

.about-content-timeline p::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) - 3px);
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--link);
  border-radius: 50%;
  border: 2px solid var(--canvas-soft);
  box-shadow: 0 0 0 2px var(--link);
}

.about-image {
  background: var(--canvas);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.value-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--hairline);
  text-align: center;
  transition: all var(--transition-slow);
}

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

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(232, 83, 63, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  transition: all var(--transition);
}

.value-card:hover .value-icon {
  background: rgba(232, 83, 63, 0.15);
  transform: scale(1.1);
}

/* ═══ Services Page ═══ */
.service-detail {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--hairline);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-slow);
}

.service-detail:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.service-detail-header .service-icon {
  margin-bottom: 0;
}

/* ═══ Service Detail Hero ═══ */
.service-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-2xl);
  align-items: start;
}

.service-hero-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-hero-content h2 {
  font-size: 1.75rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.service-hero-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--link);
  border-radius: 3px;
}

.service-hero-content h3 {
  font-size: 1.3rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--ink);
}

.service-hero-content p {
  margin-bottom: var(--space-md);
  color: var(--body);
}

.service-hero-content ul,
.service-hero-content ol {
  margin: 0 0 var(--space-md) var(--space-lg);
  color: var(--body);
}

.service-hero-content li {
  margin-bottom: 8px;
}

.service-hero-content strong {
  color: var(--ink);
}

.service-hero-content ul {
  list-style: none;
}

.service-hero-content ul li {
  position: relative;
  padding-left: var(--space-lg);
}

.service-hero-content ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--link);
  font-weight: 700;
}

.service-sidebar-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  position: sticky;
  top: 80px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.service-sidebar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--link), #ff7a5c, var(--link));
  background-size: 200% 100%;
  animation: gradient-slide 3s ease infinite;
}

@keyframes gradient-slide {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.service-sidebar-card h4 {
  margin-bottom: var(--space-md);
  color: var(--ink);
  font-size: 18px;
}

.service-sidebar-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-sidebar-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.95rem;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-sidebar-card li:last-child {
  border-bottom: none;
}

.service-sidebar-card li::before {
  content: "\2713";
  color: var(--link);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 83, 63, 0.08);
  border-radius: 50%;
  font-size: 11px;
}

/* ═══ Staggered Animations ═══ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay classes - added via JS */
.fade-in.stagger-1 {
  transition-delay: 0ms;
}

.fade-in.stagger-2 {
  transition-delay: 80ms;
}

.fade-in.stagger-3 {
  transition-delay: 160ms;
}

.fade-in.stagger-4 {
  transition-delay: 240ms;
}

.fade-in.stagger-5 {
  transition-delay: 320ms;
}

.fade-in.stagger-6 {
  transition-delay: 400ms;
}

/* Slide-in from left */
.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide-in from right */
.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-in */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 600ms ease, transform 600ms ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ═══ Service Areas Map ═══ */
.service-areas {
  text-align: center;
}

.service-areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: var(--space-xl);
}

.service-area-tag {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  transition: all var(--transition);
}

.service-area-tag:hover {
  border-color: var(--link);
  color: var(--link);
  background: rgba(232, 83, 63, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 83, 63, 0.12);
}

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
    letter-spacing: -0.02em;
  }

  h2 {
    font-size: 30px;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    /* order: -1;
    margin-bottom: var(--space-xl); */
  }

  .hero-image-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .page-hero-stats {
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    letter-spacing: -0.02em;
  }

  h2 {
    font-size: 26px;
  }

  /* Hide desktop-only elements */
  .navbar-links,
  .navbar-actions {
    display: none;
  }

  /* Show mobile-only header elements */
  .mobile-header-actions {
    display: flex;
  }

  .mobile-phone-btn {
    display: inline-flex;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Mobile slide-down drawer */
  .mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    background: #ffffff;
    padding: 16px 20px 24px;
    gap: 6px;
    z-index: 99;
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1), transform 280ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 280ms;
  }

  .mobile-drawer.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1), transform 280ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0s;
  }

  /* Mobile overlay backdrop */
  .mobile-overlay {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 98;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .overlay-enter {
    transition: opacity 300ms ease;
  }

  .overlay-enter-start {
    opacity: 0;
  }

  .overlay-enter-end {
    opacity: 1;
  }

  .overlay-leave {
    transition: opacity 200ms ease;
  }

  .overlay-leave-start {
    opacity: 1;
  }

  .overlay-leave-end {
    opacity: 0;
  }

  .hero {
    padding: 100px 0 var(--space-2xl);
  }

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

  .hero-stats {
    gap: var(--space-md);
  }

  .page-hero {
    padding: 110px 0 50px;
  }

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

  .page-hero-stats {
    gap: var(--space-lg);
    flex-wrap: wrap;
  }

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

  .page-hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

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

  .problems-grid,
  .industries-grid,
  .features-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item::after {
    display: none;
  }

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

  .service-hero {
    grid-template-columns: 1fr;
  }

  .service-hero-sidebar {
    order: -1;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .steps-grid::before {
    display: none;
  }

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

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

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

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

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: var(--space-md);
  }

  .problems-grid,
  .industries-grid,
  .features-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}