/* XPRT Enforcement - Frontend */

:root {
  --primary-color: #ff0033;
  --secondary-color: #0f0f0f;
  --accent-color: #1e1e1e;
  --text-color: #ffffff;
  --text-muted: #b0b0b0;
  --bg-dark: #050505;
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Roboto', sans-serif;
  --border-radius: 8px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  background-color: var(--secondary-color);
  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: 30px 30px;
  background-attachment: fixed;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 78px;
}

body.is-home { }

.page-main {
  flex: 1;
  min-height: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-normal);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: max(15px, env(safe-area-inset-left, 0px));
  padding-right: max(15px, env(safe-area-inset-right, 0px));
}

.section {
  padding: 100px 5%;
}

.section--tight {
  padding: 52px 5%;
}

.section--surface {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Solid band so “Trusted By” never visually bleeds over the hero if stacking glitches */
.home-clients.section--surface {
  background: #0a0a0c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-clients {
  margin-top: 40px;
}

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

.section-title {
  display: block;
  text-align: center;
  font-size: clamp(1.65rem, 5vw, 2.8rem);
  margin: 0 auto clamp(1.75rem, 4vw, 3rem);
  position: relative;
  background: linear-gradient(to right, #ffffff, #a0a0a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--heading-font);
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff4d79);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(255,0,51,0.5);
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

.spacing-top-lg {
  margin-top: 2rem;
}

.content-wide {
  max-width: 900px;
  margin: 0 auto;
}

.page-header {
  padding: 72px 5% 44px;
  margin-top: 0;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.98), rgba(10, 10, 12, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.page-header-title {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0;
  background: linear-gradient(to right, #ffffff, #a0a0a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header-title--about {
  display: block;
  margin-top: 10px;
  font-size: clamp(2rem, 4.6vw, 3rem);
  letter-spacing: 0.01em;
}

.page-header-kicker {
  margin-top: 14px;
  margin-bottom: 2px;
  text-align: center;
}

.page-header-desc {
  margin: 14px auto 0;
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.page-header .breadcrumb {
  justify-content: center;
}

.lead-paragraph {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-color);
  font-family: inherit;
  font-size: 1rem;
}

.form-input:focus {
  outline: none;
  border-color: rgba(255, 0, 51, 0.45);
  box-shadow: 0 0 0 2px rgba(255, 0, 51, 0.15);
}

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

.form-notice {
  border-radius: 12px;
  padding: 14px 16px;
  margin: 14px 0 0;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
}

.form-notice-success {
  border-color: rgba(121, 232, 164, 0.35);
  background: rgba(121, 232, 164, 0.09);
}

.form-notice-error {
  border-color: rgba(255, 154, 169, 0.45);
  background: rgba(255, 154, 169, 0.08);
}

.form-notice-title {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1rem;
  color: #fff;
}

.form-notice-text {
  margin: 6px 0 0;
  color: var(--text-muted);
}

.form-notice-list {
  margin-top: 8px;
  color: #ffb3bf;
}

.legal-content p {
  margin-bottom: 12px;
  color: var(--text-muted);
}

.legal-content h2 + p {
  margin-top: 8px;
}

.legal-content .about-subtitle {
  margin-top: 28px;
}

.contact-form .form-row {
  margin-bottom: 18px;
}

.contact-form .form-row:last-of-type {
  margin-bottom: 22px;
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form {
  margin-top: 20px;
}

.contact-success {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 0, 51, 0.25);
  margin-bottom: 40px;
}

.contact-success .about-subtitle {
  margin-bottom: 12px;
}

.contact-success p {
  color: var(--text-muted);
  margin: 0;
}

.contact-aside-note {
  color: var(--text-muted);
  margin-top: 24px;
  font-size: 0.95rem;
}

.contact-aside-note a {
  color: var(--accent, #ff0033);
}

.company-details-page .company-legal-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary, #fff);
  margin-bottom: 8px;
}

.company-details-list {
  margin: 0 0 8px;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.company-details-list li {
  margin-bottom: 12px;
}

.company-details-list strong {
  color: var(--text-primary, #fff);
  font-weight: 600;
}

.text-muted-block {
  color: var(--text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.text-muted-block a {
  color: var(--accent, #ff0033);
}

.contact-whatsapp-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-aside-list {
  margin-top: 20px;
}

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

.clients-page-cta .lead-muted {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.clients-page-grid {
  margin-top: 40px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  background: #0c0c0c;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(10, 10, 12, 0.94);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.logo {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.logo-image {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: contain;
  object-position: center;
  padding: 4px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, filter 0.35s ease;
}

.logo:hover .logo-image,
.logo:focus-visible .logo-image {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 24px rgba(255, 0, 51, 0.22);
  border-color: rgba(255, 0, 51, 0.45);
  filter: saturate(1.08);
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  transition: transform 0.25s ease;
}

.logo:hover .logo-text,
.logo:focus-visible .logo-text {
  transform: translateX(1px);
}

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

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  color: #eaeaea;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-normal);
}

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

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

.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.hamburger:hover,
.hamburger:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary-color);
}

.nav-overlay {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  text-align: center;
  overflow: hidden;
}

.hero--3d {
  background: #060606;
}

/* Home hero: keep it below fixed header and slightly lower */
body.is-home .hero {
  min-height: calc(100dvh - 78px);
  padding-top: 22px;
}

body.is-home .hero-inner {
  padding-top: 10px;
}

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

.hero-canvas-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 8, 0.94) 0%,
    rgba(10, 10, 12, 0.78) 42%,
    rgba(12, 8, 10, 0.42) 88%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.hero-title {
  font-family: var(--heading-font);
  font-size: 4.2rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffffff, #d0d0d0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d0d0d0;
  margin-bottom: 2.4rem;
}

.hero-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.4rem;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.hero-point i {
  color: var(--primary-color);
}

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

.hero-mini-stats {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-mini-stats > div {
  padding: 10px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-mini-stats strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  color: #fff;
}

.hero-mini-stats span {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  font-family: var(--heading-font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #cc0029);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,0,51,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,0,51,0.6);
}

.btn-primary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,0,51,0.4);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Home page */
.home-page {
  display: block;
  position: relative;
}

.home-page > section:not(.hero) {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero-trust {
  margin-top: 2rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.home-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  max-width: 1100px;
  margin: 0 auto;
}

.home-value-item {
  text-align: center;
  padding: 8px 10px;
}

.home-value-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-size: 1.7rem;
}

.home-value-title {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-color);
}

.home-value-text {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (hover: hover) and (pointer: fine) {
  .home-solutions .solutions-grid {
    perspective: 1200px;
  }

  .home-solutions .image-card {
    transform-style: preserve-3d;
    transition:
      transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
      border-color var(--transition-normal),
      box-shadow 0.4s ease;
  }

  .home-solutions a.image-card:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  }
}

.home-value-strip {
  perspective: 1100px;
}

.home-value-item {
  border-radius: var(--border-radius);
  padding: 20px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transform-style: preserve-3d;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.home-value-item:hover {
  transform: translateY(-8px) rotateX(5deg) rotateY(-3deg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 0, 51, 0.22);
}

.section-kicker {
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.5rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header .section-title {
  margin-bottom: 0.85rem;
}

.section-header .section-kicker {
  margin-bottom: 0.35rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

.section-title--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.25rem;
}

.section-title--left::after {
  left: 0;
  transform: none;
}

/* Home — About block */
#about-intro.home-about {
  padding-top: clamp(72px, 9vw, 104px);
  padding-bottom: clamp(72px, 9vw, 104px);
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.home-about-visual {
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-about-card {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  background: linear-gradient(155deg, rgba(32, 32, 36, 0.95) 0%, rgba(14, 14, 16, 0.98) 100%);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 42px) clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--primary-color);
  text-align: center;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}

.home-about-visual:hover .home-about-card {
  transform: translateY(-8px) rotateY(-6deg) rotateX(4deg);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.home-about-card-icon-wrap {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 25%, rgba(255, 0, 51, 0.22), rgba(255, 0, 51, 0.06));
  border: 1px solid rgba(255, 0, 51, 0.25);
  box-shadow: 0 8px 28px rgba(255, 0, 51, 0.12);
}

.home-about-card-icon-wrap i {
  font-size: 2.35rem;
  color: var(--primary-color);
}

.home-about-card-label {
  font-size: 1.02rem;
  font-weight: 600;
  color: #d8d8d8;
  margin: 0 0 0.35rem;
  line-height: 1.45;
}

.home-about-card-sub {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.4;
}

.home-about-heading .section-kicker {
  margin-bottom: 0.4rem;
}

.home-about-heading .section-title {
  margin-bottom: 1.35rem;
}

.home-about-copy {
  max-width: 38rem;
}

.home-about-lead {
  margin-bottom: 1.35rem;
  text-align: left;
  color: #c9c9c9;
  line-height: 1.7;
}

.home-about-points {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius);
}

.home-about-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.65rem;
  color: #c4c4c4;
  font-size: 1rem;
  line-height: 1.55;
}

.home-about-points li:last-child {
  margin-bottom: 0;
}

.home-about-points i {
  color: var(--primary-color);
  margin-top: 5px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.home-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-about-btn i {
  font-size: 0.85em;
  transition: transform var(--transition-fast);
}

.home-about-btn:hover i,
.home-about-btn:focus-visible i {
  transform: translateX(4px);
}

.home-about-link-secondary {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-normal);
}

.home-about-link-secondary:hover,
.home-about-link-secondary:focus-visible {
  color: var(--primary-color);
}

.home-about-link-secondary:focus-visible {
  outline: 2px solid rgba(255, 0, 51, 0.45);
  outline-offset: 4px;
  border-radius: 4px;
}

.home-about-link-secondary i {
  font-size: 0.7rem;
  opacity: 0.85;
}

.home-solutions-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 2.5rem;
  padding-top: 0.5rem;
}

.home-solutions-intro {
  max-width: 860px;
  margin: 0 auto 14px;
}

.home-solutions-desc {
  margin: 0 auto;
  max-width: 720px;
}

.home-clients-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* Solutions band (home) */
.solutions-band {
  background-color: var(--bg-dark);
  overflow: hidden;
  contain: layout;
}

.solution-card-reveal {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.solution-card-reveal.is-visible {
  opacity: 1;
}

/* Solutions & cards */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: rgba(20,20,20,0.7);
  border-radius: var(--border-radius);
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,0,51,0.2), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,0,51,0.4);
}

.card:hover::after {
  opacity: 1;
}

details.card > summary {
  cursor: pointer;
  position: relative;
  z-index: 1;
  list-style: none;
  padding-left: 30px;
}

details.card > summary::-webkit-details-marker {
  display: none;
}

details.card > summary::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  color: var(--text-color);
  font-size: 0.9rem;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

details.card[open] > summary::before {
  transform: translateY(-50%) rotate(90deg);
  color: var(--primary-color);
}

.image-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.image-card:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

.card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card:hover .card-img-wrapper img,
.image-card:active .card-img-wrapper img {
  transform: scale(1.08) translateY(-2px);
}

@media (min-width: 769px) {
  .image-card:hover .card-img-wrapper img {
    transform: scale(1.1) translateY(-4px);
  }
}

/* Light sweep on product image (Our Solutions) */
.card-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 45%,
    transparent 70%
  );
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.image-card:hover .card-img-wrapper::after,
.image-card:focus-visible .card-img-wrapper::after {
  opacity: 1;
  animation: solutionShine 0.85s ease forwards;
}

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

.card-content {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.card-content h3 {
  font-family: var(--heading-font);
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.3;
}

.card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex: 1 1 auto;
}

.solution-card-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff9bad;
  border: 1px solid rgba(255, 0, 51, 0.28);
  background: rgba(255, 0, 51, 0.09);
  border-radius: 999px;
  padding: 4px 10px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
}

.card-cta i {
  transition: transform var(--transition-fast);
}

.image-card:hover .card-cta i {
  transform: translateX(4px);
}

/* Stats */
.stats-section {
  padding: 80px 5%;
  background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 26px 18px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255,0,51,0.4);
}

.stat-icon {
  font-size: 2.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.counter-value {
  font-size: 2.4rem;
  font-family: var(--heading-font);
  font-weight: 700;
}

.counter-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Clients */
.clients-page-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 0, 51, 0.08), transparent 35%),
    radial-gradient(circle at 90% 90%, rgba(255, 0, 51, 0.06), transparent 40%);
}

.clients-impact-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.clients-impact-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}

.clients-impact-value {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
}

.clients-impact-label {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.clients-filter {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.clients-filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.clients-filter-btn:hover,
.clients-filter-btn:focus-visible {
  color: #fff;
  border-color: rgba(255, 0, 51, 0.44);
  background: rgba(255, 0, 51, 0.12);
}

.clients-filter-btn.is-active {
  color: #fff;
  border-color: rgba(255, 0, 51, 0.52);
  background: rgba(255, 0, 51, 0.18);
}

.clients-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.client-card.is-hidden {
  display: none;
}

.clients-reveal-card {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

body.js-enhanced .clients-reveal-card {
  opacity: 0;
  transform: translateY(16px);
}

body.js-enhanced .clients-reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.client-card {
  min-width: 0;
  text-align: left;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(22, 22, 24, 0.92), rgba(10, 10, 12, 0.95));
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.client-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 51, 0.38);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

.client-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 51, 0.12);
  border: 1px solid rgba(255, 0, 51, 0.24);
  color: var(--primary-color);
  font-size: 1.1rem;
}

.client-card-title {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.3;
}

.client-card-badge {
  margin: 0;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 0, 51, 0.25);
  background: rgba(255, 0, 51, 0.08);
  color: #ff9bad;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 600;
}

.client-card-meta {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 400;
}

.clients-delivery-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.clients-delivery-item {
  min-height: 100%;
}

.clients-delivery-item .about-subtitle {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.clients-delivery-item .text-muted-block {
  margin-bottom: 0;
}

.clients-highlight-card {
  background: linear-gradient(145deg, rgba(24, 24, 28, 0.95), rgba(12, 12, 16, 0.95));
  border: 1px solid rgba(255, 0, 51, 0.22);
  border-radius: 16px;
  padding: clamp(20px, 3.2vw, 32px);
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.clients-highlight-quote {
  margin: 8px 0 0;
  font-family: var(--heading-font);
  font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.clients-highlight-meta {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #8a001a);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #ffe6ec;
}

.cta-btn {
  background: #fff;
  color: var(--primary-color);
}

/* About page */
.layout-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.layout-two-col.layout-contact {
  align-items: flex-start;
  gap: 48px;
}

.about-visual-card {
  background: var(--accent-color);
  padding: 22px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.about-visual-inner {
  height: 320px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-inner i {
  font-size: 5rem;
  color: var(--text-muted);
  opacity: 0.6;
}

.product-media-card {
  background: var(--accent-color);
  padding: 18px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.product-image-main {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.product-image-main img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.product-card .product-image-main {
  height: 180px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .product-image-main img {
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.product-media-card .product-image-main {
  min-height: 300px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media-card .product-image-main img {
  max-height: 320px;
  object-fit: contain;
  padding: 14px;
}

.product-media-card:hover .product-image-main img {
  transform: scale(1.04);
}

.about-subtitle {
  font-size: 2rem;
  margin-bottom: 16px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.mission-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.mission-icon-light {
  color: rgba(255, 255, 255, 0.92);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.why-grid .card i {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: block;
}

.applications-heading {
  margin-top: 24px;
  margin-bottom: 10px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  align-items: center;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-icon {
  font-size: 2.6rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

/* Products listing */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.product-card {
  text-align: left;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.product-card p {
  flex: 1 1 auto;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 14px;
  line-height: 1.55;
}

.product-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.product-card-icon i {
  font-size: 1.6rem;
  color: var(--primary-color);
}

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
}

.product-card-link i {
  transition: transform var(--transition-fast);
}

.product-card:hover .product-card-link i {
  transform: translateX(4px);
}

.table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

/* Product detail lists */
.features-list,
.applications-list {
  margin-left: 1.2rem;
  margin-top: 8px;
}

.features-list li,
.applications-list li {
  position: relative;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb [aria-current="page"] {
  color: #fff;
}

.breadcrumb-sep {
  opacity: 0.45;
  user-select: none;
}

.page-section-block {
  margin-top: 56px;
}

.page-section-block:first-child {
  margin-top: 0;
}

.page-section-kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.page-section-title {
  text-align: center;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.page-section-desc {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 8px;
}

.products-grid--tight {
  margin-top: 24px;
}

.topic-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.topic-detail-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 22px 20px;
  min-height: 100%;
}

.topic-detail-card .about-subtitle {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1rem;
}

.topic-detail-card .company-details-list {
  margin-bottom: 0;
}

.topic-detail-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* Footer */
.enhanced-footer {
  position: relative;
  padding: 88px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 0, 51, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(255, 0, 51, 0.06), transparent 45%),
    linear-gradient(180deg, #0c0c0f 0%, var(--bg-dark) 38%, #030303 100%);
  overflow: hidden;
}

.enhanced-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Cpath fill='%23ffffff' fill-opacity='0.02' d='M28 0v28H0V0h28zm-1 1H1v26h26V1z'/%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 85%);
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, transparent, var(--primary-color), #ff4d79, transparent);
  box-shadow: 0 0 28px rgba(255, 0, 51, 0.45);
  z-index: 1;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-card {
  padding: 22px 20px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  max-width: 280px;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-fast);
}

.footer-brand-card:hover {
  border-color: rgba(255, 0, 51, 0.28);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 0, 51, 0.12);
  transform: translateY(-2px);
}

.footer-brand-tagline {
  margin: 14px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 16rem;
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e8e8e8;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.footer-social-btn:hover {
  color: #fff;
  border-color: rgba(255, 0, 51, 0.45);
  background: rgba(255, 0, 51, 0.12);
  transform: translateY(-2px);
}

.footer-social-btn--wa:hover {
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.12);
  color: #afffd1;
}

.footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 520px;
  width: 100%;
}

.footer-newsletter--featured {
  max-width: none;
  padding: 0;
  border: none;
  background: linear-gradient(135deg, rgba(255, 0, 51, 0.1), rgba(20, 20, 24, 0.95));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-inner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 28px 8px;
}

.footer-newsletter-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--primary-color);
  background: rgba(255, 0, 51, 0.12);
  border: 1px solid rgba(255, 0, 51, 0.25);
}

.footer-newsletter-copy h3 {
  margin: 0 0 8px;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-newsletter-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 36rem;
}

.footer-newsletter--featured .newsletter-form {
  margin: 0;
  padding: 12px 28px 28px;
  gap: 12px;
}

.newsletter-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 20px;
  padding-right: 20px;
  white-space: nowrap;
}

.newsletter-submit-text {
  font-size: 0.95rem;
}

.newsletter-submit-icon {
  font-size: 0.85rem;
  transition: transform var(--transition-fast);
}

.newsletter-submit:hover .newsletter-submit-icon {
  transform: translateX(3px);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  min-width: 0;
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 0, 51, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 0, 51, 0.12);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 32px;
  align-items: start;
  justify-items: stretch;
  width: 100%;
}

.footer-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col-title {
  font-family: var(--heading-font);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1.15rem;
  padding: 0 0 10px;
  line-height: 1.25;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.footer-col-title-text {
  display: inline-block;
  position: relative;
  padding-left: 12px;
}

.footer-col-title-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 1em;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--primary-color), #ff4d79);
  box-shadow: 0 0 12px rgba(255, 0, 51, 0.45);
}

.footer-col--brand .footer-col-title {
  margin-bottom: 0.75rem;
}

.footer-logo {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.footer-logo--icon-only {
  display: inline-flex;
  margin-bottom: 0;
  align-items: center;
}

.footer-logo .logo-image {
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

.footer-logo--icon-only .logo-image {
  width: 64px;
  height: 64px;
}

.footer-col-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  max-width: 22rem;
}

.footer-partnership-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 200, 210, 0.95);
  background: rgba(255, 0, 51, 0.1);
  border: 1px solid rgba(255, 0, 51, 0.22);
  border-radius: 999px;
}

.footer-partnership-badge i {
  font-size: 0.85rem;
  opacity: 0.95;
}

.footer-partnership-lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-family: var(--heading-font);
}

.footer-partnership-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 16rem;
  margin: 0;
}

.footer-partnership-list {
  list-style: none;
  margin-top: 14px;
  padding: 0;
  width: 100%;
  max-width: 17rem;
  display: grid;
  gap: 8px;
}

.footer-partnership-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

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

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin-left: -10px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.93rem;
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.footer-links a i {
  font-size: 0.65rem;
  opacity: 0.65;
  transition: transform var(--transition-fast), opacity var(--transition-fast), color var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.footer-links a:hover i {
  opacity: 1;
  color: var(--primary-color);
  transform: translateX(3px);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.contact-info-list li:last-child {
  margin-bottom: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.contact-info-list li:hover {
  border-color: rgba(255, 0, 51, 0.2);
  background: rgba(255, 0, 51, 0.04);
}

.contact-info-list li i {
  margin-top: 2px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 0, 51, 0.35), rgba(255, 0, 51, 0.12));
  border: 1px solid rgba(255, 0, 51, 0.35);
  box-shadow: 0 4px 12px rgba(255, 0, 51, 0.15);
}

.contact-info-list a {
  color: inherit;
}

.contact-info-list a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 28px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px 24px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-copyright {
  margin: 0;
  padding: 0;
  line-height: 1.45;
}

.footer-bottom-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.footer-bottom-links a {
  color: var(--text-muted);
  margin: 0;
  padding: 4px 0;
  transition: color var(--transition-normal);
}

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

.footer-bottom-links a:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 14px;
  margin-left: 14px;
}

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2fe677, #25d366);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 900;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.45);
}

@media (prefers-reduced-motion: no-preference) {
  .whatsapp-float {
    animation: whatsappPulse 2.8s ease-in-out infinite;
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65), 0 0 0 4px rgba(37, 211, 102, 0.15);
  }
}

/* Responsive — descending max-width: 1200 → 992 → 768 → 560 → 480; tablet 601–991; product grid 900+; image hover min 769px */
@media (max-width: 1200px) {
  .hero-title { font-size: 3.5rem; }
}

@media (max-width: 992px) {
  .section { padding: 80px 5%; }

  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layout-two-col {
    grid-template-columns: 1fr;
  }

  .topic-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-media-card .product-image-main {
    min-height: min(300px, 45vh);
  }
}

@media (max-width: 768px) {
  header {
    padding: 14px 5%;
  }

  .logo-image {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    padding: 3px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 86vw);
    height: 100vh;
    height: 100dvh;
    z-index: 1002;
    padding-top: max(20px, env(safe-area-inset-top));
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(13, 13, 16, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    transition: right var(--transition-normal);
    box-shadow: -5px 0 18px rgba(0,0,0,0.6);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: inline-flex;
    position: relative;
    z-index: 1003;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }

  .nav-overlay[hidden] {
    display: none !important;
  }

  body.nav-open {
    overflow: hidden;
  }

  .page-header {
    padding: 56px max(5%, env(safe-area-inset-left, 0px)) 36px max(5%, env(safe-area-inset-right, 0px));
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input[type='email'] {
    min-width: 0;
    width: 100%;
  }

  .newsletter-form .btn-primary,
  .newsletter-form .newsletter-submit {
    width: 100%;
    justify-content: center;
  }

  .footer-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 22px 6px;
    gap: 14px;
  }

  .footer-newsletter--featured .newsletter-form {
    padding: 10px 22px 24px;
  }

  .footer-brand-card {
    max-width: 100%;
  }

  .hero {
    padding: 100px 5% 70px;
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.92) 0%,
      rgba(10, 10, 12, 0.88) 100%
    );
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

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

  .hero-points {
    justify-content: flex-start;
    gap: 8px;
  }

  .hero-mini-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 8px;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
  }

  .section--tight {
    padding: 40px 5%;
  }

  .home-value-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .home-about-visual {
    order: 2;
  }

  .home-about-copy {
    order: 1;
  }

  .home-about-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-solutions-intro .section-title {
    margin-bottom: 1.25rem;
  }

  .card-content h3 {
    font-size: 1.18rem;
  }

  .clients-grid {
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  }

  .clients-delivery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .clients-filter {
    justify-content: center;
    gap: 8px;
  }

  .clients-filter-btn {
    font-size: 0.76rem;
    padding: 7px 10px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
  }

  .product-card h3 {
    font-size: 1rem;
    line-height: 1.35;
  }

  #solutions .card-img-wrapper {
    height: 200px;
  }

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

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

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-bottom-links a:not(:first-child) {
    margin-left: 12px;
    padding-left: 12px;
  }

  .blog-card-link {
    padding: 1.1rem 1rem;
  }

  .blog-card-title {
    font-size: clamp(1.15rem, 4vw, 1.35rem);
  }

  .blog-article-body {
    font-size: 1rem;
  }

  .modern-clients-section {
    padding: 80px 5%;
  }
}

@media (max-width: 560px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .clients-filter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .clients-filter-btn {
    width: 100%;
    text-align: center;
  }

  .clients-impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .speed-type-card {
    padding: 16px 14px;
  }

  .speed-type-media img {
    height: 140px;
  }

  .modern-clients-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .premium-client-card {
    padding: 24px 20px;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }

  .premium-client-icon {
    font-size: 2.2rem;
  }

  .premium-client-info {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }

  .section {
    padding: 56px max(5%, env(safe-area-inset-left, 0px)) 56px max(5%, env(safe-area-inset-right, 0px));
  }

  .modern-clients-section {
    padding: 56px max(5%, env(safe-area-inset-left, 0px)) 56px max(5%, env(safe-area-inset-right, 0px));
  }

  .page-header {
    padding: 44px max(5%, env(safe-area-inset-left, 0px)) 28px max(5%, env(safe-area-inset-right, 0px));
  }

  .page-section-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .clients-impact-grid {
    grid-template-columns: 1fr;
  }

  .clients-filter {
    grid-template-columns: 1fr;
  }

  .about-subtitle {
    font-size: clamp(1.2rem, 4.5vw, 1.65rem);
  }

  .page-section-block form > p.spacing-top-lg,
  .page-section-block > p.spacing-top-lg {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .page-section-block form > p.spacing-top-lg .btn,
  .page-section-block > p.spacing-top-lg .btn {
    width: 100%;
    text-align: center;
  }

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

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  #solutions .card-img-wrapper {
    height: 180px;
  }

  #solutions .card-content {
    padding: 18px 16px 20px;
  }

  #solutions .card-content h3 {
    font-size: 1.05rem;
  }
}

/* Blog */
.blog-empty {
  padding: 2rem 1rem;
}

.blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.blog-card {
  margin: 0;
}

.blog-card-link {
  display: block;
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition-normal), background var(--transition-normal), transform var(--transition-fast);
}

.blog-card-link:hover {
  border-color: rgba(255, 0, 51, 0.35);
  background: rgba(255, 0, 51, 0.06);
  transform: translateY(-2px);
}

.blog-card-date {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-title {
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  background: linear-gradient(to right, #ffffff, #c8c8c8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-card-excerpt {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.blog-card-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-color);
}

.blog-article-kicker {
  margin-bottom: 0.5rem;
}

.blog-article-section .blog-article {
  max-width: 720px;
  margin: 0 auto;
}

.blog-article-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.blog-article-body p {
  margin: 0 0 1rem;
}

.blog-article-back {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================================
   Component: Speed Guns (Moved from speed-guns.php)
   ========================================= */
.speed-guns-hero {
  background:
    radial-gradient(circle at 18% 24%, rgba(255,0,51,0.18), transparent 48%),
    linear-gradient(140deg, rgba(12,12,14,0.98), rgba(20,20,24,0.94));
}
.speed-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.speed-type-card {
  min-height: 100%;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.speed-type-media {
  margin: -6px -6px 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.speed-type-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.speed-type-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 51, 0.35);
  box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}
.speed-type-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}
.speed-type-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}
.speed-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.speed-spec {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.speed-spec strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
}
.speed-spec span {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.speed-apps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.speed-apps span {
  border: 1px solid rgba(255,0,51,0.25);
  background: rgba(255,0,51,0.1);
  color: #ff9bad;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
}
.speed-faq details {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  margin-top: 10px;
}
.speed-faq summary {
  cursor: pointer;
  padding: 12px 14px;
  font-family: var(--heading-font);
}
.speed-faq p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--text-muted);
}
.speed-mini-stats {
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(160deg, rgba(255,0,51,0.08), rgba(255,255,255,0.02));
  padding: 18px;
}
.speed-mini-stats .stats-grid {
  margin-top: 0;
}

/* =========================================
   Component: Modern Clients (Moved from index.php)
   ========================================= */
.modern-clients-section {
  padding: 100px 5%;
  background: linear-gradient(180deg, #050505 0%, #0a0a0c 100%);
  position: relative;
  overflow: hidden;
}
.modern-clients-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 0, 51, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.modern-clients-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.modern-clients-kicker {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  display: block;
}
.modern-clients-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.modern-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  perspective: 1000px;
}
.premium-client-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.premium-client-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 0, 51, 0.05);
  border-color: rgba(255, 0, 51, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 0, 51, 0.05);
}
.premium-client-icon {
  font-size: 3rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), #ff4d79);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(255, 0, 51, 0.3));
  transition: transform 0.4s ease;
}
.premium-client-card:hover .premium-client-icon {
  transform: scale(1.1) rotate(5deg);
}
.premium-client-name {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.premium-client-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.modern-clients-cta {
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
}

/* =========================================
   Component: Safety & Security Tweaks
   ========================================= */
/* Additional tablet sizing specifically requested */
@media (min-width: 601px) and (max-width: 991px) {
  .topic-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   Component: Products Page (Moved from product.php)
   ========================================= */
.product-hero {
    position: relative;
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, rgba(8, 15, 30, 0.95) 0%, rgba(20, 35, 75, 0.98) 100%);
    overflow: hidden;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.product-hero-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 0, 51, 0.15);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    animation: blob-float 10s infinite alternate ease-in-out;
}

@keyframes blob-float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(50px) scale(1.1); }
}

.product-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.product-title-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.product-title-group i {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 0, 51, 0.6);
}

.product-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #fff, #b3c5ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    line-height: 1.6;
}

.product-detail-section {
    padding: 80px 5%;
    background-color: var(--bg-dark);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 900px) {
    .product-layout.has-image {
        grid-template-columns: 1fr 1fr;
    }
}

.product-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    pointer-events: none;
}

.product-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
}

.product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.product-info {
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
}

.highlights-kicker {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.highlights-title {
    font-size: 2.2rem;
    font-family: var(--heading-font);
    color: #fff;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.feature-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background: rgba(255, 0, 51, 0.15);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 0, 51, 0.3);
}

.product-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.not-found-card {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.not-found-card i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

/* Last: overrides motion/animations defined earlier (e.g. product hero, cards) */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }

  .hero-canvas-wrap {
    opacity: 0.4;
  }

  .home-value-item:hover {
    transform: translateY(-4px);
  }

  .home-solutions a.image-card:hover {
    transform: translateY(-8px);
  }

  .home-about-visual:hover .home-about-card {
    transform: translateY(-4px);
  }

  .image-card:hover .card-img-wrapper img,
  .image-card:active .card-img-wrapper img {
    transform: none;
  }

  .image-card:hover .card-img-wrapper::after,
  .image-card:focus-visible .card-img-wrapper::after {
    animation: none;
    opacity: 0;
  }

  .solution-card-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product-hero-bg {
    animation: none;
  }
}
