/* ============================================
   Truelife Solutions — stylesheet
   Palette: deep navy / cobalt / sky blue
   ============================================ */

:root {
  --navy-deep: #0b1b33;
  --navy: #16263f;
  --navy-surface: #14273f;
  --blue-cobalt: #1d5fa8;
  --blue-bright: #2f8fe0;
  --blue-sky: #5fb2ff;
  --blue-pale: #e7f1fc;
  --bg-light: #f5f8fc;
  --bg-white: #ffffff;
  --text-dark: #16263f;
  --text-muted: #5b7089;
  --text-faint: #9fb4cc;
  --border-soft: #dde6f0;

  --font-display: "Space Grotesk", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
}
p {
  margin: 0;
  line-height: 1.65;
  color: var(--text-muted);
}
button {
  font-family: inherit;
  cursor: pointer;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-cobalt));
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(29, 95, 168, 0.55);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.btn-primary:hover::after {
  left: 130%;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(29, 95, 168, 0.65);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}
.btn-lg {
  padding: 18px 34px;
  font-size: 16px;
}
.btn-block {
  width: 100%;
}
.text-link {
  color: var(--blue-cobalt);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  gap: 6px;
}
.text-link span {
  transition: transform 0.2s var(--ease);
}
.text-link:hover span {
  transform: translateX(4px);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition:
    background 0.35s var(--ease),
    padding 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 36px;
  width: auto;
}
.brand-logo--light {
  display: none;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 8px 30px -12px rgba(11, 27, 51, 0.15);
}
.site-header.scrolled .brand-logo--dark {
  display: block;
}
.site-header:not(.scrolled) .brand-logo--dark {
  display: none;
}
.site-header:not(.scrolled) .brand-logo--light {
  display: block;
}

.main-nav {
  display: flex;
  gap: 34px;
}
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  transition:
    color 0.25s var(--ease),
    opacity 0.25s var(--ease);
  position: relative;
}
.site-header.scrolled .main-nav a {
  color: var(--navy);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--blue-bright);
  transition: width 0.25s var(--ease);
}
.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-mono);
}
.site-header.scrolled .header-phone {
  color: var(--navy);
}
.dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(61, 220, 132, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 220, 132, 0);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}
.site-header.scrolled .nav-toggle span {
  background: var(--navy);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(
    120% 100% at 15% 0%,
    #12315a 0%,
    var(--navy-deep) 55%,
    #081324 100%
  );
  overflow: hidden;
  padding-top: 100px;
}
.net-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}
.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 27, 51, 0) 40%,
    var(--navy-deep) 100%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-inner > * {
  animation: fadeUpIn 0.9s var(--ease) both;
}
.hero-inner .eyebrow {
  animation-delay: 0.05s;
}
.hero-inner .hero-title {
  animation-delay: 0.15s;
}
.hero-inner .hero-sub {
  animation-delay: 0.28s;
}
.hero-inner .hero-cta {
  animation-delay: 0.4s;
}
.hero-inner .hero-stats {
  animation-delay: 0.52s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-inner > * {
    animation: none;
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-sky);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow-line {
  width: 34px;
  height: 1.5px;
  background: var(--blue-bright);
}

.hero-title {
  font-size: clamp(38px, 6vw, 68px);
  color: #fff;
  letter-spacing: -0.02em;
  max-width: 16em;
}
.text-grad {
  background: linear-gradient(
    100deg,
    var(--blue-sky),
    var(--blue-bright) 60%,
    #b9dcff
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 26px;
  font-size: 18px;
  color: #afc2da;
  max-width: 640px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 48px;
  margin-top: 76px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num,
.stat-suffix {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  display: inline;
}
.stat-label {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 6px;
  max-width: 11em;
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--blue-cobalt);
  overflow: hidden;
  padding: 14px 0;
}
.trust-track {
  display: flex;
  white-space: nowrap;
  gap: 14px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.trust-track span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #eaf3ff;
  letter-spacing: 0.04em;
  padding: 0 4px;
}
.trust-track .sep {
  color: var(--blue-sky);
  opacity: 0.7;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============ SECTIONS (generic) ============ */
.section {
  padding: 120px 0;
}
.section--tint {
  background: var(--bg-light);
}
.section--dark {
  background: linear-gradient(180deg, var(--navy-deep), #0e223f);
  color: #fff;
}
.kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-cobalt);
  margin: 0 0 14px;
}
.kicker--light {
  color: var(--blue-sky);
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  max-width: 14em;
  letter-spacing: -0.01em;
}
.section-title--light {
  color: #fff;
}
.section-lead {
  font-size: 17px;
  max-width: 620px;
  margin-top: 18px;
}
.section-lead--light {
  color: var(--text-faint);
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 50px -20px rgba(22, 38, 63, 0.18),
    0 0 0 1px rgba(47, 143, 224, 0.25);
  border-color: transparent;
}
.service-card--lg {
  grid-column: span 2;
}
.service-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy);
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-media img {
  transform: scale(1.08);
}
@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.service-media-icon {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(11, 27, 51, 0.72);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconFloat 3.2s ease-in-out infinite;
}
.service-card:hover .service-media-icon {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.08) translateZ(26px);
  transition: transform 0.3s var(--ease);
}
.service-media-icon svg {
  width: 22px;
  height: 22px;
}
.service-card-body {
  padding: 26px 28px 30px;
}
.service-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
}
.service-card--cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 30px 28px;
}
.service-card--cta h3 {
  color: #fff;
}
.service-card--cta p {
  color: var(--text-faint);
  font-size: 15px;
}
.service-card--cta .text-link {
  color: var(--blue-sky);
}

/* ============ animation utilities ============ */
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.float-anim {
  animation: floatY 4.5s ease-in-out infinite;
}
.img-hover-zoom {
  overflow: hidden;
}
.img-hover-zoom img {
  transition: transform 0.6s var(--ease);
}
.img-hover-zoom:hover img {
  transform: scale(1.06);
}

/* ============ ABOUT GALLERY ============ */
.about-gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-m);
  display: block;
}
.about-gallery .gal-main {
  grid-row: 1/3;
}
.about-gallery .gal-main img {
  aspect-ratio: 3/4;
}
.about-gallery .gal-sub img {
  aspect-ratio: 16/10;
}

.services-grid--teaser {
  grid-template-columns: repeat(4, 1fr);
}
.services-grid--teaser .service-card--lg {
  grid-column: span 2;
}
.why-grid--teaser {
  grid-template-columns: repeat(3, 1fr);
}
.why-more {
  margin-top: 34px;
  display: inline-flex;
  color: var(--blue-sky);
}

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.why-item {
  background: var(--navy-deep);
  padding: 38px 32px;
}
.why-num {
  font-family: var(--font-mono);
  color: var(--blue-sky);
  font-size: 14px;
  opacity: 0.7;
}
.why-item h4 {
  color: #fff;
  font-size: 19px;
  margin: 14px 0 10px;
}
.why-item p {
  color: var(--text-faint);
  font-size: 14.5px;
}

/* ============ PROCESS ============ */
.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
  position: relative;
}
.process-rail::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 6%;
  right: 6%;
  height: 1.5px;
  background: repeating-linear-gradient(
    90deg,
    var(--border-soft) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
}
.process-index {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  margin-bottom: 22px;
}
.process-step h4 {
  font-size: 19px;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14.5px;
}

/* ============ INDUSTRIES ============ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.industry-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  padding: 28px 18px;
  text-align: center;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -18px rgba(22, 38, 63, 0.16);
}
.industry-card svg {
  width: 34px;
  height: 34px;
  color: var(--blue-cobalt);
  margin: 0 auto 14px;
}
.industry-card h4 {
  font-size: 14.5px;
  font-weight: 600;
}

/* ============ CTA BANNER ============ */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cta-banner {
  background: linear-gradient(
    120deg,
    var(--blue-cobalt),
    var(--navy-deep),
    var(--blue-bright),
    var(--navy-deep)
  );
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
  padding: 70px 0;
}
@media (prefers-reduced-motion: reduce) {
  .cta-banner {
    animation: none;
  }
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner-inner h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  max-width: 12em;
}
.cta-banner-inner p {
  color: #c7dbf2;
  margin-top: 10px;
  max-width: 36em;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
}
.contact-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
}
.contact-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.contact-list a:hover {
  color: var(--blue-cobalt);
}

.contact-form {
  background: var(--bg-light);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-l);
  padding: 44px;
}
.contact-form h3 {
  font-size: 22px;
  margin-bottom: 26px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.contact-form label.full {
  grid-column: 1/-1;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 15px;
  border-radius: var(--radius-s);
  border: 1.5px solid var(--border-soft);
  background: #fff;
  color: var(--text-dark);
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(47, 143, 224, 0.14);
  outline: none;
}
.form-note {
  font-size: 12.5px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 14px;
}
.form-success {
  display: none;
  margin-top: 16px;
  background: #e5f7ed;
  color: #1d7a45;
  padding: 12px 16px;
  border-radius: var(--radius-s);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.form-success.show {
  display: block;
}

/* ============ SHOP CTA ============ */
.shop-cta {
  background: var(--navy);
  padding: 60px 0;
}
.shop-cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.shop-cta-inner h3 {
  color: #fff;
  font-size: 24px;
}
.shop-cta-inner p {
  color: var(--text-faint);
  margin-top: 12px;
}
.shop-cta-inner .btn {
  margin-top: 24px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-deep);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  height: 34px;
  margin-bottom: 18px;
}
.footer-brand p {
  color: var(--text-faint);
  font-size: 14.5px;
  max-width: 26em;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.footer-socials a:hover {
  background: var(--blue-cobalt);
  border-color: var(--blue-cobalt);
}
.footer-col h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col a,
.footer-col span {
  color: var(--text-faint);
  font-size: 14.5px;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover {
  color: var(--blue-sky);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 13px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ SHOP PAGE ============ */
.shop-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -46px;
  position: relative;
  z-index: 3;
}
.shop-trust-item {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 20px 44px -26px rgba(11, 27, 51, 0.18);
}
.shop-trust-item svg {
  width: 26px;
  height: 26px;
  color: var(--blue-cobalt);
  flex: none;
}
.shop-trust-item h5 {
  font-size: 14px;
  margin-bottom: 2px;
}
.shop-trust-item p {
  font-size: 12.5px;
  margin: 0;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 50px 0 40px;
}
.chip {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border-soft);
  color: var(--text-muted);
  background: var(--bg-white);
  transition: all 0.25s var(--ease);
}
.chip:hover {
  border-color: var(--blue-bright);
  color: var(--blue-cobalt);
}
.chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.product-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.product-card-link:hover .product-title {
  color: var(--blue-cobalt);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px -22px rgba(22, 38, 63, 0.2);
}
@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.product-card {
  animation: cardIn 0.5s var(--ease) both;
}
.product-card:nth-child(4n + 1) {
  animation-delay: 0.02s;
}
.product-card:nth-child(4n + 2) {
  animation-delay: 0.08s;
}
.product-card:nth-child(4n + 3) {
  animation-delay: 0.14s;
}
.product-card:nth-child(4n + 4) {
  animation-delay: 0.2s;
}
@media (prefers-reduced-motion: reduce) {
  .product-card {
    animation: none;
  }
}

@keyframes burstFly {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--bx), var(--by)) scale(0.3);
  }
}
.burst-particle {
  position: fixed;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  pointer-events: none;
  z-index: 2000;
  animation: burstFly 0.6s ease-out forwards;
}

.product-media {
  aspect-ratio: 1/1;
  background: linear-gradient(150deg, var(--blue-pale), #fff);
  position: relative;
  overflow: hidden;
}
.product-media::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.75s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.product-card:hover .product-media::after {
  left: 130%;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-media img {
  transform: scale(1.08);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  letter-spacing: 0.03em;
}
@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(214, 69, 69, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(214, 69, 69, 0);
  }
}
@keyframes badgePulseBlue {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(29, 95, 168, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(29, 95, 168, 0);
  }
}
.product-badge--sale {
  background: #d64545;
  animation: badgePulse 2.2s ease-in-out infinite;
}
.product-badge--new {
  background: var(--blue-cobalt);
  animation: badgePulseBlue 2.2s ease-in-out infinite;
}
.product-badge--limited {
  background: #b8862e;
}
.product-body {
  padding: 18px 18px 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint);
}
.product-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  font-family: var(--font-body);
  transition: color 0.2s var(--ease);
}
.product-specs {
  font-size: 12.5px;
  color: var(--text-muted);
  flex: 1;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}
.price-new {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}
.price-old {
  font-size: 13px;
  color: var(--text-faint);
  text-decoration: line-through;
}
.product-stock {
  font-size: 11.5px;
  color: #2d9f5c;
  font-weight: 600;
}
.product-stock.low {
  color: #b8862e;
}
.product-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 18px 18px;
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-soft);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button {
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1;
}
.qty-stepper button:hover {
  background: var(--bg-light);
  color: var(--blue-cobalt);
}
.qty-stepper span {
  width: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}
.add-cart-btn {
  flex: 1;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: background 0.25s var(--ease);
}
.add-cart-btn:hover {
  background: var(--blue-cobalt);
}
.add-cart-btn.added {
  background: #2d9f5c;
}

.shop-loadmore {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* cart trigger in header */
.cart-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.site-header.scrolled .cart-trigger {
  border-color: var(--border-soft);
  color: var(--navy);
}
.cart-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
}
.site-header.scrolled .cart-trigger:hover {
  background: var(--bg-light);
}
.cart-trigger svg {
  width: 18px;
  height: 18px;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--blue-bright);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes cartPop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.cart-count.pop {
  animation: cartPop 0.4s ease;
}

/* cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 27, 51, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  z-index: 1200;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: #fff;
  z-index: 1201;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px -20px rgba(11, 27, 51, 0.3);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 26px;
  border-bottom: 1px solid var(--border-soft);
}
.cart-drawer-head h3 {
  font-size: 19px;
}
.cart-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 26px;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.cart-item-media {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--blue-pale);
  overflow: hidden;
  flex: none;
}
.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-item-info h5 {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
}
.cart-item-price {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.cart-item-remove {
  font-size: 12px;
  color: #d64545;
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 14px;
}
.cart-drawer-foot {
  padding: 22px 26px 26px;
  border-top: 1px solid var(--border-soft);
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}
.cart-note {
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 12px;
}

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
  position: relative;
  padding: 168px 0 90px;
  background: radial-gradient(
    120% 140% at 85% 0%,
    #12315a 0%,
    var(--navy-deep) 55%,
    #081324 100%
  );
  overflow: hidden;
}
.page-hero .net-canvas {
  opacity: 0.4;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.page-hero-inner > * {
  animation: fadeUpIn 0.8s var(--ease) both;
}
.page-hero-inner .breadcrumb {
  animation-delay: 0.05s;
}
.page-hero-inner .page-hero-title {
  animation-delay: 0.15s;
}
.page-hero-inner .page-hero-sub {
  animation-delay: 0.28s;
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-inner > * {
    animation: none;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-faint);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.breadcrumb a {
  color: var(--blue-sky);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.page-hero-title {
  font-size: clamp(34px, 5vw, 54px);
  color: #fff;
  letter-spacing: -0.02em;
}
.page-hero-sub {
  margin-top: 20px;
  font-size: 17px;
  color: #afc2da;
  max-width: 600px;
}

/* ============ ABOUT PAGE ============ */
.about-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.about-story-figure {
  position: sticky;
  top: 120px;
}
.story-mark {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-l);
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-mark svg {
  width: 60%;
  height: 60%;
}
.about-story-body p {
  font-size: 16.5px;
  margin-bottom: 20px;
}
.about-story-body p:last-child {
  margin-bottom: 0;
}
.about-story-body strong {
  color: var(--text-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  padding: 30px 26px;
  border-radius: var(--radius-m);
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
}
.value-card .value-num {
  font-family: var(--font-mono);
  color: var(--blue-cobalt);
  font-size: 13px;
}
.value-card h4 {
  margin: 14px 0 8px;
  font-size: 17px;
}
.value-card p {
  font-size: 14px;
}

/* ============ SERVICES PAGE (detail cards) ============ */
.service-detail {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 60px 0;
  border-top: 1px solid var(--border-soft);
}
.service-detail:first-of-type {
  border-top: none;
}
.service-detail-head {
  position: sticky;
  top: 120px;
}
.service-detail-media {
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 22px;
}
.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.service-detail-media:hover img {
  transform: scale(1.05);
}
.service-detail-head h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.service-detail-head p {
  font-size: 15.5px;
}
.service-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}
.service-feature-list li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dark);
  align-items: flex-start;
}
.service-feature-list li svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--blue-bright);
}

/* ============ BLOG LISTING ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(22, 38, 63, 0.18);
}
.blog-card-media {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, var(--navy), var(--blue-cobalt));
  position: relative;
  overflow: hidden;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.08);
}
.blog-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-cobalt);
}
.blog-card-body h3 {
  font-size: 19px;
  line-height: 1.3;
}
.blog-card-body p {
  font-size: 14.5px;
  flex: 1;
}
.blog-meta {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  margin-top: 6px;
}
.blog-card-body .text-link {
  margin-top: 4px;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  margin-top: 56px;
}
.blog-featured-media {
  background: linear-gradient(150deg, var(--navy-deep), var(--blue-cobalt));
  min-height: 280px;
  overflow: hidden;
}
.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-featured-body {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.blog-featured-body h2 {
  font-size: 28px;
  line-height: 1.25;
}
.blog-featured-body p {
  font-size: 15.5px;
}

/* ============ ARTICLE (single blog post) ============ */
.article-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 32px;
}
.article-banner {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  margin: 36px 0 0;
}
.article-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-header {
  padding: 150px 0 50px;
}
.article-header .breadcrumb {
  margin-bottom: 26px;
}
.article-hero-img {
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 16/8;
  margin-bottom: 48px;
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-title {
  font-size: clamp(30px, 4.5vw, 44px);
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.article-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.article-meta .blog-tag {
  background: var(--blue-pale);
  padding: 4px 12px;
  border-radius: 999px;
}
.article-body {
  padding-bottom: 80px;
}
.article-body p {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 22px;
  line-height: 1.75;
}
.article-body h2 {
  font-size: 24px;
  margin: 44px 0 18px;
  color: var(--text-dark);
}
.article-body h3 {
  font-size: 19px;
  margin: 32px 0 14px;
  color: var(--text-dark);
}
.article-body ul {
  margin: 0 0 22px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-body ul li {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  list-style: disc;
}
.pull-quote {
  border-left: 3px solid var(--blue-bright);
  padding: 6px 0 6px 26px;
  margin: 36px 0;
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
}
.author-box {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius-m);
  background: var(--bg-light);
  border: 1px solid var(--border-soft);
  margin-top: 20px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-cobalt));
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}
.author-box h5 {
  font-size: 15px;
  margin-bottom: 3px;
}
.author-box p {
  font-size: 13.5px;
  margin: 0;
}
.article-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 44px 0;
}
.related-heading {
  font-size: 13px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 22px;
}

/* ============ MOBILE CTA (sticky) ============ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-cobalt));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 30px;
  border-radius: 999px;
  box-shadow: 0 14px 34px -10px rgba(11, 27, 51, 0.5);
}

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card--lg {
    grid-column: span 2;
  }
  .services-grid--teaser {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid--teaser .service-card--lg {
    grid-column: span 2;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid--teaser {
    grid-template-columns: repeat(3, 1fr);
  }
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-rail {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }
  .process-rail::before {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 44px;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-story-figure {
    position: static;
  }
  .story-mark {
    max-width: 320px;
    margin: 0 auto;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-detail-head {
    position: static;
  }
  .service-feature-list {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .shop-trust {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .wrap {
    padding: 0 22px;
  }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    top: 0;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--navy-deep);
    flex-direction: column;
    padding: 110px 36px 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 1050;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav a {
    color: #fff;
    font-size: 18px;
  }
  .header-phone {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .header-actions .btn-primary {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .section {
    padding: 88px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card--lg {
    grid-column: span 1;
  }
  .services-grid--teaser {
    grid-template-columns: 1fr;
  }
  .services-grid--teaser .service-card--lg {
    grid-column: span 1;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-grid--teaser {
    grid-template-columns: 1fr;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-rail {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .mobile-cta {
    display: block;
  }
  body {
    padding-bottom: 78px;
  }
  .page-hero {
    padding: 140px 0 60px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .article-header {
    padding: 120px 0 34px;
  }
  .article-wrap {
    padding: 0 22px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-trust {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .cart-drawer {
    width: 100vw;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .product-body {
    padding: 12px 12px 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat-num,
  .stat-suffix {
    font-size: 28px;
  }
  .contact-form {
    padding: 28px 22px;
  }
  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================================================================
   ENHANCED ANIMATIONS — global polish layer
   Cursor glow, scroll progress, magnetic buttons, ripple, 3D tilt,
   gradient borders, image reveal, morphing blobs, footer glow.
   All disabled under prefers-reduced-motion and on touch devices.
   ================================================================ */

/* ---------- Scroll-to-top circular progress button ---------- */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 34px -12px rgba(11, 27, 51, 0.35);
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-top-btn svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.scroll-top-btn circle {
  fill: none;
  stroke-width: 3;
}
.scroll-top-btn .track {
  stroke: var(--border-soft);
}
.scroll-top-btn .fill {
  stroke: var(--blue-bright);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}
.scroll-top-btn .arrow {
  position: relative;
  z-index: 1;
  color: var(--blue-cobalt);
  transition: transform 0.25s var(--ease);
}
.scroll-top-btn:hover .arrow {
  transform: translateY(-2px);
}
.scroll-top-btn:hover {
  box-shadow: 0 18px 40px -12px rgba(11, 27, 51, 0.45);
}

/* ---------- Magnetic buttons ---------- */
.btn {
  will-change: transform;
}

/* ---------- Ripple click effect ---------- */
.btn {
  position: relative;
  overflow: hidden;
}
.ripple-el {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  pointer-events: none;
  animation: rippleAnim 0.6s ease-out forwards;
}
.btn-ghost .ripple-el,
.btn-ghost-light .ripple-el {
  background: rgba(255, 255, 255, 0.3);
}
@keyframes rippleAnim {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

/* ---------- 3D tilt cards ---------- */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

/* ---------- Animated gradient border sweep (service cards) ---------- */
@keyframes borderHue {
  0% {
    box-shadow:
      0 24px 50px -20px rgba(22, 38, 63, 0.18),
      0 0 0 1.5px rgba(47, 143, 224, 0.35);
  }
  50% {
    box-shadow:
      0 24px 50px -20px rgba(22, 38, 63, 0.18),
      0 0 0 1.5px rgba(95, 178, 255, 0.55);
  }
  100% {
    box-shadow:
      0 24px 50px -20px rgba(22, 38, 63, 0.18),
      0 0 0 1.5px rgba(47, 143, 224, 0.35);
  }
}
.service-card:hover {
  animation: borderHue 2.4s ease-in-out infinite;
}

/* ---------- Image reveal on scroll (clip-path wipe) ---------- */
.media-reveal {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition:
    clip-path 0.9s var(--ease),
    opacity 0.5s var(--ease);
}
.media-reveal.in {
  clip-path: inset(0 0 0% 0);
  opacity: 1;
}

/* ---------- Morphing background blobs (hero) ---------- */
@keyframes blobMorph {
  0%,
  100% {
    border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
    transform: translate(0, 0) scale(1);
  }
  33% {
    border-radius: 60% 40% 45% 55% / 55% 60% 40% 45%;
    transform: translate(20px, -15px) scale(1.06);
  }
  66% {
    border-radius: 35% 65% 55% 45% / 40% 50% 50% 60%;
    transform: translate(-15px, 10px) scale(0.97);
  }
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  animation: blobMorph 16s ease-in-out infinite;
  z-index: 0;
}
.hero-blob--a {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, var(--blue-bright), transparent 70%);
}
.hero-blob--b {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -40px;
  background: radial-gradient(circle, var(--blue-sky), transparent 70%);
  animation-delay: -8s;
}

/* ---------- Footer glow / twinkling stars ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(
      1.5px 1.5px at 10% 20%,
      rgba(255, 255, 255, 0.5) 50%,
      transparent 100%
    ),
    radial-gradient(
      1.5px 1.5px at 25% 65%,
      rgba(255, 255, 255, 0.35) 50%,
      transparent 100%
    ),
    radial-gradient(
      1.5px 1.5px at 40% 30%,
      rgba(255, 255, 255, 0.45) 50%,
      transparent 100%
    ),
    radial-gradient(
      1.5px 1.5px at 60% 75%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 100%
    ),
    radial-gradient(
      1.5px 1.5px at 75% 15%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%
    ),
    radial-gradient(
      1.5px 1.5px at 88% 55%,
      rgba(255, 255, 255, 0.35) 50%,
      transparent 100%
    ),
    radial-gradient(
      1.5px 1.5px at 95% 85%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%
    );
  animation: starTwinkle 4s ease-in-out infinite alternate;
}
@keyframes starTwinkle {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 0.7;
  }
}

/* ---------- Confetti particles (contact form success) ---------- */
.confetti-piece {
  position: fixed;
  width: 8px;
  height: 8px;
  pointer-events: none;
  z-index: 2000;
  top: 0;
  left: 0;
}

/* ---------- Word-by-word text reveal (section titles) ---------- */
.word-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em) rotate(3deg);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}
.word-reveal.in span {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* ---------- Icon pop-in bounce (on card reveal) ---------- */
@keyframes iconPopIn {
  0% {
    transform: scale(0) rotate(-15deg);
  }
  60% {
    transform: scale(1.15) rotate(4deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.reveal.in .why-num,
.reveal.in .industry-card svg,
.reveal.in .value-card .value-num {
  animation: iconPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ---------- Reduced-motion & touch overrides ---------- */
@media (prefers-reduced-motion: reduce) {
  .service-card:hover {
    animation: none;
  }
  .hero-blob {
    animation: none;
  }
  .site-footer::before {
    animation: none;
  }
  .word-reveal span {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .reveal.in .why-item svg,
  .reveal.in .industry-card svg,
  .reveal.in .value-card .value-num {
    animation: none;
  }
}
.no-hover-fx .tilt-card {
  transform: none !important;
}

/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */
.product-detail-wrap {
  padding: 150px 0 70px;
}
.product-detail-breadcrumb {
  margin-bottom: 34px;
}
.product-not-found {
  padding: 170px 0 120px;
  text-align: center;
}
.product-not-found .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.product-detail-image {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: linear-gradient(150deg, var(--blue-pale), #fff);
  border: 1px solid var(--border-soft);
}
.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 36px;
  display: block;
}
.product-detail-image .product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
}

.product-detail-info {
  position: sticky;
  top: 110px;
}
.product-detail-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--text-dark);
  margin: 14px 0 18px;
  line-height: 1.25;
}
.product-detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}
.price-detail-new {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
}
.price-detail-old {
  font-size: 17px;
  color: var(--text-faint);
  text-decoration: line-through;
}
.product-detail-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 22px 0;
}
.product-detail-specs {
  margin: 0 0 30px;
}
.product-detail-actions {
  display: flex;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 14px;
}
.product-detail-actions .qty-stepper {
  flex: none;
}
.product-detail-actions .btn {
  flex: 1;
}
.product-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25d366;
  color: #fff;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}
.product-whatsapp-btn:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(37, 211, 102, 0.5);
}

.related-products-section {
  padding-top: 70px;
  padding-bottom: 90px;
}

@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-detail-info {
    position: static;
  }
  .product-detail-wrap {
    padding: 130px 0 50px;
  }
}
@media (max-width: 480px) {
  .product-detail-actions {
    flex-direction: column;
  }
  .product-detail-image img {
    padding: 24px;
  }
}

/* ================================================================
   3D HERO ORBIT — a ring of service icons rotating in real 3D space
   Desktop/tablet only; hidden on small screens to avoid clutter and
   any layout overflow risk on narrow viewports.
   ================================================================ */
.hero-orbit {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 300px;
  height: 300px;
  transform: translateY(-50%);
  perspective: 900px;
  z-index: 1;
  pointer-events: none;
}
.hero-orbit-ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: heroOrbitSpin 24s linear infinite;
}
@keyframes heroOrbitSpin {
  from { transform: rotateY(0deg) rotateX(8deg); }
  to   { transform: rotateY(360deg) rotateX(8deg); }
}
.hero-orbit-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  transform-style: preserve-3d;
}
.hero-orbit-node:nth-child(1) { transform: rotateY(0deg)   translateZ(130px); }
.hero-orbit-node:nth-child(2) { transform: rotateY(60deg)  translateZ(130px); }
.hero-orbit-node:nth-child(3) { transform: rotateY(120deg) translateZ(130px); }
.hero-orbit-node:nth-child(4) { transform: rotateY(180deg) translateZ(130px); }
.hero-orbit-node:nth-child(5) { transform: rotateY(240deg) translateZ(130px); }
.hero-orbit-node:nth-child(6) { transform: rotateY(300deg) translateZ(130px); }

/* Counter-rotate each node so icons stay facing the viewer (billboard effect) */
.hero-orbit-node-inner {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: rgba(11, 27, 51, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(95, 178, 255, 0.35);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-sky);
  animation: heroOrbitCounter 24s linear infinite;
}
@keyframes heroOrbitCounter {
  from { transform: rotateX(-8deg) rotateY(0deg); }
  to   { transform: rotateX(-8deg) rotateY(-360deg); }
}
.hero-orbit-node-inner svg {
  width: 26px;
  height: 26px;
}
.hero-orbit-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-bright), var(--blue-cobalt));
  box-shadow: 0 0 24px 6px rgba(47, 143, 224, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit-ring,
  .hero-orbit-node-inner {
    animation: none;
  }
}

/* Responsive: hide the orbit below desktop widths to avoid crowding
   the hero copy or overflowing on tablets/phones */
@media (max-width: 1199px) {
  .hero-orbit {
    display: none;
  }
}

/* ================================================================
   3D DEPTH POP — service icon badge pops toward the viewer on hover,
   riding the same 3D space established by the card's tilt effect.
   (Rule itself lives inline with the original hover block above.)
   ================================================================ */
