/* Hide why-eptime images on small screens */
@media (max-width: 800px) {
  .hide-on-mobile {
    display: none !important;
  }
}
/* Hide why-eptime images on mobile and tablet (<=1024px) */
@media (max-width: 1024px) {
  .why-eptime-images {
    display: none !important;
  }
}
:root {
  --color-primary: #0c5adb;
  --color-primary-dark: #0a3f9e;
  --color-secondary: #16a0f2;
  --color-dark: #0c1f33;
  --color-muted: #4a5d78;
  --color-light: #f5f7fb;
  --color-white: #ffffff;
  --shadow-md: 0 20px 45px rgba(12, 42, 66, 0.12);
  --shadow-sm: 0 10px 25px rgba(12, 42, 66, 0.08);
  --font-body: "Manrope", "Segoe UI", sans-serif;
  /* Smooth animation curves */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* New theme variables for consistency */
  --primary: #0c5adb;
  --primary-dark: #0a3f9e;
  --text: #0c1f33;
  --text-secondary: #4a5d78;
  --surface: #f5f7fb;
  --surface-dark: #0c1f33;

  scroll-behavior: smooth;
  scroll-padding-top: clamp(84px, 10vh, 120px);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

* {
  box-sizing: border-box;
}

/* Skip to main content link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
  transition: top 300ms var(--ease-out-expo);
}

.skip-link:focus {
  top: 0;
  outline: 3px solid rgba(12, 90, 219, 0.5);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-nav-open {
  overflow: hidden;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 38, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms var(--ease-out-quart),
    visibility 350ms var(--ease-out-quart);
  z-index: 1000;
  pointer-events: none;
}

.nav-backdrop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

img {
  max-width: 100%;
  display: block;
}

.card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.partnership__visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(245, 247, 251, 0.92);
  border-bottom: 1px solid rgba(12, 42, 66, 0.08);
  will-change: transform;
  transform: translateY(0);
  transition: transform 400ms var(--ease-out-expo),
    box-shadow 400ms var(--ease-out-quart);
  width: 100%;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 30px rgba(12, 42, 66, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-dark);
}

.brand img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  /* display: block; */
}

.header-contact {
  display: none;
  margin-left: auto;
  font-size: 0.95rem;
  color: var(--color-muted);
  gap: 1.5rem;
}

.header-contact a {
  color: var(--color-dark);
  font-weight: 500;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 1201;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
  color: var(--color-muted);
}

.main-nav li {
  position: relative;
}

.main-nav a {
  color: inherit;
  text-decoration: none;
}

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 0.4rem;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(-1px);
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border-radius: 12px;
  padding: 0.75rem 0;
  display: grid;
  gap: 0.35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: top center;
  transition: opacity 280ms var(--ease-out-quart),
    transform 280ms var(--ease-out-expo), visibility 280ms var(--ease-out-quart);
  z-index: 10;
}

.dropdown a {
  padding: 0.55rem 1.25rem;
  color: var(--color-dark);
  font-size: 0.95rem;
  display: block;
  transition: background 200ms var(--ease-out-quart);
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(12, 90, 219, 0.08);
  text-decoration: none;
}

.has-dropdown:focus-within .dropdown,
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cta {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  font-weight: 600;
  transition: transform 280ms var(--ease-spring),
    box-shadow 280ms var(--ease-out-quart),
    background 200ms var(--ease-out-quart);
}

.cta:hover,
.cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(12, 90, 219, 0.25);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.25rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1300;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 350ms var(--ease-out-expo),
    opacity 250ms var(--ease-out-quart);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.section {
  padding: 5rem 0;
}

section[id] {
  scroll-margin-top: clamp(84px, 10vh, 120px);
}

.section--accent {
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.06),
    rgba(22, 160, 242, 0.06)
  );
  position: relative;
}

/* Technical schematic pattern for Solutions section */
.section--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    /* Crosshatch pattern - like technical drawings */ linear-gradient(
      45deg,
      rgba(12, 90, 219, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(-45deg, rgba(12, 90, 219, 0.04) 1px, transparent 1px),
    /* Corner accent circles - like precision measurement marks */
      radial-gradient(
        circle at 5% 5%,
        rgba(12, 90, 219, 0.08) 0%,
        rgba(12, 90, 219, 0.08) 2px,
        transparent 2px,
        transparent 8px,
        rgba(12, 90, 219, 0.05) 8px,
        rgba(12, 90, 219, 0.05) 10px,
        transparent 10px
      ),
    radial-gradient(
      circle at 95% 95%,
      rgba(12, 90, 219, 0.08) 0%,
      rgba(12, 90, 219, 0.08) 2px,
      transparent 2px,
      transparent 8px,
      rgba(12, 90, 219, 0.05) 8px,
      rgba(12, 90, 219, 0.05) 10px,
      transparent 10px
    ),
    /* Soft gradient backdrop */
      radial-gradient(
        ellipse 60% 60% at 0% 100%,
        rgba(12, 90, 219, 0.08) 0%,
        transparent 50%
      ),
    radial-gradient(
      ellipse 60% 60% at 100% 0%,
      rgba(22, 160, 242, 0.06) 0%,
      transparent 50%
    );
  background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%, 100% 100%,
    100% 100%;
  pointer-events: none;
  z-index: 0;
}

.section--accent > .container {
  position: relative;
  z-index: 1;
}

.cta-grid {
  gap: 3rem;
  align-items: center;
}

.cta-grid .cta-grid__text {
  padding: 2rem 0;
}

.cta-grid .cta-grid__card {
  padding: 2.5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section--alt {
  background: var(--color-dark);
  color: var(--color-white);
}

.section--light {
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

#capabilities.section--light {
  position: relative;
  background: linear-gradient(135deg, rgba(24,36,58,0.92) 0%, rgba(16,25,43,0.92) 60%, rgba(10,18,32,0.92) 100%),
    url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1200');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f3f6fa;
  z-index: 1;
}

#capabilities.section--light > .container,
#capabilities.section--light .section__header h2,
#capabilities.section--light .section__header p {
  color: #f3f6fa;
}

.section--light > .container {
  position: relative;
  z-index: 1;
}

/* Blueprint grid pattern for Why Choose section - engineering theme */
.section--light::before {
  display: none;
}

/* Corner technical markers */
.section--light::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    /* Top-left corner bracket */ linear-gradient(
      to right,
      rgba(12, 90, 219, 0.15) 2px,
      transparent 2px
    ),
    linear-gradient(to bottom, rgba(12, 90, 219, 0.15) 2px, transparent 2px),
    /* Bottom-right corner bracket */
      linear-gradient(to left, rgba(12, 90, 219, 0.15) 2px, transparent 2px),
    linear-gradient(to top, rgba(12, 90, 219, 0.15) 2px, transparent 2px),
    /* Subtle gradient wash */
      radial-gradient(
        ellipse 50% 50% at 0% 100%,
        rgba(12, 90, 219, 0.06) 0%,
        transparent 70%
      ),
    radial-gradient(
      ellipse 50% 50% at 100% 0%,
      rgba(22, 160, 242, 0.05) 0%,
      transparent 70%
    );
  background-size: 60px 100%, 100% 60px, 60px 100%, 100% 60px, 100% 100%,
    100% 100%;
  background-position: 0 0, 0 0, 100% 100%, 100% 100%, 0 0, 0 0;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.section--light > .container {
  position: relative;
  z-index: 1;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header h2 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.section__header .heading-with-icon {
  justify-content: center;
}

.section__header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-muted);
}

.client-quote {
  max-width: 650px;
  margin: 1.5rem auto 0;
  padding: 1.25rem 1.5rem;
  background: rgba(12, 90, 219, 0.04);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 12px 12px 0;
}

.client-quote p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0 0 0.5rem;
}

.client-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 1.75rem;
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.1) 0%,
    rgba(22, 160, 242, 0.06) 100%
  );
  border: 1px solid rgba(12, 90, 219, 0.15);
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
  box-shadow: 0 4px 12px rgba(12, 90, 219, 0.08);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.highlight-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 90, 219, 0.12);
}

.highlight-item strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

/* Testimonial Slider */
#testimonials {
  background: linear-gradient(
    180deg,
    #fff 0%,
    var(--color-light) 50%,
    #fff 100%
  );
}

.testimonial-slider {
  position: relative;
  margin-top: 0.5rem;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0 1.5rem;
  cursor: grab;
  user-select: none;
}

.testimonial-track.is-dragging {
  cursor: grabbing;
}

.testimonial-slide {
  flex: 0 0 340px;
  min-width: 340px;
}

.testimonial-content {
  background: var(--color-white);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(12, 42, 66, 0.06),
    0 1px 3px rgba(12, 42, 66, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(12, 90, 219, 0.06);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.testimonial-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12, 42, 66, 0.1);
}

.testimonial-rating {
  display: flex;
  gap: 0.2rem;
}

.testimonial-rating svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}

.testimonial-content blockquote {
  margin: 0;
  flex: 1;
}

.testimonial-content blockquote p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-dark);
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(12, 90, 219, 0.1);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.1) 0%,
    rgba(22, 160, 242, 0.15) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar svg {
  width: 26px;
  height: 26px;
  color: var(--color-primary);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-info strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.testimonial-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  opacity: 0.6;
}

.testimonial-scroll-hint svg {
  width: 16px;
  height: 16px;
  animation: scrollHint 1.5s ease-in-out infinite;
}

@keyframes scrollHint {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

@media (min-width: 768px) {
  .testimonial-slide {
    flex: 0 0 380px;
  }

  .testimonial-scroll-hint {
    display: none;
  }
}

@media (min-width: 1100px) {
  .testimonial-track {
    justify-content: center;
  }

  .testimonial-slide {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: 380px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial {
  margin: 0;
  padding: 0;
}

.testimonial p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  margin: 0 0 1.25rem;
}

.testimonial cite {
  display: flex;
  flex-direction: column;
  font-style: normal;
}

.testimonial cite strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial cite span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.06) 0%,
    rgba(22, 160, 242, 0.03) 30%,
    rgba(245, 247, 251, 1) 60%,
    rgba(255, 255, 255, 1) 100%
  );
  position: relative;
  overflow: visible;
}

/* =====================================================
   BLUEPRINT DOT PATTERN BACKGROUND - Desktop only
   Clean, subtle mechanical-themed background
   ===================================================== */
@media (min-width: 921px) {
  /* Radial glow behind images for depth */
  .hero__visual::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
      ellipse at center,
      rgba(12, 90, 219, 0.08) 0%,
      rgba(12, 90, 219, 0.04) 30%,
      transparent 70%
    );
    pointer-events: none;
    z-index: 0;
  }

  /* Blueprint dot pattern on right 50% */
  .hero::before {
    content: "";
    position: absolute;
    top: -6rem;
    right: 0;
    bottom: 0;
    width: 50%;
    background-image: radial-gradient(
      circle,
      rgba(12, 90, 219, 0.35) 2px,
      transparent 2px
    );
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
  }

  /* Simple corner accents */
  .hero::after {
    content: "";
    position: absolute;
    top: -6rem;
    right: 0;
    bottom: 0;
    width: 50%;
    background-image:
      /* TOP RIGHT corner bracket */ linear-gradient(
        to left,
        rgba(12, 90, 219, 0.3) 0px,
        rgba(12, 90, 219, 0.3) 60px,
        transparent 60px
      ),
      linear-gradient(
        to bottom,
        rgba(12, 90, 219, 0.3) 0px,
        rgba(12, 90, 219, 0.3) 60px,
        transparent 60px
      ),
      /* BOTTOM RIGHT corner bracket */
        linear-gradient(
          to left,
          rgba(12, 90, 219, 0.18) 0px,
          rgba(12, 90, 219, 0.18) 40px,
          transparent 40px
        ),
      linear-gradient(
        to top,
        rgba(12, 90, 219, 0.18) 0px,
        rgba(12, 90, 219, 0.18) 40px,
        transparent 40px
      );
    background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
    background-position: top right, top right, bottom right, bottom right;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
  }

  /* Container setup */
  .hero__visual {
    position: relative;
    z-index: 1;
  }

  /* Decorative gear accent */
  .hero-gear-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    color: var(--color-primary);
    pointer-events: none;
    z-index: 0;
    animation: gear-spin 60s linear infinite;
  }

  @keyframes gear-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  /* Hero bento container */
  .hero-bento {
    position: relative;
    z-index: 2;
  }

  /* === BENTO TILES stay on top === */
  .hero-bento__tile {
    position: relative;
    z-index: 3;
  }
}

/* Ensure hero content stays above decorations */
.hero > .container {
  position: relative;
  z-index: 1;
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.hero__text h1 {
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  margin: 0 0 1rem;
  line-height: 1.1;
}

/* Enhanced headline styling for desktop */
@media (min-width: 921px) {
  .hero__text h1 {
    background: linear-gradient(
      135deg,
      var(--color-dark) 0%,
      var(--color-dark) 60%,
      var(--color-primary) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero__text .eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero__text .eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--color-primary),
      var(--color-secondary)
    );
    border-radius: 2px;
  }
}

.hero__text p {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__contact {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.hero__contact span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero__contact a {
  color: var(--color-text);
  font-weight: 600;
  transition: color 280ms var(--ease-out-quart);
}

.hero__contact a:hover {
  color: var(--color-primary);
}

.hero__visual {
  position: relative;
}

.hero__visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: -10% -5% auto -5%;
  height: 120px;
  background: radial-gradient(
    circle at center,
    rgba(12, 90, 219, 0.35),
    transparent 65%
  );
  filter: blur(35px);
  opacity: 0.65;
  pointer-events: none;
}

.hero-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 60px);
  gap: 0.6rem;
  width: min(580px, 100%);
  margin-left: auto;
}

.hero-bento__tile {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(12, 90, 219, 0.05);
  transition: transform 450ms var(--ease-out-expo),
    box-shadow 450ms var(--ease-out-quart);
}

.hero-bento__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12),
    rgba(0, 0, 0, 0.08)
  );
  opacity: 0;
  transition: opacity 350ms var(--ease-out-quart);
}

.hero-bento__tile:hover,
.hero-bento__tile:focus-visible {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(12, 90, 219, 0.2), 0 8px 25px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(12, 90, 219, 0.1);
  z-index: 3;
}

.hero-bento__tile:hover::before,
.hero-bento__tile:focus-visible::before {
  opacity: 1;
}

/* Hero main tile - CNC machining / precision engineering */
.hero-bento__tile--primary {
  grid-column: 1 / 7;
  grid-row: 1 / 4;
  border-radius: 24px;
  /* background-image: url("https://images.pexels.com/photos/3846508/pexels-photo-3846508.jpeg?auto=compress&cs=tinysrgb&w=700&h=500&fit=crop"); */
  background-image: url("https://images.pexels.com/photos/3861938/pexels-photo-3861938.jpeg?auto=compress&cs=tinysrgb&h=600&fit=crop");
}

/* Tall right tile - Industrial inspection */
.hero-bento__tile--collab {
  grid-column: 7 / 13;
  grid-row: 1 / 3;
  border-radius: 20px;
  background-image: url("../images/CNC-Machine.jpg");
  /* background-image: url("https://images.pexels.com/photos/3862132/pexels-photo-3862132.jpeg?auto=compress&cs=tinysrgb&w=400&h=350&fit=crop"); */
}

/* Small tile - Metal grinding sparks */
.hero-bento__tile--automation {
  grid-column: 7 / 10;
  grid-row: 3 / 4;
  border-radius: 16px;
  background-image: url("https://images.pexels.com/photos/1145434/pexels-photo-1145434.jpeg?auto=compress&cs=tinysrgb&w=250&h=250&fit=crop");
}

/* Accent tile - Gears close-up */
.hero-bento__tile--prototype {
  grid-column: 10 / 13;
  grid-row: 3 / 4;
  border-radius: 18px;
  background-image: url("https://images.pexels.com/photos/3785930/pexels-photo-3785930.jpeg?auto=compress&cs=tinysrgb&w=300&h=250&fit=crop");
}

/* Bottom left - Mechanical gears */
.hero-bento__tile--concept {
  grid-column: 1 / 5;
  grid-row: 4 / 7;
  border-radius: 20px;
  background-image: url("https://images.pexels.com/photos/159275/macro-focus-cogwheel-gear-159275.jpeg?auto=compress&cs=tinysrgb&w=400&h=350&fit=crop");
}

/* Center bottom - Industrial machinery / robotic arm */
.hero-bento__tile--orbit {
  grid-column: 5 / 10;
  grid-row: 4 / 7;
  border-radius: 22px;
  background-image: url('../images/Welding.jpg');
  /* background-image: url("https://images.pexels.com/photos/2381463/pexels-photo-2381463.jpeg?auto=compress&cs=tinysrgb&w=500&h=400&fit=crop"); */
}

/* Bottom right - 3D printing / prototyping */
.hero-bento__tile--extra {
  grid-column: 10 / 13;
  grid-row: 4 / 7;
  border-radius: 16px;
  background-image: url("../images/3D-Printing.jpg");
  /* background-image: url("https://images.pexels.com/photos/8566472/pexels-photo-8566472.jpeg?auto=compress&cs=tinysrgb&w=280&h=220&fit=crop"); */
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 300ms var(--ease-spring),
    box-shadow 300ms var(--ease-out-quart),
    background 250ms var(--ease-out-quart);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(12, 90, 219, 0.28);
  background: #0a4fbf;
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button--ghost {
  background: transparent;
  border-color: rgba(12, 90, 219, 0.22);
  color: var(--color-primary);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(12, 90, 219, 0.08);
  box-shadow: none;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.tile {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 400ms var(--ease-out-expo),
    box-shadow 400ms var(--ease-out-quart);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card:hover,
.card:focus-within,
.tile:hover,
.tile:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(12, 42, 66, 0.12);
}

.card h3,
.tile h3 {
  margin-top: 1rem;
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
}

.heading-with-icon {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
}

.card .heading-with-icon,
.tile .heading-with-icon {
  margin-top: 1rem;
}

.icon-badge {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: rgba(12, 90, 219, 0.08);
  border: 1px solid rgba(12, 90, 219, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.icon-badge svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
}

.card p,
.tile p {
  margin: 0;
  color: var(--color-muted);
}

.text-link {
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  position: relative;
}

.text-link::after {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
  transition: transform 300ms var(--ease-out-expo),
    margin-left 300ms var(--ease-out-expo);
  margin-left: 0.2rem;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px) rotate(-45deg);
}

.list {
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--color-muted);
}

.list li {
  display: flex;
  align-items: center;
}

.list li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  border: 2px solid var(--color-primary);
  margin-right: 0.6rem;
  transform: rotate(45deg);
}

.form {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1.2rem;
}

.form label {
  font-weight: 600;
  font-size: 0.95rem;
  display: grid;
  gap: 0.55rem;
}

.form input,
.form select,
.form textarea {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(12, 42, 66, 0.18);
  font: inherit;
  background: var(--color-light);
  transition: border-color 250ms var(--ease-out-quart),
    box-shadow 250ms var(--ease-out-quart);
}

.form input[type="file"] {
  display: none;
}

.file-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(12, 90, 219, 0.25);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 280ms var(--ease-out-quart),
    border-color 280ms var(--ease-out-quart), transform 300ms var(--ease-spring);
}

.file-upload-btn:hover,
.file-upload-btn:focus-visible {
  background: rgba(12, 90, 219, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.file-upload-btn svg {
  width: 18px;
  height: 18px;
}

.file-list {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  max-width: 100%;
  overflow: hidden;
}

.file-list__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  max-width: 100%;
  min-width: 0;
}

.file-list__name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-list__remove {
  background: none;
  border: none;
  color: #b3261e;
  cursor: pointer;
  padding: 0.15rem;
  font-size: 0.8rem;
  line-height: 1;
}

.input-helper {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(12, 90, 219, 0.15);
}

/* Validation styling - light blue tint for invalid required fields */
.form input:invalid:not(:placeholder-shown),
.form select:invalid:not([value=""]),
.form textarea:invalid:not(:placeholder-shown) {
  background: rgba(12, 90, 219, 0.06);
  border-color: rgba(12, 90, 219, 0.35);
}

/* Show validation hint after user interaction (blur) */
.form input:required:user-invalid,
.form select:required:user-invalid,
.form textarea:required:user-invalid {
  background: rgba(12, 90, 219, 0.08);
  border-color: rgba(12, 90, 219, 0.45);
}

/* Remove blue tint when field is valid */
.form input:valid,
.form select:valid,
.form textarea:valid {
  background: var(--color-light);
}

.form__note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.form__status {
  min-height: 1.2rem;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.form__status.is-success {
  color: #1d874d;
}

.form__status.is-error {
  color: #b3261e;
}

.partnership {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.partnership__visual img {
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.partnership__text h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.insight-card {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  display: grid;
  gap: 1.2rem;
  transition: transform 400ms var(--ease-out-expo),
    box-shadow 400ms var(--ease-out-quart);
  border: 1px solid rgba(12, 42, 66, 0.06);
}

.insight-card:hover,
.insight-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(12, 42, 66, 0.12);
}

.insight-thumb {
  width: 80px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.12),
    rgba(22, 160, 242, 0.18)
  );
  background-image: var(--thumb, none);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(12, 42, 66, 0.08);
  transition: transform 400ms var(--ease-out-expo);
}

.insight-card:hover .insight-thumb {
  transform: scale(1.08);
}

.insight-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.insight-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.reason-item {
  background: var(--color-white);
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid rgba(12, 42, 66, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 400ms var(--ease-out-expo),
    box-shadow 400ms var(--ease-out-quart);
}

.reason-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(12, 42, 66, 0.1);
}

.reason-item h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  color: var(--color-primary);
}

.reason-item p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.site-footer {
  background: #061426;
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-grid--expanded {
  grid-template-columns: 1.5fr repeat(4, 1fr);
}

@media (max-width: 920px) {
  .footer-grid--expanded {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-grid--expanded {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

.footer-brand p {
  margin: 1rem 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: background 300ms ease, transform 300ms ease;
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.site-footer h4 {
  margin-bottom: 0.75rem;
  color: var(--color-white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 300ms ease;
}

.site-footer a:hover {
  color: var(--color-white);
}

.site-footer p {
  font-size: 0.9375rem;
  margin: 0 0 0.5rem;
}

.button--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  margin-top: 1rem;
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

.footer-note {
  text-align: center;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.brand--footer img {
  height: 36px;
}

.brand--footer span {
  color: var(--color-white);
}

/* Reveal animation - backgrounds always visible, only content animates */
.reveal-on-scroll {
  /* Background is always visible */
} 

.reveal-on-scroll > .container,
.reveal-on-scroll > .container > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms var(--ease-out-quart),
    transform 700ms var(--ease-out-expo);
}

.reveal-on-scroll.is-visible > .container,
.reveal-on-scroll.is-visible > .container > * {
  opacity: 1;
  transform: translateY(0);
}

/* Hero section should be visible immediately (above the fold) */
.hero.reveal-on-scroll > .container,
.hero.reveal-on-scroll > .container > * {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children for nicer effect */
.reveal-on-scroll.is-visible > .container > *:nth-child(1) {
  transition-delay: 0ms;
}
.reveal-on-scroll.is-visible > .container > *:nth-child(2) {
  transition-delay: 100ms;
}
.reveal-on-scroll.is-visible > .container > *:nth-child(3) {
  transition-delay: 200ms;
}
.reveal-on-scroll.is-visible > .container > *:nth-child(4) {
  transition-delay: 300ms;
}

.section.is-anchor-target {
  animation: anchorGlow 900ms ease-out;
}

@keyframes anchorGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(12, 90, 219, 0.25);
  }
  60% {
    box-shadow: 0 0 0 22px rgba(12, 90, 219, 0);
  }
  100% {
    box-shadow: none;
  }
}

:focus-visible {
  outline: 3px solid rgba(12, 90, 219, 0.35);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .header-contact {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
  }

  .site-header.is-hidden {
    transform: translateY(-100%);
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 56px;
  }

  /* Make nav container full width on mobile */
  .site-header .nav-container {
    width: 100%;
    max-width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-contact {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(420px, 92vw);
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 2.25rem;
    padding: 5rem 2.25rem 3.5rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 400ms var(--ease-out-expo),
      visibility 400ms var(--ease-out-expo);
    box-shadow: -20px 0 45px rgba(6, 20, 38, 0.12);
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    border-left: 1px solid rgba(12, 42, 66, 0.08);
    z-index: 1000;
  }

  .main-nav[data-open="true"] {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    width: 100%;
    margin: 0;
  }

  .main-nav li {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .main-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.65rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
  }

  .dropdown {
    position: relative;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    top: 0;
    left: 0;
    padding: 0.45rem 1.1rem;
    margin: 0.2rem 0 0.65rem;
    background: rgba(12, 90, 219, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(12, 90, 219, 0.12);
    gap: 0.45rem;
  }

  .dropdown a {
    padding: 0.4rem 0;
    display: block;
    color: var(--color-muted);
    border-bottom: 1px solid rgba(12, 42, 66, 0.08);
  }

  .dropdown a:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .main-nav > ul > li:not(:last-child) {
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(12, 42, 66, 0.08);
  }

  .main-nav .cta {
    width: 100%;
    text-align: center;
    margin-top: auto;
    flex-shrink: 0;
  }

  .hero__content,
  .grid--2,
  .grid--3,
  .partnership,
  .footer-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    gap: 1.5rem;
  }

  .cta-grid .cta-grid__text {
    padding: 1rem 0;
  }

  .cta-grid .cta-grid__card {
    padding: 1.5rem;
  }

  .highlights {
    gap: 0.75rem;
  }

  .highlight-item {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
  }

  .highlight-item strong {
    font-size: 1.25rem;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
  }

  .partnership__visual img {
    width: 100%;
  }

  .hero__contact {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-bento {
    width: 100%;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 70px);
    gap: 0.5rem;
  }

  .hero-bento__tile--primary {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
    border-radius: 16px;
  }

  .hero-bento__tile--collab {
    grid-column: 4 / 7;
    grid-row: 1 / 2;
    border-radius: 14px;
  }

  .hero-bento__tile--automation {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    border-radius: 12px;
  }

  .hero-bento__tile--prototype {
    grid-column: 5 / 7;
    grid-row: 2 / 3;
    border-radius: 12px;
  }

  .hero-bento__tile--concept {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
    border-radius: 14px;
  }

  .hero-bento__tile--orbit {
    grid-column: 3 / 6;
    grid-row: 3 / 5;
    border-radius: 16px;
  }

  .hero-bento__tile--extra {
    grid-column: 6 / 7;
    grid-row: 3 / 5;
    border-radius: 12px;
  }

  .header-contact {
    display: none;
  }
}

@media (min-width: 921px) {
  .header-contact {
    display: flex;
  }
}

@media (max-width: 600px) {
  .nav-container {
    padding: 0.75rem 1rem;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero__visual img {
    height: 220px;
    border-radius: 12px;
  }

  .section {
    padding: 4rem 0;
  }

  .card,
  .tile,
  .form {
    padding: 1.6rem;
  }

  .button {
    width: 100%;
  }

  .hero__cta {
    width: 100%;
  }

  .hero-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 85px);
    gap: 0.5rem;
  }

  .hero-bento__tile--primary {
    grid-column: 1 / 5;
    grid-row: 1 / 2;
    border-radius: 12px;
  }

  .hero-bento__tile--collab {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    border-radius: 10px;
  }

  .hero-bento__tile--automation {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
    border-radius: 10px;
  }

  .hero-bento__tile--prototype,
  .hero-bento__tile--extra {
    display: none;
  }

  .hero-bento__tile--concept {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    border-radius: 10px;
  }

  .hero-bento__tile--orbit {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
    border-radius: 10px;
  }

  .list li::before {
    margin-right: 0.45rem;
  }
}

/* =====================================================
   INDUSTRIES SECTION - Grid of industry cards
   ===================================================== */
#industries {
  background: linear-gradient(
      135deg,
      rgba(12, 90, 219, 0.04) 0%,
      rgba(22, 160, 242, 0.06) 100%
    ),
    url("https://images.pexels.com/photos/3846517/pexels-photo-3846517.jpeg?auto=compress&cs=tinysrgb&w=1920")
      center/cover no-repeat fixed;
  background-blend-mode: normal, overlay;
}

#industries::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 247, 251, 0.92);
  z-index: 0;
}

#industries > .container {
  position: relative;
  z-index: 1;
}

.grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 920px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.industry-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease-out-expo),
    box-shadow 300ms var(--ease-out-expo);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.industry-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-dark);
}

.industry-card p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

/* =====================================================
   VALUE CARDS - Why Choose Section
   ===================================================== */
.value-card {
  background: var(--color-light);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 300ms var(--ease-out-expo),
    box-shadow 300ms var(--ease-out-expo);
  border: 1px solid rgba(12, 90, 219, 0.08);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(12, 90, 219, 0.15);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(12, 90, 219, 0.15);
}

.value-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--color-dark);
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

/* =====================================================
   STATS SECTION - Dark background with numbers
   ===================================================== */
.section--dark {
  background: linear-gradient(
      135deg,
      rgba(12, 31, 51, 0.93) 0%,
      rgba(22, 42, 66, 0.95) 100%
    ),
    url("https://images.pexels.com/photos/2760243/pexels-photo-2760243.jpeg?auto=compress&cs=tinysrgb&w=1920")
      center/cover no-repeat;
  color: var(--color-white);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 920px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =====================================================
   PROCESS TIMELINE - Horizontal steps
   ===================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-secondary) 50%,
    var(--color-primary) 100%
  );
  opacity: 0.3;
}

@media (max-width: 920px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  box-shadow: 0 8px 30px rgba(12, 90, 219, 0.3);
}

.process-number svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-white);
}

.process-step__number {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--color-dark);
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

/* =====================================================
   FINAL CTA SECTION - Background image with overlay
   ===================================================== */
.section--cta {
  background: linear-gradient(
      135deg,
      rgba(12, 90, 219, 0.92) 0%,
      rgba(10, 63, 158, 0.95) 100%
    ),
    url("https://images.pexels.com/photos/3846508/pexels-photo-3846508.jpeg?auto=compress&cs=tinysrgb&w=1920")
      center/cover no-repeat;
  color: var(--color-white);
  text-align: center;
  padding: clamp(5rem, 12vw, 8rem) 0;
  position: relative;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--color-white);
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 2rem;
  max-width: 600px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button--large {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.section--cta .button {
  background: var(--color-white);
  color: var(--color-primary);
}

.section--cta .button:hover {
  background: var(--color-light);
  transform: translateY(-2px);
}

.section--cta .button--ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.section--cta .button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* =====================================================
   HERO FEATURES LIST - Bullet points like Fictiv
   ===================================================== */
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--color-dark);
}

.hero-features svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.hero-features strong {
  color: var(--color-primary);
}

/* =====================================================
   TRUSTED BY SECTION - Industry logos bar
   ===================================================== */
.section--trusted {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--color-light);
  border-bottom: 1px solid rgba(12, 90, 219, 0.08);
}

.trusted-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin: 0 0 1.5rem;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trusted-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted);
  opacity: 0.7;
  transition: opacity 300ms ease, color 300ms ease;
}

.trusted-logo:hover {
  opacity: 1;
  color: var(--color-primary);
}

.trusted-logo svg {
  width: 32px;
  height: 32px;
}

.trusted-logo span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .trusted-logos {
    gap: 1.5rem;
  }

  .trusted-logo svg {
    width: 28px;
    height: 28px;
  }
}

/* =====================================================
   PLATFORM SECTION - Two-column layout
   ===================================================== */
.platform-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 920px) {
  .platform-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.platform-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.platform-text > p {
  font-size: 1.0625rem;
  color: var(--color-muted);
  margin: 0 0 2rem;
  line-height: 1.7;
}

.platform-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.platform-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.platform-features svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.platform-features strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.platform-features span {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* Platform Visual Card */
.platform-visual {
  display: flex;
  justify-content: center;
}

.platform-card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(12, 42, 66, 0.15);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.platform-card__header {
  background: var(--color-dark);
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.5rem;
}

.platform-card__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.platform-card__dot:first-child {
  background: #ff5f57;
}

.platform-card__dot:nth-child(2) {
  background: #ffbd2e;
}

.platform-card__dot:nth-child(3) {
  background: #28ca42;
}

.platform-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.platform-card__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--color-light);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--color-dark);
}

.platform-card__item svg {
  width: 20px;
  height: 20px;
  color: #28ca42;
  flex-shrink: 0;
}

.platform-card__item--active {
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.1),
    rgba(22, 160, 242, 0.1)
  );
  border: 1px solid rgba(12, 90, 219, 0.2);
}

.platform-card__item--active svg {
  color: var(--color-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.platform-card__item--pending {
  opacity: 0.5;
}

.platform-card__item--pending svg {
  color: var(--color-muted);
}

/* =====================================================
   FEATURED QUOTE SECTION
   ===================================================== */
.section--quote {
  background: linear-gradient(
      135deg,
      rgba(12, 31, 51, 0.94) 0%,
      rgba(22, 42, 66, 0.96) 100%
    ),
    url("https://images.pexels.com/photos/3862132/pexels-photo-3862132.jpeg?auto=compress&cs=tinysrgb&w=1920")
      center/cover no-repeat;
  padding: clamp(5rem, 10vw, 7rem) 0;
  position: relative;
}

.featured-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.featured-quote blockquote {
  margin: 0 0 2rem;
}

.featured-quote blockquote p {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white);
  font-style: italic;
  margin: 0;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quote-author__avatar {
  width: 56px;
  height: 56px;
  background: rgba(12, 90, 219, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-author__avatar svg {
  width: 28px;
  height: 28px;
  color: var(--color-secondary);
}

.quote-author__info {
  text-align: left;
}

.quote-author__info strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
}

.quote-author__info span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* =====================================================
   CAPABILITY CARDS - Fictiv-style with lead times
   ===================================================== */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .capability-grid {
    grid-template-columns: 1fr;
  }
}

.capability-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease-out-expo),
  box-shadow 300ms var(--ease-out-expo);
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.capability-card img {
  width: 100%;
  aspect-ratio: 16 / 16;
  object-fit: cover;
}

.capability-card__content {
  padding: 1.25rem;
}

.capability-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-dark);
}

.capability-card p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.capability-card__lead {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.capability-card__lead strong {
  color: var(--color-primary);
}

.capability-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 300ms var(--ease-out-expo);
}

.capability-card__link:hover {
  gap: 0.75rem;
}

.capability-card__link svg {
  width: 16px;
  height: 16px;
}

.capability-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Print styles for better accessibility */
@media print {
  .site-header,
  .nav-toggle,
  .nav-backdrop,
  .hero-bento,
  .cta,
  .button,
  .skip-link {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }

  a {
    text-decoration: underline;
    color: #000;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }

  .container {
    width: 100%;
    max-width: none;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
}

/* =====================================================
   GALLERY / PORTFOLIO SHOWCASE
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out-expo);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 16, 31, 0.9) 0%,
    rgba(10, 16, 31, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 300ms var(--ease-out-expo);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.gallery-overlay h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .gallery-item--large {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item--large {
    grid-column: span 1;
  }

  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(10, 16, 31, 0.85) 0%,
      transparent 60%
    );
  }
}

/* =====================================================
   SHOWCASE / FEATURE CARDS SECTION
   ===================================================== */
.section--showcase {
  padding: 4rem 0;
  background: var(--color-light);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.showcase-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease-out-expo),
    box-shadow 300ms var(--ease-out-expo);
}

.showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.showcase-item--hero {
  grid-row: span 2;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.showcase-item--hero img {
  min-height: 100%;
}

.showcase-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    rgba(10, 16, 31, 0.95) 0%,
    rgba(10, 16, 31, 0.7) 60%,
    transparent 100%
  );
  color: var(--color-white);
}

.showcase-item--hero .showcase-content {
  padding: 2rem;
}

.showcase-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.showcase-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-white);
}

.showcase-content h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.375rem;
  color: var(--color-white);
}

.showcase-content p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

.showcase-item:not(.showcase-item--hero) .showcase-content p {
  font-size: 0.8125rem;
}

.showcase-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 200ms ease;
}

.showcase-link:hover {
  color: var(--color-white);
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-item--hero {
    grid-row: span 1;
  }

  .showcase-item img {
    min-height: 200px;
    max-height: 300px;
  }
}

@media (max-width: 600px) {
  .section--showcase {
    padding: 3rem 0;
  }

  .showcase-content h3 {
    font-size: 1.25rem;
  }
}

/* =====================================================
   MATERIALS SECTION - Grid of material types
   ===================================================== */
.section--materials {
  background: linear-gradient(
      to bottom,
      rgba(245, 247, 251, 0.97) 0%,
      rgba(245, 247, 251, 0.95) 100%
    ),
    url("https://images.pexels.com/photos/2881232/pexels-photo-2881232.jpeg?auto=compress&cs=tinysrgb&w=1920")
      center/cover no-repeat fixed;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.material-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease-out-expo),
    box-shadow 300ms var(--ease-out-expo);
}

.material-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.material-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  /* display: block; */
  transition: transform 400ms var(--ease-out-expo);
}

.material-card:hover img {
  transform: scale(1.05);
}

.material-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(
    to top,
    rgba(10, 16, 31, 0.9) 0%,
    rgba(10, 16, 31, 0.5) 70%,
    transparent 100%
  );
}

.material-card__content h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 0.25rem;
}

.material-card__content p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.materials-cta {
  text-align: center;
  margin-top: 2rem;
}

.materials-cta p {
  font-size: 1rem;
  color: var(--color-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .materials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .material-card__content {
    padding: 0.75rem;
  }

  .material-card__content h4 {
    font-size: 0.8125rem;
  }
}

/* =====================================================
   ENHANCED CTA SECTION FEATURES
   ===================================================== */
.cta-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin: 0 0 0.75rem;
}

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cta-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.cta-features svg {
  width: 18px;
  height: 18px;
  color: var(--color-secondary);
}

@media (max-width: 600px) {
  .cta-features {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* =====================================================
   WHY EPTIME SECTION - Two-column with images
   ===================================================== */
.section--why-eptime {
  background: var(--color-light);
  overflow: hidden;
}

.why-eptime-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-eptime-content .eyebrow {
  color: var(--color-primary);
  font-weight: 700;
}

.why-eptime-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
  color: var(--color-dark);
  line-height: 1.2;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--color-muted);
  margin: 0 0 2rem;
  line-height: 1.7;
}

.value-props {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.value-prop {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-prop__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-prop__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.value-prop__text h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--color-dark);
}

.value-prop__text p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

.why-eptime-images {
  position: relative;
  height: 500px;
}

.why-image {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image--main {
  width: 70%;
  height: 75%;
  top: 0;
  left: 0;
  z-index: 1;
}

.why-image--secondary {
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.why-image--accent {
  width: 35%;
  height: 35%;
  top: 50%;
  left: 60%;
  transform: translateY(-50%);
  z-index: 3;
  border: 4px solid var(--color-white);
}

@media (max-width: 1024px) {
  .why-eptime-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-eptime-images {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .why-eptime-images {
    height: 320px;
  }

  .why-image--accent {
    display: none;
  }

  .value-prop__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
  }

  .value-prop__icon svg {
    width: 20px;
    height: 20px;
  }
}

/* =====================================================
   IMPACT METRICS SECTION
   ===================================================== */
.section--impact {
  background: linear-gradient(
      135deg,
      rgba(12, 31, 51, 0.92) 0%,
      rgba(10, 22, 40, 0.95) 100%
    ),
    url("https://images.pexels.com/photos/3846508/pexels-photo-3846508.jpeg?auto=compress&cs=tinysrgb&w=1920")
      center/cover no-repeat fixed;
  color: var(--color-white);
  overflow: hidden;
}

.impact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.impact-header .eyebrow {
  color: var(--color-secondary);
}

.impact-header h2 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0.5rem 0 1rem;
}

.impact-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.impact-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 400ms var(--ease-out-expo),
    box-shadow 400ms var(--ease-out-expo);
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.impact-card__visual {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.impact-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out-expo);
}

.impact-card:hover .impact-card__visual img {
  transform: scale(1.1);
}

.impact-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(10, 22, 40, 0.3) 100%
  );
}

.impact-card__content {
  padding: 1.5rem;
  text-align: center;
}

.impact-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.impact-card__content p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

.impact-bottom {
  text-align: center;
}

.impact-certifications {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}

.cert-badge svg {
  width: 18px;
  height: 18px;
  color: var(--color-secondary);
}

@media (max-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-certifications {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* =====================================================
   CHALLENGES SECTION (WHY EPTIME)
   ===================================================== */
.section--challenges {
  background: linear-gradient(
      to bottom,
      rgba(245, 247, 251, 0.96) 0%,
      rgba(245, 247, 251, 0.92) 100%
    ),
    url("https://images.pexels.com/photos/3825581/pexels-photo-3825581.jpeg?auto=compress&cs=tinysrgb&w=1920")
      center/cover no-repeat fixed;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.challenge-card {
  position: relative;
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 400ms var(--ease-out-expo),
    box-shadow 400ms var(--ease-out-expo);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.challenge-card__icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.challenge-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.challenge-card__content {
  padding: 5rem 1.5rem 1.5rem;
}

.challenge-card__content h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-dark);
  margin: 0 0 0.75rem;
}

.challenge-card__content > p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.challenge-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.challenge-benefits li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.challenge-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

.challenge-card__image {
  height: 200px;
  overflow: hidden;
}

.challenge-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out-expo);
}

.challenge-card:hover .challenge-card__image img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .challenges-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   MANUFACTURING NETWORK SECTION
   ===================================================== */
.section--network {
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(245, 247, 251, 0.95) 100%
    ),
    url("https://images.pexels.com/photos/3785931/pexels-photo-3785931.jpeg?auto=compress&cs=tinysrgb&w=1920")
      center/cover no-repeat;
  overflow: hidden;
}

.network-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.network-content .eyebrow {
  color: var(--color-primary);
  font-weight: 700;
}

.network-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-dark);
  margin: 0.5rem 0 1.25rem;
  line-height: 1.2;
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(12, 42, 66, 0.1);
  border-bottom: 1px solid rgba(12, 42, 66, 0.1);
}

.network-stat {
  text-align: center;
}

.network-stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.network-stat__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.network-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.network-visual {
  position: relative;
}

.network-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.network-map img {
  width: 100%;
  height: auto;
  display: block;
}

.network-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.network-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  padding: 0.75rem 1rem;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-dark);
  animation: float 3s ease-in-out infinite;
}

.network-badge svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.network-badge--1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}
.network-badge--2 {
  top: 50%;
  right: 5%;
  animation-delay: 0.5s;
}
.network-badge--3 {
  bottom: 15%;
  left: 15%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .network-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .network-visual {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .network-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .network-badge {
    display: none;
  }
}

/* =====================================================
   CAPABILITY TABS
   ===================================================== */
.capability-tabs {
  margin-bottom: 3rem;
}

.capability-tabs__nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0.5rem;
  background: var(--color-light);
  border-radius: 12px;
}

.capability-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  transition: all 300ms var(--ease-out-quart);
}

.capability-tab svg {
  width: 20px;
  height: 20px;
}

.capability-tab:hover {
  color: var(--color-dark);
  background: var(--color-white);
}

.capability-tab.active {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(12, 90, 219, 0.3);
}

.capability-tabs__content {
  position: relative;
}

.capability-panel {
  display: none;
  animation: fadeIn 400ms var(--ease-out-quart);
}

.capability-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.capability-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.capability-panel__info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  margin: 0 0 1rem;
}

.capability-panel__info > p {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.capability-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.capability-features-list li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--color-dark);
  border-bottom: 1px solid rgba(12, 42, 66, 0.08);
}

.capability-features-list li:last-child {
  border-bottom: none;
}

.capability-features-list strong {
  color: var(--color-primary);
}

.capability-panel__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.capability-panel__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .capability-panel__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .capability-panel__image {
    order: -1;
  }

  .capability-panel__image img {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .capability-tabs__nav {
    flex-direction: column;
  }

  .capability-tab {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   SUCCESS STORIES SECTION
   ===================================================== */
.section--success {
  background: linear-gradient(
      to bottom,
      rgba(245, 247, 251, 0.95) 0%,
      rgba(245, 247, 251, 0.92) 100%
    ),
    url("https://images.pexels.com/photos/3862627/pexels-photo-3862627.jpeg?auto=compress&cs=tinysrgb&w=1920")
      center/cover no-repeat fixed;
}

.success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.success-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 400ms var(--ease-out-expo),
    box-shadow 400ms var(--ease-out-expo);
}

.success-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.success-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.success-card__image {
  height: 250px;
  overflow: hidden;
}

.success-card--featured .success-card__image {
  height: 100%;
}

.success-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out-expo);
}

.success-card:hover .success-card__image img {
  transform: scale(1.05);
}

.success-card__content {
  padding: 2rem;
}

.success-card__industry {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(12, 90, 219, 0.1);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.success-card__content h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-dark);
  margin: 0 0 0.75rem;
}

.success-card__content > p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

.success-card__results {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(12, 42, 66, 0.1);
}

.result-item {
  text-align: center;
}

.result-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.result-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.success-card__stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.success-card__stats span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(12, 90, 219, 0.08);
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
}

@media (max-width: 900px) {
  .success-grid {
    grid-template-columns: 1fr;
  }

  .success-card--featured {
    grid-template-columns: 1fr;
  }

  .success-card--featured .success-card__image {
    height: 250px;
  }
}

/* =====================================================
   COMPARISON TABLE SECTION
   ===================================================== */
.section--comparison {
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(245, 247, 251, 0.95) 100%
    ),
    url("https://images.pexels.com/photos/3912976/pexels-photo-3912976.jpeg?auto=compress&cs=tinysrgb&w=1920")
      center/cover no-repeat fixed;
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
}

.comparison-header {
  background: var(--color-dark);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9375rem;
}

.comparison-header > div {
  padding: 1.25rem 1.5rem;
}

.comparison-header .comparison-eptime {
  background: var(--color-primary);
}

.comparison-row {
  border-bottom: 1px solid rgba(12, 42, 66, 0.08);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row > div {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
}

.comparison-feature {
  font-weight: 600;
  color: var(--color-dark);
  gap: 0.75rem;
}

.comparison-feature svg {
  width: 20px;
  height: 20px;
  color: var(--color-muted);
  flex-shrink: 0;
}

.comparison-traditional {
  color: var(--color-muted);
  font-size: 0.9375rem;
}

.comparison-eptime {
  background: rgba(12, 90, 219, 0.05);
  font-size: 0.9375rem;
  color: var(--color-dark);
}

.comparison-eptime.highlight {
  font-weight: 600;
  color: var(--color-primary);
}

.comparison-cta {
  text-align: center;
}

/* ============================================
   PREMIUM VALUE SECTION - Impressive Cards
   ============================================ */
.section--premium {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a0f1a 0%, #0c1f33 50%, #0a1628 100%);
  overflow: hidden;
  isolation: isolate;
}

.premium-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.premium-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.premium-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #0c5adb 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.premium-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #16a0f2 0%, transparent 70%);
  top: 50%;
  right: -150px;
  animation-delay: -7s;
}

.premium-orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  bottom: -100px;
  left: 30%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(20px, 30px) scale(1.05);
  }
}

.premium-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 4rem;
}

.premium-header h2,
.premium-header p {
  color: #fff;
}

.premium-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 1rem auto 0;
}

.premium-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.3) 0%,
    rgba(139, 92, 246, 0.3) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.gradient-text {
  background: linear-gradient(135deg, #16a0f2 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium Cards Grid */
.premium-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.premium-card {
  position: relative;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo),
    box-shadow 0.5s var(--ease-out-expo);
}

.premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px -20px rgba(12, 90, 219, 0.4);
}

.premium-card__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
}

.premium-card--quality {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.premium-card--quality:hover {
  transform: scale(1.05) translateY(-12px);
}

.premium-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 0 12px 12px;
}

.premium-card__inner {
  padding: 2.5rem;
}

.premium-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}

.premium-card__icon svg {
  width: 100%;
  height: 100%;
  color: #fff;
}

.premium-card__metric {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.metric-value {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-unit {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.premium-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.premium-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.premium-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-card__features li:last-child {
  border-bottom: none;
}

.premium-card__features .check {
  color: #10b981;
  font-weight: 700;
}

.premium-card__cta {
  padding-top: 0.5rem;
}

.premium-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #16a0f2;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.premium-link:hover {
  color: #fff;
  gap: 0.75rem;
}

.premium-link--primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #0c5adb 0%, #16a0f2 100%);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
}

.premium-link--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(12, 90, 219, 0.6);
}

/* Premium Showcase Cards */
.premium-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo);
}

.showcase-card:hover {
  transform: translateY(-6px);
}

.showcase-card--dark {
  background: linear-gradient(
    135deg,
    rgba(12, 31, 51, 0.9) 0%,
    rgba(10, 22, 40, 0.9) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-card--gradient {
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.2) 0%,
    rgba(139, 92, 246, 0.2) 100%
  );
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.showcase-card--light {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.showcase-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
}

.showcase-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: #16a0f2;
}

.showcase-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.showcase-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

.showcase-card__visual {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 100px;
}

.showcase-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Premium Bottom CTA */
.premium-bottom-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.premium-tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.button--glow {
  position: relative;
  background: linear-gradient(135deg, #0c5adb 0%, #16a0f2 100%);
  border: none;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  animation: glowPulse 3s ease-in-out infinite;
}

.button--glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #0c5adb, #16a0f2, #8b5cf6, #0c5adb);
  border-radius: inherit;
  z-index: -1;
  filter: blur(15px);
  opacity: 0.5;
  animation: glowRotate 4s linear infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(12, 90, 219, 0.4);
  }
  50% {
    box-shadow: 0 0 50px rgba(12, 90, 219, 0.7);
  }
}

@keyframes glowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.premium-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
}

.premium-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Premium Section Responsive */
@media (max-width: 1024px) {
  .premium-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .premium-card--quality {
    transform: scale(1);
    order: -1;
  }

  .premium-card--quality:hover {
    transform: translateY(-12px);
  }

  .premium-showcase {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .section--premium {
    padding: 4rem 0;
  }

  .premium-header h2 {
    font-size: 1.75rem;
  }

  .premium-header h2 br {
    display: none;
  }

  .metric-value {
    font-size: 3rem;
  }

  .premium-card__inner {
    padding: 1.75rem;
  }

  .showcase-card {
    grid-template-columns: 1fr;
  }

  .showcase-card__visual {
    height: 120px;
    order: -1;
  }

  .premium-trust {
    flex-direction: column;
    gap: 0.75rem;
  }

  .premium-orb--1 {
    width: 300px;
    height: 300px;
  }

  .premium-orb--2 {
    width: 250px;
    height: 250px;
  }

  .premium-orb--3 {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-header > div,
  .comparison-row > div {
    padding: 0.875rem 1.25rem;
  }

  .comparison-feature {
    background: var(--color-light);
    font-size: 0.9375rem;
  }

  .comparison-traditional::before {
    content: "Traditional: ";
    font-weight: 600;
  }

  .comparison-eptime::before {
    content: "eptime: ";
    font-weight: 600;
  }
}

/* ============================================
   MECHANICAL EXCELLENCE SECTION
   ============================================ */
.section--mechanical {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f0f4f8 100%);
  overflow: hidden;
}

.section--mechanical::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary),
    #8b5cf6
  );
}

.mech-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.1) 0%,
    rgba(22, 160, 242, 0.1) 100%
  );
  border: 1px solid rgba(12, 90, 219, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.mech-badge svg {
  width: 18px;
  height: 18px;
  animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Tolerance Grid */
.mech-tolerance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.tolerance-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s var(--ease-out-expo);
}

.tolerance-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 90, 219, 0.15);
  border-color: rgba(12, 90, 219, 0.2);
}

.tolerance-card--hero {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-rows: auto 1fr;
  background: linear-gradient(135deg, #0c1f33 0%, #0c5adb 100%);
  color: #fff;
  overflow: hidden;
}

.tolerance-card--hero:hover {
  box-shadow: 0 30px 60px rgba(12, 90, 219, 0.3);
}

.tolerance-card__visual {
  position: relative;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tolerance-indicator {
  text-align: center;
  z-index: 2;
}

.tolerance-value {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tolerance-unit {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.tolerance-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tolerance-ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulseRing 3s ease-out infinite;
}

.tolerance-ring:nth-child(1) {
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.tolerance-ring:nth-child(2) {
  width: 160px;
  height: 160px;
  animation-delay: 0.5s;
}

.tolerance-ring:nth-child(3) {
  width: 220px;
  height: 220px;
  animation-delay: 1s;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.tolerance-card--hero .tolerance-card__content {
  padding: 0 2rem 2rem;
}

.tolerance-card--hero h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.tolerance-card--hero p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.tolerance-specs {
  display: flex;
  gap: 1rem;
}

.tolerance-specs .spec {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
}

.spec-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.spec-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.tolerance-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.tolerance-card__icon svg {
  width: 100%;
  height: 100%;
}

.tolerance-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 0.75rem;
}

.tolerance-card p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

.finish-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.finish-badge {
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.1) 0%,
    rgba(22, 160, 242, 0.1) 100%
  );
  color: var(--color-primary);
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.capability-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
}

.cycle-display {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.cycle-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.cycle-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-muted);
}

/* Process Showcase */
.mech-process-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.process-hero-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.process-hero-card__image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.process-hero-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.process-hero-card:hover .process-hero-card__image img {
  transform: scale(1.05);
}

.process-hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 31, 51, 0.8) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.process-tag {
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.process-hero-card__content {
  padding: 2rem;
  flex: 1;
}

.process-hero-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 1rem;
}

.process-hero-card > .process-hero-card__content > p {
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.process-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cap-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-dark);
}

.cap-icon {
  font-size: 1.125rem;
}

.process-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.process-link:hover {
  gap: 0.5rem;
}

.process-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-mini-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s var(--ease-out-expo);
}

.process-mini-card:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(12, 90, 219, 0.15);
}

.process-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 130px;
}

.process-mini-card__content {
  padding: 1rem 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-mini-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 0.5rem;
}

.process-mini-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.process-mini-card li {
  font-size: 0.8125rem;
  color: var(--color-muted);
  padding: 0.125rem 0;
}

.thickness-range {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Material Strength Showcase */
.mech-materials-showcase {
  margin-bottom: 4rem;
}

.mech-subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 2rem;
}

.material-strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.strength-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s var(--ease-out-expo);
}

.strength-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(12, 90, 219, 0.12);
}

.strength-card__header {
  margin-bottom: 1rem;
}


.material-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease-out-expo),
    box-shadow 300ms var(--ease-out-expo);
  aspect-ratio: 1 / 1;
  height: auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.strength-bar {
  height: 8px;
  background: rgba(12, 90, 219, 0.1);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.strength-fill {
  height: 100%;
  width: var(--strength);
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 100px;
  transition: width 1s var(--ease-out-expo);
}

.strength-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.strength-stats span {
  font-size: 0.75rem;
  color: var(--color-muted);
  background: var(--color-light);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* Mechanical CTA */
.mech-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0c1f33 0%, #0c5adb 100%);
  border-radius: 24px;
  padding: 3rem;
  color: #fff;
}

.mech-cta__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.mech-cta__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.mech-cta .button {
  background: #fff;
  color: var(--color-primary);
  flex-shrink: 0;
}

.mech-cta .button:hover {
  background: var(--color-light);
  transform: translateY(-2px);
}

/* Mechanical Section Responsive */
@media (max-width: 1024px) {
  .mech-tolerance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tolerance-card--hero {
    grid-column: span 2;
    grid-row: span 1;
  }

  .mech-process-showcase {
    grid-template-columns: 1fr;
  }

  .material-strength-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section--mechanical {
    padding: 4rem 0;
  }

  .mech-tolerance-grid {
    grid-template-columns: 1fr;
  }

  .tolerance-card--hero {
    grid-column: span 1;
  }

  .tolerance-value {
    font-size: 3rem;
  }

  .tolerance-specs {
    flex-direction: column;
  }

  .process-mini-card {
    grid-template-columns: 1fr;
  }

  .process-mini-card img {
    height: 150px;
  }

  .process-mini-card__content {
    padding: 1rem;
  }

  .material-strength-grid {
    grid-template-columns: 1fr;
  }

  .mech-cta {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }
}

/* ============================================
   ENGINEERING MASTERY SECTION - Ultra Premium
   ============================================ */
.section--mastery {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #0a0e17 0%, #0c1f33 50%, #0a1628 100%);
  overflow: hidden;
  isolation: isolate;
}

.mastery-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(12, 90, 219, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(12, 90, 219, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.floating-shapes {
  position: absolute;
  inset: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: floatShape 20s ease-in-out infinite;
}

.shape--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0c5adb 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  top: 40%;
  right: -50px;
  animation-delay: -5s;
}

.shape--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #16a0f2 0%, transparent 70%);
  bottom: 10%;
  left: 20%;
  animation-delay: -10s;
}

.shape--4 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  top: 20%;
  left: 50%;
  animation-delay: -15s;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(40px, -40px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.9);
  }
  75% {
    transform: translate(30px, 40px) scale(1.05);
  }
}

/* Mastery Header */
.mastery-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.mastery-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.mastery-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.title-line {
  display: block;
  color: #fff;
}

.title-line--highlight {
  background: linear-gradient(135deg, #16a0f2 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.mastery-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Mastery Cards */
.mastery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.mastery-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out-expo),
    box-shadow 0.6s var(--ease-out-expo);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.mastery-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow: 0 40px 80px -20px rgba(12, 90, 219, 0.4);
}

.mastery-card__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.8s ease;
  z-index: 10;
  pointer-events: none;
}

.mastery-card:hover .mastery-card__shine {
  left: 100%;
}

.mastery-card__border {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    transparent,
    rgba(255, 255, 255, 0.05)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.mastery-card--featured {
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.1) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  transform: scale(1.02);
}

.mastery-card--featured:hover {
  transform: scale(1.02) translateY(-12px) rotateX(2deg);
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 100px;
  z-index: 5;
}

.featured-badge svg {
  width: 14px;
  height: 14px;
}

.mastery-card__content {
  padding: 2.5rem;
}

.mastery-card__icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.icon-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(
    circle,
    rgba(12, 90, 219, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}

.mastery-icon {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.mastery-card__number {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.mastery-card__number .counter {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mastery-card__number .unit {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.mastery-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}

.mastery-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.mastery-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.tag--green {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.tag--gold {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
  color: #f59e0b;
}

.mastery-card__image {
  height: 200px;
  overflow: hidden;
}

.mastery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.mastery-card:hover .mastery-card__image img {
  transform: scale(1.1);
}

/* Capability Hexagon Showcase */
.capability-showcase {
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.showcase-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.showcase-header p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.capability-hexagons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem;
}

.hex-item {
  position: relative;
  width: 120px;
  height: 120px;
  transition: transform 0.4s var(--ease-out-expo);
}

.hex-item:hover {
  transform: translateY(-8px) scale(1.05);
}

.hex-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem;
  transition: all 0.4s ease;
}

.hex-item:hover .hex-inner {
  background: rgba(12, 90, 219, 0.1);
  border-color: rgba(12, 90, 219, 0.3);
}

.hex-inner svg {
  width: 36px;
  height: 36px;
  color: #16a0f2;
  margin-bottom: 0.5rem;
}

.hex-inner span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.hex-item--center {
  width: 140px;
  height: 140px;
}

.hex-item--center .hex-inner {
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.2) 0%,
    rgba(139, 92, 246, 0.2) 100%
  );
  border-color: rgba(12, 90, 219, 0.4);
}

.hex-item--center .hex-inner svg {
  width: 44px;
  height: 44px;
  color: #fff;
}

.hex-item--center .hex-inner span {
  font-size: 0.875rem;
  color: #fff;
}

/* Stats Ribbon */
.stats-ribbon {
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.stats-ribbon__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2rem 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.ribbon-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ribbon-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.2) 0%,
    rgba(22, 160, 242, 0.2) 100%
  );
  border-radius: 12px;
}

.ribbon-icon svg {
  width: 24px;
  height: 24px;
  color: #16a0f2;
}

.ribbon-content {
  display: flex;
  flex-direction: column;
}

.ribbon-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ribbon-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

.ribbon-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Process Flow */
.process-flow {
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.process-flow__title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3rem;
}

.flow-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 140px;
}

.flow-step__icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}

.flow-step:hover .flow-step__icon {
  background: rgba(12, 90, 219, 0.2);
  border-color: rgba(12, 90, 219, 0.5);
  transform: scale(1.1);
}

.flow-step__icon svg {
  width: 28px;
  height: 28px;
  color: #16a0f2;
}

.icon-ring {
  position: absolute;
  inset: -4px;
  border: 2px solid transparent;
  border-radius: 20px;
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
  0%,
  100% {
    border-color: transparent;
    transform: scale(1);
  }
  50% {
    border-color: rgba(12, 90, 219, 0.3);
    transform: scale(1.1);
  }
}

.icon-ring--success {
  animation: none;
  border-color: rgba(16, 185, 129, 0.5);
}

.flow-step--final .flow-step__icon {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.flow-step--final .flow-step__icon svg {
  color: #10b981;
}

.flow-step__number {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.5rem;
}

.flow-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.375rem;
}

.flow-step p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.4;
}

.flow-connector {
  width: 60px;
  margin-top: 32px;
  opacity: 0.3;
}

.flow-connector svg {
  width: 100%;
  color: #16a0f2;
}

/* Mastery CTA */
.mastery-cta {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  z-index: 1;
}

.mastery-cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0c5adb 0%, #8b5cf6 50%, #ec4899 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.cta-particles {
  position: absolute;
  inset: 0;
}

.cta-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleFloat 10s ease-in-out infinite;
}

.cta-particles span:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}
.cta-particles span:nth-child(2) {
  left: 20%;
  top: 60%;
  animation-delay: -2s;
}
.cta-particles span:nth-child(3) {
  left: 50%;
  top: 30%;
  animation-delay: -4s;
}
.cta-particles span:nth-child(4) {
  left: 70%;
  top: 70%;
  animation-delay: -6s;
}
.cta-particles span:nth-child(5) {
  left: 85%;
  top: 40%;
  animation-delay: -8s;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) scale(1.5);
    opacity: 0.8;
  }
}

.mastery-cta__content {
  position: relative;
  padding: 4rem;
  text-align: center;
  z-index: 1;
}

.mastery-cta .cta-eyebrow {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.mastery-cta h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
}

.mastery-cta > .mastery-cta__content > p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.mastery-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.button--xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.0625rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.button--xl svg {
  width: 20px;
  height: 20px;
}

.button--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.trust-item svg {
  width: 18px;
  height: 18px;
}

/* Mastery Section Responsive */
@media (max-width: 1024px) {
  .mastery-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .mastery-card--featured {
    transform: none;
    order: -1;
  }

  .mastery-card--featured:hover {
    transform: translateY(-12px);
  }

  .stats-ribbon__inner {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .ribbon-divider {
    display: none;
  }

  .flow-steps {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .flow-connector {
    display: none;
  }

  .capability-hexagons {
    gap: 1rem;
  }

  .hex-item {
    width: 100px;
    height: 100px;
  }

  .hex-item--center {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .section--mastery {
    padding: 5rem 0;
  }

  .mastery-header {
    margin-bottom: 3rem;
  }

  .mastery-card__content {
    padding: 1.75rem;
  }

  .mastery-card__number .counter {
    font-size: 2.5rem;
  }

  .mastery-cta__content {
    padding: 2.5rem 1.5rem;
  }

  .flow-step {
    max-width: 100px;
  }

  .flow-step__icon {
    width: 52px;
    height: 52px;
  }

  .cta-trust {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============================================
   ULTIMATE SHOWCASE SECTION - Premium Visual
   ============================================ */
.section--ultimate {
  position: relative;
  padding: 8rem 0;
  background: #030712;
  overflow: hidden;
  isolation: isolate;
}

.ultimate-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ultimate-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 20% 20%,
      rgba(59, 130, 246, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
}

.ultimate-mesh {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.aurora-layer {
  position: absolute;
  inset: 0;
}

.aurora {
  position: absolute;
  width: 100%;
  height: 300px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.1),
    rgba(139, 92, 246, 0.1),
    transparent
  );
  filter: blur(100px);
  animation: auroraWave 15s ease-in-out infinite;
}

.aurora--1 {
  top: 10%;
  animation-delay: 0s;
}
.aurora--2 {
  top: 40%;
  animation-delay: -5s;
  opacity: 0.7;
}
.aurora--3 {
  top: 70%;
  animation-delay: -10s;
  opacity: 0.5;
}

@keyframes auroraWave {
  0%,
  100% {
    transform: translateX(-30%) skewX(-5deg);
  }
  50% {
    transform: translateX(30%) skewX(5deg);
  }
}

/* Ultimate Header */
.ultimate-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.animated-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
  0%,
  100% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
}

.animated-badge svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

.animated-badge span:last-child {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.ultimate-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.title-word {
  display: inline-block;
  color: #fff;
  animation: fadeInUp 0.8s var(--ease-out-expo) calc(var(--delay) + 0.3s) both;
}

.title-word--accent {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: fadeInUp 0.8s var(--ease-out-expo) calc(var(--delay) + 0.3s) both,
    gradientShift 6s ease infinite 1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ultimate-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

/* 3D Showcase Cards */
.showcase-3d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.showcase-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out-expo),
    box-shadow 0.6s var(--ease-out-expo);
}

.showcase-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px -20px rgba(59, 130, 246, 0.3);
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.showcase-card:hover .card-glow {
  opacity: 1;
}

.card-glow--gold {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(245, 158, 11, 0.2) 0%,
    transparent 50%
  );
}

.showcase-card--highlight {
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 50%
  );
  border-color: rgba(245, 158, 11, 0.2);
}

.showcase-card--highlight:hover {
  box-shadow: 0 30px 60px -20px rgba(245, 158, 11, 0.3);
}

.highlight-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 100px;
  z-index: 5;
}

.highlight-badge svg {
  width: 14px;
  height: 14px;
}

.card-content {
  padding: 2rem;
}

.card-icon-box {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 1.5rem;
}

.card-icon-box svg {
  width: 100%;
  height: 100%;
}

.icon-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.2) 0%,
    transparent 70%
  );
  animation: iconPulse 3s ease-in-out infinite;
}

.icon-pulse--gold {
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.2) 0%,
    transparent 70%
  );
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

.card-stats {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.showcase-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}

.showcase-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.feature-item svg {
  width: 16px;
  height: 16px;
  color: #10b981;
}

.feature-item--gold svg {
  color: #f59e0b;
}

.card-image-wrap {
  position: relative;
  height: 180px;
  margin: 0 -2rem -2rem;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.showcase-card:hover .card-image-wrap img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.8) 0%, transparent 50%);
}

.image-overlay--gold {
  background: linear-gradient(
      to top,
      rgba(245, 158, 11, 0.2) 0%,
      transparent 30%
    ),
    linear-gradient(to top, rgba(3, 7, 18, 0.8) 0%, transparent 50%);
}

/* Industry Strip */
.industry-strip {
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.strip-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.industry-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.industry-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.4s ease;
  min-width: 100px;
}

.industry-badge:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.industry-badge svg {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.industry-badge:hover svg {
  color: #3b82f6;
}

.industry-badge span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* Material Showcase */
.material-showcase {
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.material-header {
  text-align: center;
  margin-bottom: 3rem;
}

.material-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.material-header p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.material-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.material-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-6px);
}

.material-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.material-orb {
  position: relative;
  width: 80px;
  height: 80px;
}

.orb-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  animation: orbRotate 8s linear infinite;
}

.orb-core {
  position: absolute;
  inset: 15px;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
}

.material-orb--plastic .orb-ring {
  border-color: rgba(16, 185, 129, 0.3);
}

.material-orb--plastic .orb-core {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
}

.material-orb--exotic .orb-ring {
  border-color: rgba(139, 92, 246, 0.3);
}

.material-orb--exotic .orb-core {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
}

@keyframes orbRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.material-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.material-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.material-list span {
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Testimonial Spotlight */
.testimonial-spotlight {
  position: relative;
  margin-bottom: 5rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
}

.spotlight-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.spotlight-beam {
  position: absolute;
  top: 0;
  left: 50%;
  width: 300px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 80%
  );
  transform: translateX(-50%);
  filter: blur(40px);
}

.testimonial-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quote-icon {
  margin-bottom: 1.5rem;
}

.quote-icon svg {
  width: 48px;
  height: 48px;
  color: rgba(59, 130, 246, 0.3);
}

.testimonial-content blockquote {
  font-size: 1.375rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  margin: 0 0 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.author-info span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.author-rating {
  display: flex;
  gap: 0.25rem;
}

.author-rating svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}

/* Ultimate CTA */
.ultimate-cta {
  position: relative;
  z-index: 1;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
}

.cta-visual {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-ring--outer {
  inset: 0;
  animation: ringRotate 20s linear infinite;
}

.visual-ring--middle {
  inset: 20px;
  animation: ringRotate 15s linear infinite reverse;
}

.visual-ring--inner {
  inset: 40px;
  animation: ringRotate 10s linear infinite;
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.visual-core {
  position: absolute;
  inset: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 50%;
}

.visual-core svg {
  width: 50%;
  height: 50%;
  color: #fff;
}

.cta-text {
  flex: 1;
}

.cta-text h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
}

.cta-text > p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.button--ultimate {
  position: relative;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  transition: opacity 0.3s ease;
}

.button--ultimate:hover .btn-bg {
  opacity: 0.9;
}

.btn-text {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}

.btn-text svg {
  width: 20px;
  height: 20px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.cta-link:hover {
  color: #fff;
}

.cta-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cta-link:hover svg {
  transform: translateX(4px);
}

/* Ultimate Section Responsive */
@media (max-width: 1024px) {
  .showcase-3d {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .showcase-card--highlight {
    order: -1;
  }

  .material-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-visual {
    width: 160px;
    height: 160px;
  }

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section--ultimate {
    padding: 5rem 0;
  }

  .ultimate-header {
    margin-bottom: 3rem;
  }

  .card-content {
    padding: 1.5rem;
  }

  .card-image-wrap {
    margin: 0 -1.5rem -1.5rem;
    height: 160px;
  }

  .industry-badges {
    gap: 0.75rem;
  }

  .industry-badge {
    min-width: 80px;
    padding: 1rem;
  }

  .testimonial-spotlight {
    padding: 2rem 1.5rem;
  }

  .testimonial-content blockquote {
    font-size: 1.125rem;
  }

  .cta-inner {
    padding: 2rem;
  }

  .cta-text h3 {
    font-size: 1.5rem;
  }
}

/* ============================================
   SECTION 1: PRECISION GUARANTEE
   ============================================ */
.section--precision-guarantee {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(135deg, #0a0e17 0%, #111827 100%);
  overflow: hidden;
}

.precision-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.precision-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(59, 130, 246, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.precision-glow {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 70%
  );
  filter: blur(60px);
  transform: translateY(-50%);
}

.precision-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.precision-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 1.5rem;
}

.precision-badge svg {
  width: 18px;
  height: 18px;
}

.precision-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.precision-title span {
  display: block;
  color: #fff;
}

.precision-highlight {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.precision-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 0 2.5rem;
}

.guarantee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.guarantee-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.guarantee-icon svg {
  width: 100%;
  height: 100%;
  color: #60a5fa;
}

.guarantee-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.guarantee-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0;
}

.precision-stats {
  display: flex;
  gap: 3rem;
}

.p-stat {
  display: flex;
  flex-direction: column;
}

.p-stat__value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.p-stat__unit {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 0.25rem;
}

.p-stat__label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

.precision-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.precision-badge-large {
  position: relative;
  width: 280px;
  height: 280px;
}

.badge-rings {
  position: absolute;
  inset: 0;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.2);
}

.ring--outer {
  inset: 0;
  animation: ringRotate 20s linear infinite;
}

.ring--middle {
  inset: 30px;
  border-color: rgba(139, 92, 246, 0.3);
  animation: ringRotate 15s linear infinite reverse;
}

.ring--inner {
  inset: 60px;
  border-color: rgba(16, 185, 129, 0.3);
  animation: ringRotate 10s linear infinite;
}

.badge-content {
  position: absolute;
  inset: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2) 0%,
    rgba(139, 92, 246, 0.2) 100%
  );
  border-radius: 50%;
  text-align: center;
}

.badge-content svg {
  width: 48px;
  height: 48px;
  color: #10b981;
  margin-bottom: 0.5rem;
}

.badge-content span {
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

/* ============================================
   SECTION 2: TECHNOLOGY STACK
   ============================================ */
.section--tech-stack {
  padding: 7rem 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.tech-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tech-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.tech-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
}

.tech-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.tech-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.tech-category__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tech-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
}

.tech-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: #60a5fa;
}

.tech-category h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.tech-machines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.machine-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.machine-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.machine-card--highlight {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.05) 0%,
    transparent 50%
  );
}

.machine-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.machine-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.machine-card:hover .machine-image img {
  transform: scale(1.1);
}

.machine-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.375rem 0.75rem;
  background: rgba(59, 130, 246, 0.9);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.machine-badge--gold {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.machine-info {
  padding: 1.5rem;
}

.machine-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.machine-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.machine-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.machine-specs li span:first-child {
  color: rgba(255, 255, 255, 0.4);
}

.tech-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-cta p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ============================================
   SECTION 3: TRANSFORMATION (BEFORE/AFTER)
   ============================================ */
.section--transformation {
  position: relative;
  padding: 7rem 0;
  background: #030712;
  overflow: hidden;
}

.transform-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.transform-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 60%
  );
}

.transform-header {
  text-align: center;
  margin-bottom: 4rem;
}

.transform-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
}

.transform-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.transform-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.transform-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.transform-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-6px);
}

.transform-stages {
  display: flex;
  align-items: center;
  padding: 2rem;
  gap: 1rem;
}

.stage {
  flex: 1;
}

.stage-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.stage--after .stage-label {
  color: #10b981;
}

.stage-image {
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
}

.stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.stage-arrow svg {
  width: 60px;
  color: rgba(59, 130, 246, 0.5);
}

.stage-arrow span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.transform-details {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.transform-details h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

/* ============================================
   SECTION 4: PRICING TIERS
   ============================================ */
.section--pricing {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pricing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.pricing-orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.15);
  top: -100px;
  left: -100px;
}

.pricing-orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.15);
  bottom: -50px;
  right: -50px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-eyebrow {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
}

.pricing-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.tier-card {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: all 0.4s ease;
}

.tier-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
}

.tier-card--featured {
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(59, 130, 246, 0.05) 100%
  );
  border-color: rgba(59, 130, 246, 0.3);
  transform: scale(1.05);
}

.tier-card--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.tier-card--premium {
  background: linear-gradient(
    180deg,
    rgba(245, 158, 11, 0.1) 0%,
    transparent 50%
  );
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.tier-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tier-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.tier-speed {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.tier-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tier-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.tier-features svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
}

.tier-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tier-cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tier-cta--featured {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  border: none;
}

.tier-cta--featured:hover {
  opacity: 0.9;
}

.pricing-footer {
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-footer p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ============================================
   SECTION 5: TOLERANCE SPECS
   ============================================ */
.section--specs {
  padding: 7rem 0;
  background: #0f172a;
}

.specs-header {
  text-align: center;
  margin-bottom: 4rem;
}

.specs-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
}

.specs-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.spec-card {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.spec-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-6px);
}

.spec-visual {
  flex-shrink: 0;
}

.spec-dial {
  position: relative;
  width: 120px;
  height: 120px;
}

.spec-dial svg {
  width: 100%;
  height: 100%;
}

.dial-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dial-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.dial-unit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.spec-content {
  flex: 1;
}

.spec-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}

.spec-details {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.spec-row span:first-child {
  color: rgba(255, 255, 255, 0.5);
}

.spec-row span:last-child {
  font-weight: 600;
  color: #fff;
}

/* ============================================
   SECTION 6: TRUST SIGNALS
   ============================================ */
.section--trust {
  padding: 7rem 0;
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
}

.trust-header {
  text-align: center;
  margin-bottom: 4rem;
}

.trust-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
}

.trust-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-6px);
}

.trust-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
  color: #60a5fa;
}

.trust-card--cert .trust-icon svg {
  color: #f59e0b;
}

.trust-card--security .trust-icon svg {
  color: #10b981;
}

.trust-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}

.trust-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0 0 1rem;
}

.trust-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #60a5fa;
}

.trust-badge--green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

/* ============================================
   SECTION 7: FAQ ACCORDION
   ============================================ */
.section--faq {
  position: relative;
  padding: 7rem 0;
  background: #030712;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.faq-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(59, 130, 246, 0.03) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 100px;
}

.faq-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 1rem;
}

.faq-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
}

.faq-header > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 2rem;
}

.faq-contact {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.faq-contact p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 1rem;
}

.button--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.faq-item.active {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-question span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
  color: #60a5fa;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   SECTION 8: VIDEO SHOWCASE
   ============================================ */
.section--video {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
}

.video-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 60%
  );
}

.video-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.video-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 1rem;
}

.video-text h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
}

.video-text > p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.video-stats {
  display: flex;
  gap: 3rem;
}

.v-stat {
  display: flex;
  flex-direction: column;
}

.v-stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.v-stat__label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

.video-player {
  position: relative;
}

.video-thumbnail {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}

.play-button {
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button svg {
  width: 100%;
  height: 100%;
}

.video-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.375rem 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
}

.video-features {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.v-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.v-feature svg {
  width: 18px;
  height: 18px;
  color: #60a5fa;
}

/* ============================================
   SECTION 9: PARTNERS
   ============================================ */
.section--partners {
  padding: 6rem 0;
  background: #0f172a;
}

.partners-header {
  text-align: center;
  margin-bottom: 3rem;
}

.partners-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
}

.partners-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.partners-showcase {
  margin-bottom: 3rem;
  overflow: hidden;
}

.partners-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.partner-icon {
  width: 48px;
  height: 48px;
}

.partner-icon svg {
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.4);
}

.partner-logo:hover .partner-icon svg {
  color: #60a5fa;
}

.partner-logo span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.partners-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
}

.p-stat-item {
  text-align: center;
}

.p-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.p-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

.p-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   SECTION 10: URGENCY CTA
   ============================================ */
.section--urgency {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(135deg, #0c0a1d 0%, #1e1b4b 50%, #0f172a 100%);
  overflow: hidden;
}

.urgency-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.urgency-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 246, 0.2) 0%,
    transparent 60%
  );
}

.urgency-particles {
  position: absolute;
  inset: 0;
}

.urgency-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: floatParticle 15s ease-in-out infinite;
}

.urgency-particles span:nth-child(1) {
  left: 5%;
  top: 20%;
  animation-delay: 0s;
}
.urgency-particles span:nth-child(2) {
  left: 15%;
  top: 60%;
  animation-delay: -2s;
}
.urgency-particles span:nth-child(3) {
  left: 25%;
  top: 40%;
  animation-delay: -4s;
}
.urgency-particles span:nth-child(4) {
  left: 35%;
  top: 80%;
  animation-delay: -6s;
}
.urgency-particles span:nth-child(5) {
  left: 45%;
  top: 30%;
  animation-delay: -8s;
}
.urgency-particles span:nth-child(6) {
  left: 55%;
  top: 70%;
  animation-delay: -1s;
}
.urgency-particles span:nth-child(7) {
  left: 65%;
  top: 25%;
  animation-delay: -3s;
}
.urgency-particles span:nth-child(8) {
  left: 75%;
  top: 55%;
  animation-delay: -5s;
}
.urgency-particles span:nth-child(9) {
  left: 85%;
  top: 35%;
  animation-delay: -7s;
}
.urgency-particles span:nth-child(10) {
  left: 95%;
  top: 65%;
  animation-delay: -9s;
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50px) scale(1.5);
    opacity: 0.8;
  }
}

.urgency-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.2) 0%,
    rgba(239, 68, 68, 0.2) 100%
  );
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 2rem;
}

.urgency-badge svg {
  width: 18px;
  height: 18px;
}

.urgency-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 1rem;
}

.urgency-highlight {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.urgency-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 0 2.5rem;
}

.urgency-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.u-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.u-benefit svg {
  width: 20px;
  height: 20px;
  color: #10b981;
}

.urgency-cta-box {
  margin-bottom: 2rem;
}

.urgency-cta-box .button {
  margin-bottom: 1rem;
}

.urgency-note {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.urgency-note strong {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.urgency-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.urgency-trust span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
  .precision-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .precision-visual {
    order: -1;
  }

  .precision-badge-large {
    width: 220px;
    height: 220px;
  }

  .guarantee-cards {
    grid-template-columns: 1fr;
  }

  .transform-showcase {
    grid-template-columns: 1fr;
  }

  .pricing-tiers {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .tier-card--featured {
    transform: none;
    order: -1;
  }

  .tier-card--featured:hover {
    transform: translateY(-8px);
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-header {
    position: static;
    text-align: center;
  }

  .video-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-text {
    text-align: center;
  }

  .video-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section--precision-guarantee,
  .section--tech-stack,
  .section--transformation,
  .section--pricing,
  .section--specs,
  .section--trust,
  .section--faq,
  .section--video,
  .section--partners,
  .section--urgency {
    padding: 5rem 0;
  }

  .precision-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .p-stat__value {
    font-size: 2rem;
  }

  .tech-machines {
    grid-template-columns: 1fr;
  }

  .transform-stages {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stage-arrow {
    transform: rotate(90deg);
  }

  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .video-features {
    flex-direction: column;
    align-items: center;
  }

  .partners-row {
    gap: 1rem;
  }

  .partner-logo {
    padding: 1rem;
  }

  .partners-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .p-stat-divider {
    width: 80px;
    height: 1px;
  }

  .urgency-benefits {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ==========================================
   SECTION 11: Hero Image Split - CNC Mastery
   ========================================== */
.section--hero-split {
  padding: 0;
  background: var(--surface);
  overflow: hidden;
}

.hero-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.hero-split-image {
  position: relative;
  overflow: hidden;
}

.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-split-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.3),
    rgba(0, 0, 0, 0.4)
  );
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem;
}

.split-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.badge-icon {
  font-size: 1.25rem;
}

.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatY 4s ease-in-out infinite;
}

.floating-stat--1 {
  bottom: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-stat--2 {
  top: 30%;
  right: 10%;
  animation-delay: 2s;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  background: var(--surface);
}

.eyebrow-fancy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.eyebrow-fancy svg {
  color: #f59e0b;
}

.hero-split-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-split-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-split-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-split-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hero-split-features svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #10b981;
}

.hero-split-features strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.hero-split-features span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-split-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-split-cta .button svg {
  width: 18px;
  height: 18px;
}

/* ==========================================
   SECTION 12: Full-Width Image Banner
   ========================================== */
.section--image-banner {
  position: relative;
  padding: 8rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8),
    rgba(12, 90, 219, 0.6)
  );
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  color: #fff;
}

.banner-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.banner-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.banner-content > p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.banner-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.b-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.b-stat:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.b-stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), #6366f1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b-stat-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.b-stat-content {
  display: flex;
  flex-direction: column;
}

.b-stat-num {
  font-size: 1.75rem;
  font-weight: 700;
}

.b-stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.button--light {
  background: #fff;
  color: var(--primary);
}

.button--light:hover {
  background: #f0f0f0;
  color: var(--primary);
}

/* ==========================================
   SECTION 13: Alternating Image/Text Cards
   ========================================== */
.section--alternating {
  padding: 8rem 0;
  background: var(--surface);
}

.alternating-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.alt-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.alternating-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.alt-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.alt-card:last-child {
  margin-bottom: 0;
}

.alt-card--reverse {
  direction: rtl;
}

.alt-card--reverse > * {
  direction: ltr;
}

.alt-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.alt-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.alt-image-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  color: #fff;
  padding: 1rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(12, 90, 219, 0.4);
}

.alt-image-badge span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.alt-image-badge small {
  font-size: 0.75rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.alt-content {
  position: relative;
}

.alt-number {
  display: inline-block;
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: -2rem;
  left: -1rem;
  line-height: 1;
}

.alt-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  position: relative;
}

.alt-content > p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.alt-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}

.alt-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-secondary);
}

.alt-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

/* ==========================================
   SECTION 14: Image Gallery Mosaic
   ========================================== */
.section--mosaic {
  padding: 8rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.mosaic-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.mosaic-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mosaic-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.mosaic-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mosaic-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mosaic-item:hover img {
  transform: scale(1.08);
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mosaic-item:hover .mosaic-overlay {
  opacity: 1;
}

.mosaic-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.mosaic-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.mosaic-overlay p {
  font-size: 0.875rem;
  opacity: 0.85;
}

.mosaic-item--large {
  grid-column: span 2;
}

.mosaic-item--tall {
  grid-row: span 2;
}

.mosaic-cta {
  text-align: center;
}

.mosaic-cta p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ==========================================
   SECTION 15: Why Switch Comparison
   ========================================== */
.section--switch {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.switch-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.switch-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c5adb 100%);
}

.switch-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.switch-content {
  color: #fff;
}

.switch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.switch-eyebrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.switch-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.text-strike {
  text-decoration: line-through;
  opacity: 0.5;
}

.switch-desc {
  font-size: 1.125rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.switch-comparison {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

.compare-column {
  flex: 1;
  padding: 1.5rem;
  border-radius: 16px;
}

.compare-column--old {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.compare-column--new {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.compare-column h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.compare-column--old h4 {
  color: #ef4444;
}

.compare-column--new h4 {
  color: #10b981;
}

.compare-column h4 svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.compare-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.compare-column ul li {
  padding: 0.5rem 0;
  opacity: 0.9;
}

.compare-column--old ul li {
  text-decoration: line-through;
  opacity: 0.6;
}

.compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-arrow svg {
  width: 32px;
  height: 32px;
  fill: #10b981;
  animation: pulse-arrow 2s infinite;
}

@keyframes pulse-arrow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(5px);
    opacity: 0.7;
  }
}

.switch-testimonial {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.switch-testimonial img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.switch-quote p {
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.switch-quote cite {
  font-size: 0.875rem;
  opacity: 0.7;
}

.switch-visual {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.switch-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.switch-card:hover {
  transform: scale(1.02);
}

.switch-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.switch-card-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.switch-card--before .switch-card-label {
  background: #ef4444;
  color: #fff;
}

.switch-card--after .switch-card-label {
  background: #10b981;
  color: #fff;
}

.switch-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
}

.caption-bad {
  color: #fca5a5;
}

.caption-good {
  color: #6ee7b7;
}

/* Responsive styles for new sections */
@media (max-width: 1024px) {
  .hero-split-container {
    grid-template-columns: 1fr;
  }

  .hero-split-image {
    height: 50vh;
  }

  .hero-split-content {
    padding: 3rem 2rem;
  }

  .banner-stats {
    gap: 1.5rem;
  }

  .alt-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .alt-card--reverse {
    direction: ltr;
  }

  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .mosaic-item--large,
  .mosaic-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .switch-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .switch-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .section--hero-split,
  .section--image-banner,
  .section--alternating,
  .section--mosaic,
  .section--switch {
    padding: 5rem 0;
  }

  .section--image-banner {
    min-height: 70vh;
  }

  .floating-stat {
    display: none;
  }

  .hero-split-cta {
    flex-direction: column;
  }

  .banner-stats {
    flex-direction: column;
    align-items: center;
  }

  .b-stat {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .alt-image img {
    height: 280px;
  }

  .mosaic-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-item {
    height: 250px;
  }

  .mosaic-overlay {
    opacity: 1;
  }

  .switch-comparison {
    flex-direction: column;
  }

  .compare-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .switch-testimonial {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .switch-card img {
    height: 180px;
  }
}

/* ==========================================
   PILLARS SECTION - New Design with Images
   ========================================== */
.section--pillars-new {
  padding: 8rem 0;
  background: radial-gradient(ellipse at 60% 0%, #18243a 0%, #10192b 60%, #0a1220 100%);
  color: #f3f6fa;
  position: relative;
  overflow: hidden;
}

.section--pillars-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: none;
  pointer-events: none;
}

.pillars-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
}

.section--pillars-new .pillars-header h2,
.section--pillars-new .pillars-header p,
.section--pillars-new .pillars-label {
  color: #f3f6fa;
}

.section--pillars-new .pillars-header .text-gradient {
  background: linear-gradient(90deg, #7b6ff0 0%, #a66cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.section--pillars-new .pillars-stats .pillar-stat-num {
  color: #7bcbff;
}

.section--pillars-new .pillars-stats .pillar-stat-text {
  color: #b3c6e0;
}
}

.pillars-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: #fff;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pillars-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.pillars-header > p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.pillars-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pillar-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(18, 28, 46, 0.92);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10, 20, 40, 0.10);
  border: 1px solid rgba(60, 80, 120, 0.18);
  color: #e6eaf3;
}

.pillar-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: #7bcbff;
  line-height: 1;
}

.pillar-stat-text {
  font-size: 0.875rem;
  color: #b3c6e0;
  margin-top: 0.25rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: rgba(18, 28, 46, 0.92);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 32px 0 rgba(10, 20, 40, 0.18);
  border: 1px solid rgba(60, 80, 120, 0.18);
  color: #e6eaf3;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
  position: relative;
}

.pillar-card:hover {
  box-shadow: 0 8px 40px 0 rgba(30, 60, 120, 0.28);
  border: 1.5px solid #7b6ff0;
  transform: translateY(-4px) scale(1.02);
}

.pillar-card--featured {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(123, 108, 255, 0.18);
  border: 2px solid #a66cff;
}

.pillar-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pillar-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2336 0%, #232e4a 100%);
}

.pillar-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
  min-height: 100%;
}

.pillar-card:hover .pillar-card__image img {
  transform: scale(1.08);
}

.pillar-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,28,46,0.0) 40%, rgba(18,28,46,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.pillar-tag {
  background: linear-gradient(90deg, #7bcbff 0%, #a66cff 100%);
  color: #10192b;
  font-weight: 700;
  border-radius: 0.7em;
  padding: 0.2em 0.9em;
  font-size: 0.95em;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px 0 rgba(123, 203, 255, 0.12);
}

.pillar-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fff;
  padding: 0.75rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.pillar-badge span {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.pillar-badge small {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.pillar-card__content {
  padding: 2rem;
}

.section--pillars-new .pillar-card__content h3 {
  color: #a66cff;
}

.section--pillars-new .pillar-card__content p,
.section--pillars-new .pillar-card__content ul,
.section--pillars-new .pillar-card__content li {
  color: #c7d0e6;
}

.section--pillars-new .pillar-icon svg {
  color: #7bcbff;
  filter: drop-shadow(0 0 6px #7bcbff33);
}

.section--pillars-new .pillar-features li::before {
  content: '\2022';
  color: #7bcbff;
  margin-right: 0.5em;
}

.pillar-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
}

.pillar-card__content h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.pillar-card__content > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.pillar-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pillar-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pillar-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
}

/* ==========================================
   SOLUTIONS SECTION - New Design with Images
   ========================================== */
.section--solutions-new {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.solutions-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.solutions-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #0f172a 0%,
    #1e293b 50%,
    var(--primary) 100%
  );
}

.solutions-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
}

.solutions-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: #fff;
}

.solutions-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fbbf24;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.solutions-eyebrow svg {
  fill: #fbbf24;
}

.solutions-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.text-highlight {
  position: relative;
  color: #fbbf24;
}

.solutions-header > p {
  font-size: 1.125rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.solutions-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sol-badge {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
}

.sol-badge strong {
  color: #fff;
  font-weight: 700;
}

.solutions-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.solution-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.solution-card--highlight {
  border: 3px solid #fbbf24;
  position: relative;
}

.solution-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.solution-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
  min-height: 100%;
}

.solution-card:hover .solution-card__image img {
  transform: scale(1.08);
}

.solution-card__number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(12, 90, 219, 0.4);
}

.solution-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: #fbbf24;
  color: #0f172a;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.solution-card__content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.solution-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(12, 90, 219, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.solution-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
}

.solution-card__content h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.solution-card__content > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.solution-features li {
  padding: 0.4rem 0.8rem;
  background: rgba(12, 90, 219, 0.08);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.3s ease;
}

.solution-link:hover {
  gap: 0.75rem;
  color: var(--primary-dark);
}

.solution-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.solutions-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.solutions-cta p {
  margin-bottom: 1rem;
  opacity: 0.85;
}

/* Responsive for new pillars and solutions */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pillar-card--featured {
    transform: none;
    order: -1;
  }

  .pillar-card--featured:hover {
    transform: translateY(-10px);
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto 3rem;
  }
}

@media (max-width: 768px) {
  .section--pillars-new {
    padding: 5rem 0;
  }
  .pillars-stats {
    flex-direction: column;
    align-items: center;
  }
  .pillar-stat {
    width: 100%;
    max-width: 250px;
  }
  .pillar-card {
    border-radius: 0.8rem;
  }
  .pillar-card__image {
    height: 180px;
  }
}
