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

:root {
  /* Colors - Premium dark palette inspired by XPD Global */
  --primary: #0661fc;
  --primary-dark: #0550d8;
  --primary-light: #cfe2ff;
  --primary-50: #e8f1ff;
  --secondary: #0d1321;
  --secondary-light: #1a2332;
  --text: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --success: #10b981;
  --success-light: #d1fae5;
  --warning: #f59e0b;
  --accent: #dedc00;

  /* Typography */
  --font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  /* Shadows - More refined */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.75rem;
}
h2 {
  font-size: 2.25rem;
}
h3 {
  font-size: 1.375rem;
}
h4 {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.75rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(6, 97, 252, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(6, 97, 252, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
}

.btn-outline {
  background: var(--white);
  color: var(--secondary);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-50);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  transition: all var(--transition-smooth);
}

/* Scroll Progress Bar */
#scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 1001; /* Above header */
  pointer-events: none;
}

#scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), #a855f7);
  transition: width 0.1s ease;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 1px 4px rgba(6, 97, 252, 0.4);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

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

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

.nav-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--secondary);
  transition: all var(--transition-smooth);
  border-radius: 2px;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

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

  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: calc(76px + var(--space-5xl)) 0 var(--space-5xl);
  background: linear-gradient(to bottom right, #f8fafc, #ebf4ff, #faf5ff);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Animated Mesh Gradient Background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(37, 99, 235, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(168, 85, 247, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 60% 10%,
      rgba(56, 189, 248, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    );
  opacity: 0.8;
  filter: blur(40px);
  animation: meshFlow 20s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes meshFlow {
  0% {
    transform: scale(1) translate(0, 0);
  }
  33% {
    transform: scale(1.1) translate(2%, 2%);
  }
  66% {
    transform: scale(0.9) translate(-2%, 1%);
  }
  100% {
    transform: scale(1.05) translate(1%, -2%);
  }
}

.hero-content {
  display: grid;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-text h1 {
  margin-bottom: var(--space-lg);
  font-size: 2.75rem;
  line-height: 1.15;
}

.hero-text > p {
  font-size: 1.1875rem;
  color: var(--text-light);
  margin-bottom: var(--space-xl);
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-image-container {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.03);
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
  }

  .hero-text h1 {
    font-size: 3.75rem;
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.section-label::before,
.section-label::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
}

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

.section-header p {
  color: var(--text-light);
  font-size: 1.125rem;
}

/* Services Section */
.services {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  gap: var(--space-lg);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-smooth);
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

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

.service-card:hover::before {
  opacity: 1;
}

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

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: color var(--transition-smooth);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.service-card > p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}

.service-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================
   Live Counter Section
   ========================================= */
.live-counter-section {
  padding: var(--space-xl) 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
  margin-top: -20px; /* Overlap hero slightly */
}

.live-counter-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  text-align: center;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(6, 97, 252, 0.1);
}

.counter-text {
  font-size: 1.125rem;
  color: var(--text-light);
  font-weight: 500;
}

.counter-text .shipthis-brand {
  color: var(--primary);
  font-weight: 700;
}

.counter-display {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--secondary);
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  /* Gradient text */
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 5px;
}

/* Number jump animation */
.counter-animate {
  animation: counterPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes counterPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .live-counter-wrapper {
    flex-direction: row;
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-3xl);
  }
}

/* Solutions Section */
.solutions {
  padding: var(--space-5xl) 0;
  background: var(--secondary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.solutions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(37, 99, 235, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.solutions-content {
  display: grid;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
}

.solutions-text .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.solutions-text .section-label::before,
.solutions-text .section-label::after {
  background: rgba(255, 255, 255, 0.2);
}

.solutions-text h2 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.solutions-text > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.solutions-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.solution-feature {
  display: flex;
  gap: var(--space-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-smooth);
}

.solution-feature:hover .feature-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary-light);
}

.solution-feature h4 {
  color: var(--white);
  margin-bottom: var(--space-xs);
  font-size: 1.125rem;
}

.solution-feature p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.solutions-visual {
  position: relative;
}

.solutions-image {
  border-radius: var(--radius-2xl);
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 1024px) {
  .solutions-content {
    grid-template-columns: 1fr 1fr;
  }

  .solutions-visual {
    order: -1;
  }
}

/* Split Comparison Block */
.comparison-block {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-4xl);
}

.comparison-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.comparison-card.digital {
  background: rgba(6, 97, 252, 0.15);
  border-color: rgba(6, 97, 252, 0.3);
  position: relative;
}

.comparison-card.digital::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 20px rgba(6, 97, 252, 0.2);
  pointer-events: none;
}

.comp-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-header h3 {
  color: var(--white);
  margin: 0;
}

.cross-icon,
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.125rem;
}

.cross-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.check-icon {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 0 15px rgba(6, 97, 252, 0.5);
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.comp-list li {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
}

.manual .comp-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: rgba(239, 68, 68, 0.6);
  font-size: 0.75rem;
  top: 3px;
}

.digital .comp-list li {
  color: var(--white);
  font-weight: 500;
}

.digital .comp-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-size: 0.75rem;
  top: 3px;
}

@media (min-width: 768px) {
  .comparison-block {
    grid-template-columns: 1fr 1fr;
  }
}

/* Quote Section */
.quote-section {
  padding: var(--space-5xl) 0;
  background: var(--bg);
  position: relative;
}

.quote-wrapper {
  display: grid;
  gap: var(--space-3xl);
  align-items: start;
}

.quote-info .section-label {
  justify-content: flex-start;
}

.quote-info .section-label::before {
  display: none;
}

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

.quote-info > p {
  color: var(--text-light);
  margin-bottom: var(--space-xl);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.benefit svg {
  width: 22px;
  height: 22px;
  color: var(--success);
  flex-shrink: 0;
}

.quote-form-container {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

@media (min-width: 1024px) {
  .quote-wrapper {
    grid-template-columns: 3fr 7fr;
  }
}

/* =========================================
   Live Tracker Demo Section 
   ========================================= */
.live-tracker {
  padding: var(--space-5xl) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.tracker-demo-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.tracker-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.tracking-id {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.05em;
}

.shipment-route {
  color: var(--text-light);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.shipment-route .arrow {
  color: var(--border);
}

.tracker-status {
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
}

.tracker-status.in-transit {
  background: rgba(6, 97, 252, 0.1);
  color: var(--primary);
  border: 1px solid rgba(6, 97, 252, 0.2);
}

.milestone-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: var(--space-xl);
}

/* Connecting line */
.milestone-timeline::before {
  content: "";
  position: absolute;
  top: 16px; /* align with center of icon */
  left: 20px;
  right: 20px;
  height: 4px;
  background: var(--border);
  z-index: 0;
  border-radius: 2px;
}

.milestone {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 25%;
}

.milestone-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.completed .milestone-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.active .milestone-icon {
  border-color: var(--primary);
  background: var(--white);
}

.milestone-icon.pulse {
  position: relative;
}

.milestone-icon.pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(6, 97, 252, 0.2);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.milestone-content h4 {
  font-size: 0.875rem;
  margin-bottom: 2px;
  color: var(--text);
}

.milestone-content p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

.milestone-content span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.active .milestone-content h4 {
  color: var(--primary);
}

.tracker-progress-bar-wrapper {
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.tracker-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 1s ease-out;
  position: relative;
  overflow: hidden;
}

.tracker-progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 2s infinite;
}

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

@media (max-width: 639px) {
  /* Vertical timeline for mobile */
  .milestone-timeline {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .milestone-timeline::before {
    top: 0;
    bottom: 0;
    left: 16px;
    width: 4px;
    height: 100%;
  }

  .milestone {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: var(--space-md);
  }

  .milestone-icon {
    margin-bottom: 0;
  }
}

/* =========================================
   Showcase & Embed Section
   ========================================= */
.layout-showcase {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

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

.showcase-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.showcase-tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  scrollbar-width: thin;
}

.showcase-tabs::-webkit-scrollbar {
  height: 4px;
}

.tab-btn {
  flex: 1;
  min-width: 120px;
  padding: 1rem;
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  border-bottom: 3px solid transparent;
  font-size: 0.9375rem;
}

.tab-btn:hover {
  color: var(--secondary);
  background: var(--white);
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--white);
}

.showcase-content {
  padding: var(--space-xl);
  min-height: 400px;
}

/* Embed Snippet */
.embed-snippet-block {
  max-width: 800px;
  margin: var(--space-4xl) auto 0;
}

.embed-snippet-block h4 {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.code-editor {
  background: #1e1e1e;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid #333;
}

.code-header {
  background: #2d2d2d;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #111;
}

.mac-dots {
  display: flex;
  gap: 6px;
}

.mac-dots i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.mac-dots i:nth-child(1) {
  background: #ff5f56;
}
.mac-dots i:nth-child(2) {
  background: #ffbd2e;
}
.mac-dots i:nth-child(3) {
  background: #27c93f;
}

.filename {
  color: #858585;
  font-family: monospace;
  font-size: 0.8125rem;
  margin-left: 1rem;
  flex: 1;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ccc;
  border: none;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.code-editor pre {
  margin: 0;
  padding: 1.5rem;
  overflow-x: auto;
}

.code-editor code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875rem;
  color: #d4d4d4;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-all;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--secondary);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Tracking Section */
.tracking-section {
  padding: var(--space-3xl) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tracking-wrapper {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tracking-content h2 {
  margin-bottom: var(--space-sm);
  font-size: 1.75rem;
}

.tracking-content > p {
  color: var(--text-light);
  margin-bottom: var(--space-xl);
}

.tracking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tracking-input {
  flex: 1;
  padding: 1.125rem 1.5rem;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-family: inherit;
  transition: all var(--transition-base);
}

.tracking-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-50);
}

@media (min-width: 640px) {
  .tracking-form {
    flex-direction: row;
  }

  .tracking-form .btn {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Industries Section */
.industries {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.industries-grid {
  display: grid;
  gap: var(--space-lg);
}

.industry-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition-smooth);
}

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

.industry-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.industry-card h3 {
  padding: var(--space-lg) var(--space-lg) var(--space-sm);
}

.industry-card p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-light);
  font-size: 0.9375rem;
}

@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* About Section */
.about {
  padding: var(--space-5xl) 0;
  background: var(--bg);
}

.about-content {
  display: grid;
  gap: var(--space-3xl);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image {
  border-radius: var(--radius-2xl);
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.about-stats-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  gap: var(--space-2xl);
  border: 1px solid var(--border-light);
}

.about-stat {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.about-text .section-label {
  justify-content: flex-start;
}

.about-text .section-label::before {
  display: none;
}

.about-text h2 {
  margin-bottom: var(--space-lg);
}

.about-text p {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.certifications {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.certifications h4 {
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.cert-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cert {
  display: inline-block;
  padding: 0.625rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all var(--transition-base);
}

.cert:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Testimonials Section */
.testimonials {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-smooth);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-50);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
}

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

.testimonial-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong {
  color: var(--secondary);
  font-weight: 600;
}

.author-info span {
  font-size: 0.875rem;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact Section */
.contact {
  padding: var(--space-5xl) 0;
  background: var(--bg);
}

.contact-wrapper {
  display: grid;
  gap: var(--space-3xl);
}

.contact-info .section-label {
  justify-content: flex-start;
}

.contact-info .section-label::before {
  display: none;
}

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

.contact-info > p {
  color: var(--text-light);
  margin-bottom: var(--space-xl);
  font-size: 1.0625rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.office-locations h4 {
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.locations {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.locations span {
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.locations span:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form-group:last-of-type {
  margin-bottom: var(--space-lg);
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1.125rem;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  background: var(--white);
  transition: all var(--transition-base);
}

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

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

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer */
.footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-5xl) 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(255, 255, 255, 0.1),
    transparent
  );
}

.footer-content {
  display: grid;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: var(--space-xl);
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col a {
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  align-items: center;
  text-align: center;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  transition: color var(--transition-base);
}

.footer-legal a:hover {
  color: var(--white);
}

/* Powered By ShipThis */
.powered-by {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  font-size: 0.8125rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.powered-by:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.powered-by span {
  color: rgba(255, 255, 255, 0.5);
}

.powered-by a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--white);
  font-weight: 600;
  transition: color var(--transition-base);
}

.powered-by a:hover {
  color: var(--primary-light);
}

.powered-by svg {
  color: var(--primary-light);
}

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
  }
}

/* =========================================
   Mobile Floating Action Button
   ========================================= */
.mobile-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(6, 97, 252, 0.4);
  z-index: 900;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-fab svg {
  width: 24px;
  height: 24px;
}

.mobile-fab.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Base styles hide it, MQ overrides */
@media (min-width: 768px) {
  .mobile-fab {
    display: none !important;
  }
}

/* =========================================
   Sticky Bottom CTA Bar (Desktop largely)
   ========================================= */
.sticky-footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: var(--white);
  padding: 12px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-footer-cta.visible {
  transform: translateY(0);
}

.sticky-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.sticky-footer-text {
  display: flex;
  flex-direction: column;
  font-size: 0.8125rem;
}

.sticky-footer-text strong {
  font-size: 0.9375rem;
}

.sticky-footer-cta .btn {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .sticky-footer-cta {
    display: none; /* Hide on mobile to avoid clashing with FAB */
  }
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* =============================================
   Blog Section Styles
   ============================================= */

/* Blog Preview Section (Homepage) */
.blog-preview {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition-smooth);
}

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

.blog-card-image {
  overflow: hidden;
  height: 200px;
}

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

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

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

.blog-category {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.blog-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.blog-card-content p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-base);
}

.blog-link:hover {
  gap: 0.625rem;
}

.blog-link::after {
  content: "→";
  transition: transform var(--transition-base);
}

.blog-link:hover::after {
  transform: translateX(4px);
}

.blog-cta {
  text-align: center;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Blog Page Styles */
.blog-hero {
  padding: calc(var(--space-5xl) + 80px) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--secondary) 0%, #1e3a8a 100%);
  color: var(--white);
  text-align: center;
}

.blog-hero .section-label {
  color: rgba(255, 255, 255, 0.7);
  justify-content: center;
}

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

.blog-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blog-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Blog Main Content */
.blog-main {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.blog-article {
  max-width: 760px;
  margin: 0 auto var(--space-4xl);
}

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

.blog-date {
  color: var(--text-light);
  font-size: 0.875rem;
}

.blog-article h2 {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.article-meta {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.article-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
}

.article-content p {
  margin-bottom: var(--space-lg);
}

.article-content h3 {
  font-size: 1.375rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--secondary);
}

.article-content ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.article-content li {
  margin-bottom: var(--space-sm);
  position: relative;
}

.article-content li::marker {
  color: var(--primary);
}

.article-content strong {
  color: var(--secondary);
}

.article-divider {
  max-width: 760px;
  margin: var(--space-4xl) auto;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Blog CTA Section */
.blog-cta-section {
  max-width: 760px;
  margin: var(--space-4xl) auto 0;
  padding: var(--space-3xl);
  background: linear-gradient(135deg, var(--primary-50) 0%, #dbeafe 100%);
  border-radius: var(--radius-2xl);
  text-align: center;
}

.blog-cta-section h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

.blog-cta-section p {
  color: var(--text-light);
  font-size: 1.0625rem;
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Active Nav Link */
.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .blog-article h2 {
    font-size: 2.5rem;
  }
}

/* =============================================
   New Content Sections Styles
   ============================================= */

/* Stats Bar */
.stats-bar {
  padding: var(--space-2xl) 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

@media (min-width: 1024px) {
  .stats-bar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-bar-item {
  display: flex;
  flex-direction: column;
}

.stats-bar-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stats-bar-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stats-bar-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-xs);
}

/* How It Works (Process) */
.process {
  padding: var(--space-5xl) 0;
  background: var(--bg);
}

.process-steps {
  display: grid;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  position: relative;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    z-index: 1;
  }
}

.process-step {
  position: relative;
  z-index: 2;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
  border: 4px solid var(--white);
}

.process-step h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Technology Showcase */
.technology {
  padding: var(--space-5xl) 0;
  background: var(--white);
  overflow: hidden;
}

.tech-content {
  display: grid;
  gap: var(--space-4xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .tech-content {
    grid-template-columns: 1fr 1fr;
  }
}

.tech-text h2 {
  margin-bottom: var(--space-lg);
}

.tech-text > p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.tech-features-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .tech-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-feature {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.tech-feature-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.tech-feature-icon svg {
  width: 100%;
  height: 100%;
}

.tech-feature h4 {
  font-size: 1.125rem;
}

.tech-feature p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.tech-visual {
  position: relative;
}

.tech-card-preview {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.tech-card-header {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.header-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.tech-image {
  width: 100%;
  height: auto;
  display: block;
}

.tech-floating-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-light);
  animation: float 3s ease-in-out infinite;
}

.badge-icon {
  width: 24px;
  height: 24px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.tech-floating-badge strong {
  display: block;
  font-size: 14px;
  line-height: 1;
}

.tech-floating-badge span {
  font-size: 12px;
  color: var(--text-light);
}

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

@media (min-width: 1024px) {
  .blog-article h2 {
    font-size: 2.5rem;
  }
}
