:root {
  --primary: #e31c23;
  --primary-rgb: 227, 28, 35;
  --primary-dark: #b01015;
  --accent: #9ca3af;
  --bg: #0f0f0f;
  --muted: #a0a0a0;
  --light: #1a1a1a;
  --body-text: #e5e5e5;
  --border: #2d2d2d;
  /* Dark Gray Border */
  --white: #ffffff;
  --gray-light: #1f1f1f;
  --dark: #0a0a0a;
  /* Deep Black */
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
  --radius-lg: 18px;
  --red: #e31c23;
  --red-dark: #B71C1C;
  --red-glow: rgba(227, 30, 36, .12);
  --dark: #0D0D0D;
  --dark2: #111111;
  --card: #1A1A1A;
  --card-border: #2A2A2A;
  --white: #FFFFFF;
  --gray: #9E9E9E;
  --gray-light: #BDBDBD;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
.outfit {
  font-family: "Outfit", sans-serif;
}

body {
  background: #0f0f0f;
  color: var(--body-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.parallax-element {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* Premium Features Styles */
.premium-features {
  padding: 8rem 0;
  position: relative;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.float {
  animation: float 4s ease-in-out infinite;
}

.fullview-sec-image {
  position: relative;
  background-color: #000;
  padding: 3rem 0;
  color: #fff;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fullview-sec-image .image-sec {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
}

.fullview-sec-image .sustain-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fullview-sec-image img {
  width: 100%;
  min-height: auto;
  height: 100%;
  object-fit: cover;
}

.premium-features::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle,
      rgba(var(--primary-rgb), 0.05) 0%,
      transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.features-header {
  text-align: center;
  margin-bottom: 5rem;
}

.features-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to bottom, #ffffff, #a0a0a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-header p {
  color: #808080;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.premium-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .premium-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .premium-card-grid {
    grid-template-columns: 1fr;
  }
}

.premium-card {
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 24px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.premium-card:nth-child(1) {
  animation-delay: 0.1s;
}

.premium-card:nth-child(2) {
  animation-delay: 0.2s;
}

.premium-card:nth-child(3) {
  animation-delay: 0.3s;
}

.premium-card:nth-child(4) {
  animation-delay: 0.4s;
}

.premium-card:hover {
  border-color: transparent;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);

  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: all 0.6s ease;
  transform: scale(1.1);
  z-index: 1;
}

.premium-card .card-overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  /* Pure black for maximum contrast */
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.premium-card:hover .card-img {
  opacity: 0.3;
  /* Keep image subtle to prevent distraction */
  transform: scale(1.1);
  filter: grayscale(100%);
  /* Remove color distraction */
}

.premium-card:hover .card-overlay {
  opacity: 0.95;
  /* Deep black contrast */
}

.premium-card .card-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

.premium-card:hover .icon-wrapper,
.premium-card:hover h3 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}

.premium-card p {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-20%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  z-index: 10;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  /* Extra layer of contrast specifically for text */
  backdrop-filter: blur(10px);
  /* Glass effect on text background */
  text-shadow: 0 4px 15px rgba(0, 0, 0, 1);
}

.premium-card:hover p {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

.icon-wrapper,
.premium-card h3 {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.premium-card:hover {
  border-color: transparent;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      rgba(var(--primary-rgb), 0.2),
      rgba(var(--primary-rgb), 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-card:hover .icon-wrapper {
  transform: scale(1.2) rotate(-10deg);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.premium-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.premium-card p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.7;
}

/* Image Section Styles */
.image-showcase {
  padding: 5rem 0;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
}

.showcase-row:nth-child(even) {
  direction: rtl;
}

.showcase-row:nth-child(even) .showcase-content {
  direction: ltr;
}

.showcase-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-image:hover {
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.showcase-image:hover img {
  transform: scale(1.05) rotate(1deg);
}

.showcase-content {
  padding: 2rem 0;
}

.showcase-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.showcase-content p {
  font-size: 1.1rem;
  color: #d0d0d0;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #e5e7eb;
  font-weight: 500;
}

.feature-list i {
  color: var(--primary);
}

@media (max-width: 960px) {
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .showcase-row:nth-child(even) {
    direction: ltr;
  }
}

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

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

.page {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(15, 15, 15, 0.95);
  border-bottom: 1px solid var(--border);
  animation: slideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.brand-text-main {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.brand-text-sub {
  font-size: 0.7rem;
  color: #b0b0b0;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.product-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.68rem 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.25);
  border: none;
  animation: slideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 18px 35px rgba(var(--primary-rgb), 0.6),
    0 0 30px rgba(var(--primary-rgb), 0.4);
  filter: brightness(1.15);
}

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

.btn-ghost {
  border-color: var(--border);
  color: var(--dark);
  background: rgba(243, 244, 246, 0.6);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-ghost:hover {
  background: #f3f4f6;
  border-color: var(--muted);
  transform: translateY(-2px);
}

/* PREMIUM HERO ENHANCEMENTS */
.hero {
  position: relative;
  padding: 2.5rem 0 0.5rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 120%;
  /* Extra height for parallax */
  object-fit: cover;
  opacity: 0.5;
  filter: brightness(0.7) contrast(1.1);
  will-change: transform;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      var(--bg) 20%,
      rgba(0, 0, 0, 0.4) 60%,
      transparent 100%);
}

/* Banner Accent Circle */
.accent-circle {
  position: absolute;
  top: 50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 2rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: rgba(var(--primary-rgb), 0.1);
  backdrop-filter: blur(4px);
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
  cursor: crosshair;
  z-index: 2;
  background: #f1f5f9;
  animation: scaleUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
  border: 2px solid transparent;
  transition:
    border-color 0.6s ease,
    box-shadow 0.6s ease;
}

.hero-image-container:hover {
  border-color: var(--primary);
  box-shadow:
    0 50px 100px rgba(var(--primary-rgb), 0.2),
    inset 0 0 30px rgba(var(--primary-rgb), 0.05);
}

.hero-image-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container .img-raw {
  opacity: 0;
  transform: scale(1.05) rotate(-2deg);
}

.hero-image-container:hover .img-application {
  opacity: 0;
  transform: scale(0.95) rotate(2deg);
}

.hero-image-container:hover .img-raw {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.image-caption-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 3;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero-image-container:hover .image-caption-tag {
  transform: translateY(-5px);
}

.hero-image-container .caption-application {
  opacity: 1;
}

.hero-image-container .caption-raw {
  opacity: 0;
}

.hero-image-container:hover .caption-application {
  opacity: 0;
}

.hero-image-container:hover .caption-raw {
  opacity: 1;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #ffffff;
  animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whitetext {
  color: #fff !important;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

.hero-sub {
  font-size: 18px;
  color: #bbbbbb;
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;

  span {
    font-size: 2rem;
  }
}

.hero-stat-item p {
  font-size: 0.75rem;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  aspect-ratio: 16/9;
}
.hero-visual a {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.hero-visual a .play-btn {
  position: absolute!important;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero-card {
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c0c0c0;
}

.hero-card-pill {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.65rem;
  color: #d0d0d0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-highlight h3 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-card-highlight p {
  color: #d0d0d0;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-chip {
  background:
    linear-gradient(135deg,
      rgba(227, 28, 35, 0.15) 0%,
      rgba(227, 28, 35, 0.05) 100%),
    rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(227, 28, 35, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 30px rgba(227, 28, 35, 0.1);
  transition: all 0.3s ease;
}

.stat-chip:hover {
  border-color: rgba(227, 28, 35, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 50px rgba(227, 28, 35, 0.2);
  transform: translateY(-4px);
}

.stat-label {
  font-size: 0.65rem;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* INTERACTIVE COMPARISON SLIDER */
.comparison-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  margin: 3rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.img-after {
  width: 50%;
  z-index: 1;
  border-right: 2px solid var(--primary);
}

.comparison-slider {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

.comparison-label {
  position: absolute;
  bottom: 2rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 3;
}

.label-before {
  right: 2rem;
}

.label-after {
  left: 2rem;
}

/* INTERACTIVE STEPS */
.process-nav {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  margin-bottom: 2rem;
  scrollbar-width: none;
}

.process-nav::-webkit-scrollbar {
  display: none;
}

.process-step-btn {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.process-step-btn.active {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.process-content {
  background:
    linear-gradient(135deg,
      rgba(227, 28, 35, 0.12) 0%,
      rgba(227, 28, 35, 0.02) 100%),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(227, 28, 35, 0.25);
  border-radius: 32px;
  padding: 3rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 40px rgba(227, 28, 35, 0.1);
  display: none;
}

.process-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  animation: fadeInUp 0.5s forwards;
}

/* LEAD GEN STICKY */
.sticky-inquiry {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  background: var(--primary);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: slideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-inquiry:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.4);
}

.sticky-inquiry i {
  animation: iconPulse 2s ease-in-out infinite;
}

/* VISION MOTION SLIDESHOW (Video/GIF Feel) */
.vision-motion-container {
  position: relative;
  width: 100%;
  height: 600px;
  background: #000;
  border-radius: 40px;
  overflow: hidden;
  margin: 4rem 0;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition:
    opacity 1.5s ease-in-out,
    transform 10s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-slide.active {
  opacity: 1;
  transform: scale(1.05);
}

.video-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 50%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}

.video-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--primary);
  z-index: 3;
  width: 0%;
  transition: width 0.1s linear;
}

.video-caption {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  z-index: 4;
  max-width: 500px;
}

.video-caption h3 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* GIF-Style Pulsing Icons */
@keyframes iconPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(var(--primary-rgb), 0));
  }

  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(var(--primary-rgb), 0.6));
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(var(--primary-rgb), 0));
  }
}

/* PREMIUM ANIMATIONS */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow:
      0 0 5px rgba(var(--primary-rgb), 0.3),
      inset 0 0 5px rgba(var(--primary-rgb), 0.1);
  }

  50% {
    box-shadow:
      0 0 20px rgba(var(--primary-rgb), 0.6),
      inset 0 0 10px rgba(var(--primary-rgb), 0.2);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    transform: rotate(-5deg) scale(0.95);
    opacity: 0;
  }

  to {
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}

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

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

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

/* Premium Button Enhancements */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  animation: slideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Premium Card Hover Effects */
.premium-card {
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.premium-card:nth-child(1) {
  animation-delay: 0.1s;
}

.premium-card:nth-child(2) {
  animation-delay: 0.2s;
}

.premium-card:nth-child(3) {
  animation-delay: 0.3s;
}

.premium-card:nth-child(4) {
  animation-delay: 0.4s;
}

.gif-icon {
  animation: iconPulse 2s infinite ease-in-out;
}

/* SECTION: 15-Step Difference */
.section {
  padding: 2rem 0 1.5rem;
  background: #0f0f0f;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.section-kicker {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8b8b8;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 2.625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
}

.section-sub {
  font-size: 18px;
  color: #a0a0a0;
  font-weight: 400;
  max-width: 26rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  border-radius: 1rem;
  border: 1px solid rgba(227, 28, 35, 0.1);
  background: #1a1a1a;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.feature-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #b8b8b8;
  margin-bottom: 0.35rem;
}

.feature-title {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.feature-text {
  font-size: 0.78rem;
  color: #d0d0d0;
}

.feature-chip {
  position: absolute;
  bottom: 0.7rem;
  right: 0.7rem;
  padding: 0.18rem 0.6rem;
  font-size: 0.64rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.9);
}

/* SECTION: Tested Proven Trusted */
.split {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 1.6rem;
  align-items: flex-start;
}

.test-card {
  border-radius: 1rem;
  border: 1px solid rgba(227, 28, 35, 0.15);
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  padding: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.3);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.test-pill {
  border-radius: 0.9rem;
  border: 1px solid rgba(227, 28, 35, 0.2);
  padding: 0.5rem 0.6rem;
  font-size: 0.72rem;
  background: rgba(37, 37, 37, 0.5);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.test-pill strong {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.8rem;
}

.meaning-list {
  font-size: 0.78rem;
  color: #d0d0d0;
  margin-top: 0.7rem;
  list-style: none;
}

.meaning-list li {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.meaning-dot {
  margin-top: 0.35rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
  flex-shrink: 0;
}

/* SECTION: Timber Truth */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.metric {
  border-radius: 0.9rem;
  border: 1px solid rgba(227, 28, 35, 0.15);
  padding: 0.6rem 0.7rem;
  background: rgba(37, 37, 37, 0.4);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  font-size: 0.78rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.metric span {
  display: block;
}

.metric strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.1rem;
}

/* SECTION: Plywood that Cares */
.care-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 1.6rem;
  align-items: center;
}

.care-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.care-pill {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(227, 28, 35, 0.25);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d0d0d0;
  background: rgba(37, 37, 37, 0.5);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* SECTION: Sustainability */
.sustainability {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1f1f1f 100%);
  position: relative;
  overflow: hidden;
}

.sustain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sustain-content h2 {
  font-size: 2.625rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.sustain-content .sub-title {
  font-size: 18px;
  font-weight: 400;
  color: #a0a0a0;
  margin-bottom: 3rem;
}

.sustain-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.sustain-content p {
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.sustain-content strong {
  font-weight: 800;
}

.btn-sustain {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  background: #000;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-sustain:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #333;
}

.sustain-visual {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.sustain-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .sustain-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sustain-content {
    text-align: center;
  }

  .sustain-content p {
    max-width: none;
  }
}

/* SECTION: Philosophy Dark (Iron Redesign) */
.philosophy-dark {
  background: #1a1c20;
  /* Deep Iron Grey */
  background-image:
    radial-gradient(circle at 0% 0%,
      rgba(227, 28, 35, 0.1) 0%,
      transparent 40%),
    radial-gradient(circle at 100% 100%,
      rgba(227, 28, 35, 0.05) 0%,
      transparent 40%);
  padding: 2.5rem 0;
  /* Reduced padding */
  color: #fff;
  position: relative;
  overflow: hidden;
}

.philosophy-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
  pointer-events: none;
}

.philosophy-dark .philosophy-header {
  text-align: center;
  margin-bottom: 1rem;
}

.philosophy-dark .philosophy-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
}

.philosophy-dark .main-heading {
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.philosophy-dark .philosophy-sub {
  font-size: 18px;
  color: #a0a0a0;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.6;
}

.philosophy-dark .phi-slider-wrapper {
  position: relative;
  margin-top: 2rem;
  padding: 1rem 0;
}

.philosophy-dark .phi-slider-container {
  overflow: hidden;
  margin: 0 -1rem;
  padding: 1rem;
}

.philosophy-dark .phi-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.philosophy-dark .phi-slide {
  flex: 0 0 calc(33.333% - 1rem);
  background: rgba(30, 32, 36, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.philosophy-dark .phi-slide:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  background: rgba(40, 42, 46, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.philosophy-dark .phi-slide .phi-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  transition: all 0.6s ease;
  z-index: 0;
}

.philosophy-dark .phi-slide:hover .phi-bg {
  opacity: 0.4;
  transform: scale(1.1);
}

.philosophy-dark .phi-slide .phi-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.philosophy-dark .phi-slide:hover .phi-icon {
  transform: scale(1.1);
  background: var(--primary);
  color: #fff;
}

.philosophy-dark .phi-slide h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  font-family: "Outfit", sans-serif;
}

.philosophy-dark .phi-slide h4 span {
  display: block;
  font-size: 12px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.philosophy-dark .phi-slide p {
  font-size: 1rem;
  line-height: 1.5;
  color: #a0a0a0;
  position: relative;
  z-index: 2;
  margin: 0;
}

.philosophy-dark .phi-nav-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.philosophy-dark .phi-nav-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.philosophy-dark .phi-nav-arrow.left {
  left: -60px;
}

.philosophy-dark .phi-nav-arrow.right {
  right: -60px;
}

@media (max-width: 1280px) {
  .philosophy-dark .phi-nav-arrow.left {
    left: 0;
  }

  .philosophy-dark .phi-nav-arrow.right {
    right: 0;
  }
}

@media (max-width: 1024px) {
  .philosophy-dark .phi-slide {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 640px) {
  .philosophy-dark .phi-slide {
    flex: 0 0 100%;
  }
}

/* SECTION: Proof / Tests */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-card {
  border-radius: 0.9rem;
  border: 1px dashed rgba(227, 28, 35, 0.3);
  padding: 0.8rem 0.8rem 0.85rem;
  font-size: 0.78rem;
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.proof-card h4 {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 0.35rem;
}

/* SECTION: Journey & Warranty */
.journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 1.6rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  font-size: 0.78rem;
}

.step-card {
  border-radius: 0.9rem;
  border: 1px solid rgba(227, 28, 35, 0.15);
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  padding: 0.8rem 0.8rem 0.85rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.7rem;
  padding: 0.12rem 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: #e5e7eb;
}

.step-title {
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

.step-card p {
  color: #d0d0d0;
}

.warranty-card {
  border-radius: 1rem;
  border: 1px solid rgba(227, 28, 35, 0.1);
  background: radial-gradient(circle at 0 0, rgba(227, 28, 35, 0.05), #252525);
  padding: 1rem 1rem 0.9rem;
  font-size: 0.78rem;
}

.warranty-card h3 {
  font-size: 0.98rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.warranty-steps {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.35rem;
}

.warranty-steps p {
  color: #e5e7eb;
}

.warranty-note {
  font-size: 0.72rem;
  color: #c4b5fd;
  margin-top: 0.6rem;
}

/* SECTION: Social Proof (Stories) */
.social-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.quote-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
  background: #fff;
}

.quote-card {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 5rem;
  color: rgba(227, 28, 35, 0.1);
  font-family: "Outfit";
  line-height: 1;
}

.quote-text {
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.quote-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 0.2rem;
}

.author-info span {
  font-size: 14px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.families-trust {
  margin-top: 4rem;
  padding: 2.5rem 3rem;
  background: rgba(var(--primary-rgb), 0.03);
  border-radius: 20px;
  border-left: 5px solid var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.families-trust .families {
  font-size: 18px;
  color: #a0a0a0;
  line-height: 1.4;
  flex: 1;
}

.families-trust .families span {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.2rem;
}

.families-trust .tagline {
  font-size: 1rem;
  color: #fff;
  font-style: italic;
  text-align: right;
  max-width: 350px;
  line-height: 1.5;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 2rem;
}

@media (max-width: 768px) {
  .families-trust {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 0;
  }

  .families-trust .tagline {
    text-align: center;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .social-proof {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .social-proof {
    grid-template-columns: 1fr;
  }
}

/* SECTION: Your Prime Journey */
.prime-journey {
  padding: 4rem 0;
  background: #0f0f0f;
  text-align: center;
  overflow: hidden;
}

.prime-journey h2 {
  font-size: 2.625rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 3.5rem;
}

.prime-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

.prime-step {
  /* background: rgba(31, 41, 55, 0.5); */
  background: radial-gradient(751.72% 409.91% at -32.63% 124.64%,
      #1f1d1d 5.16%,
      #010101 45.73%);
  border: 1px solid #382b2b;
  border-radius: 24px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.prime-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--primary);
}

/* .prime-step:nth-child(1) {
  animation-delay: 0.1s;
}
.prime-step:nth-child(2) {
  animation-delay: 0.2s;
}
.prime-step:nth-child(3) {
  animation-delay: 0.3s;
}
.prime-step:nth-child(4) {
  animation-delay: 0.4s;
} */

.prime-step h3 {
  font-size: 2rem;
  color: var(--primary);
  /* Brand Red */
  margin-bottom: 1.2rem;
  font-weight: 700;
  display: inline-block;
}

.prime-step p {
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.4;
  max-width: 180px;
  margin: 0 auto 1rem;
}

.btn-explorer {
  display: inline-block;
  margin-top: auto;
  padding: 0.6rem 2.2rem;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: "Outfit", sans-serif;
}

.btn-explorer:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.prime-connector {
  position: absolute;
  top: 50%;
  right: -25%;
  width: 80px;
  height: 20px;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 10;
  animation: run 0.8s infinite;
}

@keyframes run {
  0% {
    right: -22%;
  }

  100% {
    right: -27%;
  }
}

@media (max-width: 1024px) {
  .prime-journey-grid {
    flex-direction: column;
    gap: 4rem;
  }

  .prime-connector {
    display: none;
  }

  .prime-step p {
    max-width: 100%;
  }
}

/* SECTION: Warranty Process (Enhanced) */
.warranty-process {
  padding: 4rem 0;
  background: #0f0f0f;
  position: relative;
}

.warranty-process .innerbox {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}

.warranty-process img {
  width: 100%;
  transition: all linear 0.2s;
}

.warranty-process .default {
  display: block;
  opacity: 1;
}

.warranty-process .hovered {
  display: none;
  opacity: 0;
}

.w-step-card:hover .hovered {
  display: block;
  opacity: 1;
}

.w-step-card:hover .default {
  display: none;
  opacity: 0;
}

.warranty-process h2 {
  font-size: 2.625rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.warranty-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
  align-items: stretch;
}

.w-step-card {
  background: radial-gradient(751.72% 409.91% at -32.63% 124.64%,
      #1f1d1d 5.16%,
      #010101 45.73%);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  border: 1px solid #382b2b;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.w-step-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.w-step-card .bg-number {
  position: absolute;
  top: 0;
  right: 1.5rem;
  font-size: 14rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: "Outfit";
  z-index: 1;
  opacity: 0;
}

.w-step-card .step-label {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #fff;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 2;
  display: block;
}

.w-step-card .step-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  background: #aaaaaa5c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  margin-top: 0;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.w-step-card .step-icon i {
  width: 32px;
  height: 32px;
}

.w-step-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #a0a0a0;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  font-weight: 400;
  text-align: left;
  max-width: 250px;
}

.w-step-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  width: auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.w-step-card ul li {
  font-size: 1rem;
  color: #a0a0a0;
  padding-left: 1rem;
  position: relative;
  font-weight: 400;
}

.w-step-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
}

.w-step-card .card-logo {
  margin-top: auto;
  padding: 1.5rem 0 0;
  border-top: 1px solid #f1f5f9;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.w-step-card .card-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

/* @media (max-width: 1024px) {
  .warranty-step-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 2rem;
  }
} */

/* SECTION: DIY Tests */
.diy-tests {
  padding: 4rem 0;
  background: #0f0f0f;
  text-align: center;
}

.diy-tests h2 {
  font-size: 2.625rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4rem;
}

.diy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.diy-card {
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: scaleUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.diy-card:nth-child(1) {
  animation-delay: 0.1s;
}

.diy-card:nth-child(2) {
  animation-delay: 0.2s;
}

.diy-card:nth-child(3) {
  animation-delay: 0.3s;
}

.diy-card:nth-child(4) {
  animation-delay: 0.4s;
}

.diy-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.diy-img-box {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 60px;
  /* High radius as per image */
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.diy-card:hover .diy-img-box {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
}

.diy-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.diy-card:hover .diy-img-box img {
  transform: scale(1.08);
}

.diy-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.diy-card p {
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.5;
  max-width: 250px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .diy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .diy-grid {
    grid-template-columns: 1fr;
  }
}

.families span {
  font-weight: 600;
  color: var(--primary);
}

/* CTA BAR (Capsule Design) */
.cta-bar {
  margin: 1rem 0;
  border-radius: 24px;
  border: 1px solid rgba(227, 28, 35, 0.2);
  background: #1a1a1a;
  border-left: 5px solid var(--primary);
  padding: 3rem 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

/*.cta-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}*/

.cta-bar-main {
  flex: 1;
  min-width: 300px;
}

.cta-bar-main strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-bar-main span {
  font-size: 1rem;
  color: #a0a0a0;
}

.cta-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-cta {
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid #e2e8f0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.5s ease;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta-red {
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 10px 20px rgba(227, 28, 35, 0.2);
}

.btn-cta-red:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(227, 28, 35, 0.3);
}

.btn-cta-outline {
  background: #f8fafc;
  color: #0f172a;
}

.btn-cta-outline:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-bar {
    border-radius: 32px;
    padding: 2.5rem;
    text-align: center;
  }

  .cta-bar-actions {
    justify-content: center;
  }
}

/* FOOTER (Refined) */
.footer {
  padding: 6rem 0 4rem;
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.6);
  width: 100%;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 3rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-copyright {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 800px;
}

.footer-inquiry-btn {
  background: var(--primary);
  color: #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(227, 28, 35, 0.3);
}

.footer-inquiry-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(227, 28, 35, 0.4);
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-inquiry-btn {
    align-self: flex-start;
  }
}

/* LEAD FORM ENHANCEMENTS */
.lead-section {
  background: radial-gradient(circle at top right,
      rgba(227, 28, 35, 0.05),
      transparent 40%);
  background-color: #1a1c20;
  padding: 4rem 0;
}

.lead-section .section-title {
  text-transform: none;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}

.lead-info {
  padding-top: 0;
}

.lead-form-wrapper {
  width: 100%;
}

.enquiry-form {
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  color: #111827;
  font-size: 1.05rem;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
}

.form-control::placeholder {
  color: #808080;
  font-weight: 400;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2371717a' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
  transform: scale(1.01);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.2rem !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  text-transform: none !important;
  background: var(--primary) !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.6s ease;
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3) !important;
}

.form-submit:active {
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 960px) {

  .hero-grid,
  .split,
  .care-grid,
  .journey-grid,
  .social-proof {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero-card-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-inner {
    padding: 0.8rem 0;
  }
}

@media (max-width: 768px) {

  .feature-grid,
  .proof-grid,
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .metrics-grid,
  .philosophy-grid,
  .test-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-footnote {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-bar {
    border-radius: 1rem;
  }

  .footer-right {
    text-align: left;
  }
}

@media (max-width: 560px) {

  .metrics-grid,
  .philosophy-grid,
  .test-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* 15-STEP SHOWCASE ENHANCEMENT */
.step-showcase {
  padding: 4rem 0 2rem;
  background: #0f0f0f;
  text-align: center;
  /* position: relative; */
}

.step-showcase h2 {
  font-size: 2.625rem;
  font-weight: 500;
  /* margin-bottom: 25px; */
  color: #ffffff;
  letter-spacing: -0.02em;
}

.step-showcase .sub-title {
  font-size: 18px;
  color: #a0a0a0;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.step-grid-container {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0 -2rem;
  /* Pull back to edges */
}

.step-grid {
  display: flex;
  gap: 2.5rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
  will-change: transform;
}

.step-grid.no-slide {
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0 0;
}

.philosophy-dark .step-grid.no-slide .phi-slide {
  flex: 0 0 calc(25% - 1.5rem);
  height: auto;
  justify-content: flex-start;
}

.step-item {
  flex: 0 0 calc(33.333% - 1.7rem);
  /* Show 3 cards */
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-item.video .step-img-wrapper {
  position: relative;
}

.step-item.video .step-img-wrapper:after {
  position: absolute;
  content: "";
  width: 70px;
  height: 50px;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  transform: translateY(-50%);
  background: url('../assets/video-icon.svg')0 0 no-repeat;
  background-size: 70px;
}

.step-item:hover {
  transform: translateY(-8px) scale(1.02);
}

.step-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 1.8rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  transition: all 0.6s ease;
}

.step-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-item:hover .step-img-wrapper {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.step-item:hover .step-img-wrapper img {
  transform: scale(1.08) rotate(-1deg);
}

.step-item p {
  font-size: 16px;
  font-weight: 400;
  color: #a0a0a0;
  padding: 0 1rem;
}

.step-item p span {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  display: block;
}

.nav-arrow {
  position: absolute;
  top: 40%;
  width: 56px;
  height: 56px;
  background: var(--primary);
  /* Switched from Yellow to Red */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transform: translateY(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.nav-arrow.disabled {
  cursor: not-allowed;
  background: var(--primary) !important;
  opacity: .6;
}

.nav-arrow:hover {
  background: var(--primary-dark);
  /* transform: translateY(-50%) scale(1.1); */
  box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.4);
}

.nav-arrow i {
  color: #ffffff;
  width: 28px;
  height: 28px;
}

.nav-arrow.left {
  left: 0;
}

.nav-arrow.right {
  right: 0;
}

.explore-btn-large {
  margin-top: 2rem;
  padding: 1.2rem 4.5rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.explore-btn-large:hover {
  background: #1f2937;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(227, 30, 36, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all .3s;
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--red);
}

.play-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-left: 4px;
}

.mt-8 {
  margin-top: 2rem;
}

.tca {
  font-size: 10px;
  color: var(--gray);
  margin-top: 8px;
  letter-spacing: .5px;
  text-align: left;
}

.tc-layout {
  display: grid;
  grid-template-columns: 1fr 520px;
  padding-top: 2rem;
  gap: 48px;
  align-items: stretch
}

.tc-left,
.tc-right {
  display: flex;
  flex-direction: column;
  height: 100%
}

.tc-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  flex: 1;
  align-content: stretch
}

.tc-offer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 24px;
  transition: all .4s
}

.tc-offer:hover {
  border-color: rgba(227, 30, 36, .4);
  transform: translateY(-4px)
}

.tc-offer-icon {
  width: 48px;
  height: 48px;
  background: var(--red-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tc-offer-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5
}

.tc-offer h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px
}

.tc-offer p {
  color: var(--gray);
  /* font-size: 13px; */
  line-height: 1.6
}

.tc-right {
  flex: 0 0 520px;
  position: relative
}

.tc-video-placeholder {
  aspect-ratio: 16/9;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 100%
}
.tc-right img.phi-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.tc-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a0a0a, #0d0d0d 50%, #1a1209)
}

.tc-video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(0, 0, 0, .7);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light)
}

.fr-table {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35)
}

.fr-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.fr-row:last-child {
  border-bottom: none
}

.fr-label {
  padding: 18px 24px;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center
}

.fr-tc {
  background: var(--red);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center
}

.fr-std {
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .015)
}

.fr-check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.fr-x {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, .08)
}

.fr-header {
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.fr-header .fr-label {
  color: var(--red);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 24px;
  background: rgba(227, 30, 36, .06)
}

.fr-header .fr-tc-band {
  background: var(--red)
}

.fr-header .fr-std-band {
  background: rgba(255, 255, 255, .015)
}

.fr-caption {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
  padding: 0 4px 10px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gray);
}
.fr-caption .title{
  font-size: 16px;
}
.fr-cap-tag {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
}

.comparison-section {
  padding: 60px 20px;
}

.comparison-container {
  max-width: 1100px;
  margin: auto;
  background: #1b1b1b;
  border: 1px solid #2d2d2d;
  border-radius: 18px;
  padding: 28px;
}

.comparison-title span {
  display: block;
  color: #ff3d3d;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.comparison-title p {
  color: #dadada;
  font-size: 18px;
  margin-bottom: 28px;
}

.mt-20 {
  margin-top: 20px;
}

.comparison-table {
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
  background: #0f0f0f;
}

.comparison-table th {
  padding: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #fff;
  text-align: left;
}

.comparison-table th:nth-child(2) {
  color: #ff3d3d;
}

.comparison-table td {
  padding: 18px;
  border-top: 1px solid #303030;
  border-right: 1px solid #303030;
  color: #e5e5e5;
  font-size: 15px;
}

.comparison-table td:last-child,
.comparison-table th:last-child {
  border-right: none;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
  text-align: left;
}

.text-center {
  text-align: center !important;
}

.comparison-table tbody tr:hover {
  background: #202020;
}

.table-heading td {
  background: #321d1d;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  border-right: none;
}

.comparison-note {
  margin-top: 20px;
  background: #2a1c1c;
  border-left: 4px solid #ff3d3d;
  padding: 18px 20px;
  border-radius: 0 8px 8px 0;
  color: #f0f0f0;
  line-height: 1.8;
}

.comparison-note strong {
  color: #fff;
}
.philosophy-dark.faq-section {
    background: #0f0f0f;
}
.faq-item {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .3s;
  background: var(--card)
}

.faq-item:hover {
  border-color: rgba(227, 30, 36, .3)
}
.faq-item ul.list-disc {
    margin-left: 1rem;
}

.faq-q {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .3s;
  letter-spacing: .1px
}

.faq-q:hover {
  background: rgba(255, 255, 255, .02)
}

.faq-q svg {
  width: 18px;
  height: 18px;
  stroke: var(--gray);
  fill: none;
  stroke-width: 2;
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 16px
}

.faq-q.active svg {
  transform: rotate(180deg);
  stroke: var(--red)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: rgba(0, 0, 0, .2)
}

.faq-a-inner {
  padding: 6px 22px 20px;
  color: var(--gray-light);
  font-size: 13.5px;
  line-height: 1.75
}

.faq-all-wrap {
  display: none
}

.faq-toggle-wrap {
  text-align: center;
  margin-top: 24px
}

.lead-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px
}

.lead-perk {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.lead-perk-icon {
  width: 36px;
  height: 36px;
  background: rgba(227, 30, 36, .12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.lead-perk-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2
}

.lead-perk-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px
}

.lead-perk-text p {
  color: var(--gray);
  font-size: 13px;
  margin: 0;
  line-height: 1.5
}

.register-box {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--card), rgba(227, 30, 36, .05));
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--red);
  border-radius: 14px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.register-text h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white)
}

.register-text p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6
}

.covered-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
  margin-top: 22px
}

.covered-full.open {
  max-height: 3200px
}

@media screen and (max-width:1199px) {
  .btn-cta {
    padding: 1rem;
  }

  .philosophy-dark .step-grid.no-slide .phi-slide {
    flex: 0 0 calc(50% - 1rem);
  }

  .enquiry-form {
    border-radius: 20px;
    padding: 1.5rem;
  }

  .tc-layout {
    gap: 25px;
  }

  .cta-bar {
    padding: 1.5rem 2rem;
    min-height: 160px;
  }

  .eyebrow {
    margin-bottom: 1rem;
    padding: .5rem !important;
  }

  .sticky-inquiry {
    bottom: 10px;
    right: 10px;
    padding: 1rem;
  }
}

@media (max-width: 960px) {
  .step-showcase h2 {
    font-size: 3rem;
  }

  .step-grid {
    gap: 1.5rem;
  }

  .step-item p {
    font-size: 1.1rem;
  }

  .tc-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .cta-bar {
    text-align: center;
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .step-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .step-grid-container {
    padding: 0;
  }

  .fr-caption {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    /* font-size: 10px; */
  }
  .fr-cap-tag {   
    font-size: 8px;
  }
  .fr-caption .title{
    font-size: 10px;
  }

  .fr-row {
    grid-template-columns: 1.6fr .8fr .8fr
  }

  .fr-label {
    padding: 14px 16px;
    font-size: 13px
  }

  .fr-header .fr-label {
    font-size: 8px;
    letter-spacing: 1.5px;
    padding: 12px
  }

  .fr-check,
  .fr-x {
    width: 20px;
    height: 20px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .comparison-container {
    padding: 15px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table table {
    /* min-width: 700px; */
    width: 100%;
    max-width: 100%;
    break-after: break-word;
  }

  .comparison-table th {
    padding: 10px;
    font-size: 10px;
    word-wrap: normal;
    text-align: center !important;
  }

  .comparison-table td {
    padding: 10px;
    font-size: 11px;
    line-height: 18px;
    text-align: center !important;
  }

  .comparison-title p {
    font-size: 16px;
  }
}

@media screen and (max-width:639px) {
  .philosophy-dark .step-grid.no-slide .phi-slide {
    flex: 100%;
  }

  .tc-offer {
    padding: 10px;
  }

  .nav-arrow {
    width: 35px;
    height: 35px;
  }
}

/* LAB RESULTS SECTION ENHANCEMENT */
.lab-results {
  position: relative;
  padding: 10rem 0;
  background: #000;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.lab-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero.png");
  /* Using hero as placeholder, ideally a lab image */
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: grayscale(100%) contrast(1.2);
  z-index: 1;
}

.lab-results .container {
  position: relative;
  z-index: 2;
}

.lab-results h2 {
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
  color: #fff;
  letter-spacing: -0.02em;
}

.lab-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.lab-table .table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.lab-table .table-row:last-child {
  border-bottom: none;
}

.lab-table .table-cell {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.4;
}

.lab-table .table-cell:last-child {
  border-right: none;
}

.lab-table .table-header {
  background: rgba(255, 255, 255, 0.05);
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 1.8rem 1rem;
}

.lab-results .btn-certificates {
  padding: 1.2rem 4rem;
  background: #000;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lab-results .btn-certificates:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

@media (max-width: 960px) {
  .lab-results h2 {
    font-size: 3.5rem;
  }

  .lab-table .table-cell {
    font-size: 1.1rem;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .lab-table .table-row {
    grid-template-columns: 1fr;
  }

  .lab-table .table-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lab-table .table-header {
    display: none;
  }
}

/* TESTED. PROVEN. TRUSTED. (Refined Light Theme) */
.lab-results {
  position: relative;
  padding: 2rem 0 4rem;
  background: #0f0f0f;
  color: #e5e5e5;
  overflow: hidden;
  text-align: center;
}

.lab-results h2 {
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-size: 2.625rem;
  font-weight: 500;
  /* margin-bottom: 25px; */
}

.lab-results .sub-heading {
  font-size: 18px;
  color: #a0a0a0;
  /* max-width: 400px; */
  margin: 0 auto 4rem;
  font-weight: 400;
}

.lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.lab-card {
  background: #1a1a1a;
  border: 1px solid rgba(227, 28, 35, 0.1);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: scaleUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.lab-card:nth-child(1) {
  animation-delay: 0.1s;
}

.lab-card:nth-child(2) {
  animation-delay: 0.2s;
}

.lab-card:nth-child(3) {
  animation-delay: 0.3s;
}

.lab-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(var(--primary-rgb), 0) 0%,
      rgba(var(--primary-rgb), 0.1) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

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

.lab-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--primary);
}

.lab-card .test-icon {
  width: 64px;
  min-width: 64px;
  height: 64px;
  min-height: 64px;
  background: #aaaaaa5c;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  margin: 0 auto 1.5rem;
  border: 1px solid #aaaaaa5c;
}

.lab-card .test-metric {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
  color: #fff;
}

.lab-card .test-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
}

.lab-card .test-icon,
.lab-card .test-metric,
.lab-card .test-title {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.lab-card:hover .test-icon,
.lab-card:hover .test-metric,
.lab-card:hover .test-title {
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
}

.lab-card .test-desc {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #1e293b;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  background: #fff;
  z-index: 5;
}

.lab-card:hover .test-desc {
  opacity: 1;
  transform: translateY(0);
}

.btn-certificates {
  padding: 1rem 3rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-certificates:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(227, 28, 35, 0.2);
}

@media (max-width: 1024px) {
  .lab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lab-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .lab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lab-grid {
    grid-template-columns: 1fr;
  }

  .lab-results {
    padding: 8rem 0;
  }
}

/* WIDE TIMBER TRUTH SECTION */
.timber-truth-wide {
  position: relative;
  padding: 6rem 0;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.truth-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/factory_bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: grayscale(100%) contrast(1.2);
  z-index: 1;
}

.timber-truth-wide .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.timber-truth-wide h2 {
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 25px;
  color: #ffffff;
  /* Light gray for high-end look */
  letter-spacing: -0.04em;
}

.timber-truth-wide .sub-heading {
  font-size: 18px;
  font-weight: 400;
  color: #a0a0a0;
  margin-bottom: 4rem;
  letter-spacing: -0.01em;
}

.timber-truth-wide .truth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.truth-card {
  background: radial-gradient(751.72% 409.91% at -32.63% 124.64%,
      #1f1d1d 5.16%,
      #010101 45.73%);
  border: 1px solid #382b2b;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.truth-card:hover {
  /* background: rgba(31, 41, 55, 0.5); */
  border-color: var(--primary);
  transform: translateY(-10px);
}

.truth-card .card-icon {
  width: 48px;
  height: 48px;
  background: #aaaaaa5c;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  margin-bottom: 2rem;
}

.truth-card .card-metric {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1;

  span {
    font-size: 2.5rem;
  }
}

.truth-card .card-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.truth-card .card-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #a0a0a0;
}

@media (max-width: 1024px) {
  .truth-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .truth-grid {
    grid-template-columns: 1fr;
  }
}

/* PLYWOOD THAT CARES SECTION */
.plywood-cares {
  padding: 6rem 0;
  background: #ffffff;
  text-align: left;
}

.plywood-cares h2 {
  font-size: 5.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

/* PLYWOOD THAT CARES (High-End Redesign) */
.plywood-cares {
  padding: 4rem 0;
  background: #0f0f0f;
}

.cares-header {
  margin-bottom: 3rem;
  text-align: left;
}

.cares-kicker {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.cares-kicker::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--primary);
}

.plywood-cares h2 {
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.plywood-cares .sub-label {
  font-size: 18px;
  color: #a0a0a0;
  font-weight: 400;
  margin-bottom: 0;
}

/* VERTICAL TABS REDESIGN FOR PLYWOOD THAT CARES */
.cares-tabs-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4rem;
  background: #0f0f0f;
  margin-top: 4rem;
  min-height: 500px;
}

.cares-tab-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 1px solid #2d2d2d;
  padding-left: 0;
}

.cares-tab-btn {
  padding: 1.5rem 2rem;
  text-align: left;
  background: none;
  border: none;
  border-left: 4px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.cares-tab-btn.active {
  background: rgba(227, 28, 35, 0.1);
  border-left-color: var(--primary);
}

.cares-tab-btn .btn-cat {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a0a0a0;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.cares-tab-btn .btn-title {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.3s ease;
}

.cares-tab-btn.active .btn-title {
  color: var(--primary);
}

.cares-tab-content {
  position: relative;
  background: #000;
  border-radius: 40px;
  overflow: hidden;
  display: none;
  animation: fadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  /* height: 600px; */
}

.cares-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.popupdata {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.popupdata.active {
  display: flex;
}

.popupdata .popupcontent video {
  width: 100%;
  display: block;
}

.popupdata .innerbox {
  width: 650px;
  max-width: 90%;
  background: #fff;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  padding: 20px;
  overflow: hidden;
}

.popupdata .btnflex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.closebtn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 9;
  width: 32px;
  height: 32px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.tab-visual {
  /* position: absolute;
  inset: 0;
  z-index: 1; */
}

.tab-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  z-index: -1;
}

.tab-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-details {
  position: relative;
  /* position: absolute;
  bottom: 0;
  left: 0;
  right: 0; */
  padding: 1rem 2rem;
  /* z-index: 3; */
  color: #fff;
}

.tab-details h4 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 700;
}

.tab-details p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 0;
  max-width: 80%;
}

.tab-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

@media (max-width: 1024px) {
  .cares-tabs-container {
    grid-template-columns: 1fr;
  }

  .cares-tab-list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 1rem;
    border-left: none;
  }

  .cares-tab-btn {
    border-left: none;
    border-bottom: 4px solid transparent;
    white-space: nowrap;
  }

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

  .cares-tab-content.active {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .cares-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cares-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .cares-grid {
    grid-template-columns: 1fr;
  }
}

/* color: var(--primary);
      background: #fafafa;
    } */

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

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

  .plywood-cares h2 {
    font-size: 3rem;
  }
}

/* IMAGE MODAL (LIGHTBOX) */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #fff;
  padding: 20px 0;
  font-size: 1.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 1001;
}

.modal-close:hover {
  color: var(--primary);
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }

  .modal-close {
    right: 20px;
    top: 20px;
  }
}

@media only screen and (max-width: 1199px) {
  .nav-inner {
    padding: 0.6rem 1.5rem;
  }

  .reveal.active {
    transform: none !important;
  }

  .hero-stats {
    gap: 1rem;
  }

  .step-grid-container {
    margin: 0;
    gap: 2.5rem;
  }

  .step-item p {
    padding: 0;
  }

  .prime-journey-grid {
    gap: 2rem;
  }

  .warranty-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 1023px) {
  .hero-sub {
    max-width: none;
  }

  .hero-visual {
    justify-content: center;
  }

  .step-item {
    flex: 0 0 calc(50% - 1.7rem);
  }

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

  .section-sub {
    max-width: none;
  }

  .timber-truth-wide .truth-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prime-journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header {
    flex-wrap: wrap;
    gap: 0;
  }
}

@media only screen and (max-width: 767px) {
  .nav .line {
    display: none;
  }

  .nav .navtext {
    display: none;
  }
  .nav-brand {    
    width: 100%;
    justify-content: space-between;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-stat-item h4 {
    font-size: 1.25rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
    display: none;
  }

  .step-showcase {
    padding: 2rem 0;
  }

  .step-showcase h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .step-showcase .sub-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .step-item {
    flex: 0 0 100%;
  }

  .step-item p span {
    font-size: 18px;
  }

  .step-item p {
    font-size: 1rem;
  }

  .lab-results {
    padding: 2rem 0;
  }

  .lab-results h2 {
    font-size: 1.5rem;
  }

  .lab-results .sub-heading {
    font-size: 1rem;
    margin: 0 auto 2rem;
  }

  .lab-card .test-metric {
    font-size: 1.5rem;
  }

  .lead-section {
    padding: 2rem 0;
  }

  .lead-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
  }

  .section-sub {
    font-size: 1rem;
  }

  .lead-grid {
    gap: 2rem;
  }

  .enquiry-form {
    padding: 1rem;
  }

  .lead-section .outfit {
    text-align: center;
    margin-bottom: 1rem !important;
    font-size: 1.5rem !important;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-submit {
    font-size: 1rem !important;
    font-weight: 700;
    margin-top: 0;
  }

  .reveal.active {
    padding: 2rem 0;
  }

  .timber-truth-wide h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .timber-truth-wide .sub-heading {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .timber-truth-wide .truth-grid {
    margin-top: 0;
    grid-template-columns: repeat(1, 1fr);
  }

  .truth-card {
    padding: 2rem;
  }

  .truth-card .card-label {
    margin-bottom: 0.5rem;
  }

  .truth-card .card-metric {
    font-size: 1.5rem;
  }

  .cares-kicker {
    margin-bottom: 0.5rem;
  }

  .plywood-cares h2 {
    font-size: 1.5rem;
  }

  .plywood-cares .sub-label {
    font-size: 1rem;
  }

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

  .cares-tabs-container {
    margin-top: 0;
    gap: 2rem;
  }

  .cares-tab-btn {
    padding: 1rem;
  }

  .cares-tab-btn .btn-title {
    font-size: 18px;
  }

  .tab-details h4 {
    font-size: 1.5rem;
  }

  .tab-badge {
    top: 1rem;
  }

  .philosophy-dark .philosophy-title {
    margin-bottom: 1rem;
  }

  .philosophy-dark .main-heading {
    font-size: 1.5rem;
  }

  .philosophy-dark .philosophy-sub {
    font-size: 1rem;
  }

  .philosophy-dark .phi-slider-wrapper {
    padding: 0;
  }

  .sustain-content h2 {
    font-size: 1.5rem;
  }

  .sustain-content .sub-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .sustain-grid {
    gap: 2rem;
  }

  .diy-tests h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .diy-img-box {
    margin-bottom: 1rem;
  }

  .prime-journey h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .prime-journey-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .prime-step h3 {
    font-size: 1.5rem;
  }

  .warranty-process h2 {
    font-size: 1.5rem;
  }

  .warranty-step-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .w-step-card {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .social-proof {
    margin-top: 0;
  }

  .quote-card {
    padding: 1rem;
  }

  .families-trust .families {
    font-size: 1rem;
  }

  .cta-bar {
    margin: 0;
  }

  .cta-bar-main {
    margin-bottom: 0;
  }

  .btn-cta {
    font-size: 0.75rem;
  }

  .footer {
    padding: 2rem 0;
  }

  .fr-table {
    display: block;
    padding: 10px;
    background: transparent;
  }

  /* Hide Desktop Header */
  /*.fr-header {
    display: none;
  }

  .fr-row {
    display: block;
    background: #181818;
    border: 1px solid #2d2d2d;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
  }

  .fr-label {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid #2d2d2d;
    background: #181818;
  }

  .fr-tc,
  .fr-std {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: relative;
  }

  .fr-tc {
    border-bottom: 1px solid #2d2d2d;
  }*/

  /* Left Labels */
  /*.fr-tc::before {
    content: "Comprehensive Total Cover";
    color: #cfcfcf;
    font-size: 14px;
    font-weight: 500;
  }

  .fr-std::before {
    content: "Baseline Standard Warranty";
    color: #cfcfcf;
    font-size: 14px;
    font-weight: 500;
  }*/

  /* Tick */
  .fr-check {
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    color: #ef1c24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
  }

  /* Cross */
  .fr-x {
    width: 25px;
    height: 25px;
    background: #2b2b2b;
    border: 1px solid #444;
    border-radius: 50%;
    color: #9a9a9a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
  }
  .tc-right {
    flex: 0 0 520px;
    position: relative;
    order: -1;
  }
  .hero-visual {      
      order: -1;
  }
}

@media only screen and (max-width: 424px) {
  .truth-card {
    padding: 1rem;
  }

  .tab-details {
    padding: 1rem;
  }

  .tab-badge {
    right: 1rem;
  }

  .prime-step {
    padding: 1.5rem;
  }

  .warranty-process .innerbox {
    flex-wrap: wrap;
  }

  .w-step-card {
    justify-content: flex-start;
  }

  .w-step-card .step-icon {
    margin: 0;
  }

  .w-step-card ul {
    width: 100%;
  }

  .cta-bar {
    padding: 1rem;
  }

  .cta-bar-main {
    min-width: auto;
  }

  .popupdata .btnflex a {
    width: 100%;
  }
}

.counter {
  margin-right: 5px;
}

/* ── OTP Flow Styles ── */
.otp-step {
  width: 100%;
}

.otp-step .btn {
  width: 100%;
}

.otp-timer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 10px;
  font-size: 0.85rem;
}

.otp-timer-label {
  color: #a0e8b0;
  font-weight: 500;
}

.otp-timer-value {
  color: #22c55e;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  min-width: 40px;
  text-align: center;
}

#otp-input {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  font-family: "Outfit", sans-serif;
}

#otp-input::placeholder {
  letter-spacing: 0.1em;
  font-size: 1rem;
  font-weight: 400;
}

.otp-resend-btn {
  width: 100%;
  color: #a0a0a0 !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: transparent !important;
  font-weight: 500 !important;
  transition: all 0.3s ease;
}

.otp-resend-btn:hover {
  color: #fff !important;
  border-color: var(--primary) !important;
  background: rgba(var(--primary-rgb), 0.1) !important;
}

.otp-success-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  color: #22c55e;
  font-weight: 600;
  font-size: 1rem;
  animation: fadeInUp 0.4s ease;
}

.otp-success-msg i,
.otp-success-msg svg {
  width: 22px;
  height: 22px;
  color: #22c55e;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── ENQUIRY POPUP STYLES ── */
.enquiry-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.enquiry-popup-overlay.active {
  display: flex;
}

.enquiry-popup-box {
  position: relative;
  width: 600px;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(145deg, #1a1a1a 0%, #111111 100%);
  border: 1px solid rgba(227, 28, 35, 0.2);
  border-radius: 24px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(227, 28, 35, 0.08);
  animation: popupSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.enquiry-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.enquiry-popup-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.enquiry-popup-body {
  padding: 2.5rem 2rem 2rem;
}

.enquiry-popup-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.enquiry-popup-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.enquiry-popup-header p {
  font-size: 0.9rem;
  color: #a0a0a0;
  margin: 0;
}

.enquiry-popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.popup-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.popup-form-group {
  display: flex;
  flex-direction: column;
}

.popup-form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.popup-form-control:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.popup-form-control::placeholder {
  color: #666;
}

.popup-form-control option {
  background: #1a1a1a;
  color: #fff;
}

textarea.popup-form-control {
  resize: vertical;
  min-height: 70px;
}

.popup-form-submit {
  width: 100%;
  border-radius: 10px !important;
  font-size: 1.05rem !important;
  padding: 0.9rem !important;
  font-weight: 600;
}

.popup-otp-timer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 10px;
  font-size: 0.85rem;
  color: #a0e8b0;
}

.popup-otp-timer-value {
  color: #22c55e;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.popup-resend-btn {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.85rem !important;
}

.popup-otp-success-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  color: #22c55e;
  font-weight: 600;
  font-size: 1rem;
}

.popup-otp-success-msg i,
.popup-otp-success-msg svg {
  width: 22px;
  height: 22px;
  color: #22c55e;
}

#popup-otp-input {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  font-family: 'Outfit', sans-serif;
}

#popup-otp-input::placeholder {
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  font-weight: 400;
}

@media (max-width: 640px) {
  .enquiry-popup-body {
    padding: 2rem 1.25rem 1.5rem;
  }

  .enquiry-popup-header h3 {
    font-size: 1.3rem;
  }

  .popup-form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .enquiry-popup-box {
    border-radius: 18px;
  }
}
