:root {
  --cp-red: #C41E3A;
  --cp-red-dark: #9B1530;
  --cp-red-light: #E83A4F;
  --cp-red-accent: #FF2D4A;
  --cp-black: #0A0A0A;
  --cp-charcoal: #1A1A1A;
  --cp-graphite: #2D2D2D;
  --cp-steel: #4A4A4A;
  --cp-silver: #8A8A8A;
  --cp-light: #F0F0F0;
  --cp-white: #FFFFFF;
  --cp-metal: #C0C0C0;
  --cp-gold: #D4AF37;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.25);
  --shadow-red: 0 8px 32px rgba(196, 30, 58, 0.35);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cp-white);
  color: var(--cp-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-red {
  color: var(--cp-red);
}

.text-gold {
  color: var(--cp-gold);
}

.text-white {
  color: var(--cp-white);
}

.bg-black {
  background: var(--cp-black);
}

.bg-charcoal {
  background: var(--cp-charcoal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  text-align: center;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.btn::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;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--cp-red);
  color: var(--cp-white);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover {
  background: var(--cp-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--cp-white);
  border: 2px solid var(--cp-white);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-outline:hover {
  background: var(--cp-white);
  color: var(--cp-black);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-top: 1px solid transparent;
  padding: 1rem 0;
  transition: all var(--transition-base);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1002;
}

.logo img {
  height: 40px;
  width: auto;
  transition: height var(--transition-base);
}

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: flex-start;
  padding: 5rem 1.5rem 2rem;
  gap: 0;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  display: flex;
  list-style: none;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.nav-links.active {
  right: 0;
}

.nav-links li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a {
  color: var(--cp-white);
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 1.25rem 0;
  transition: all var(--transition-base);
  display: block;
  width: 100%;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cp-red);
  transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 40px;
}

.nav-links a:hover {
  color: var(--cp-red);
  padding-left: 0.5rem;
}

.nav-cta {
  display: none;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cp-white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

@media (min-width: 768px) {
  .logo img {
    height: 45px;
  }

  .nav-links {
    width: 70%;
    max-width: 380px;
    padding: 6rem 2rem 2rem;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 1.5rem 0;
  }
}

@media (min-width: 1024px) {
  .navbar {
    background: transparent;
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .logo img {
    height: 50px;
  }

  .mobile-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 1.25rem;
    box-shadow: none;
    overflow: visible;
  }

  .nav-links li {
    width: auto;
    border-bottom: none;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    width: auto;
  }

  .nav-links a:hover {
    padding-left: 0;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .phone-link {
    color: var(--cp-white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
  }

  .phone-link:hover {
    color: var(--cp-red);
  }
}

@media (min-width: 1200px) {
  .nav-links {
    gap: 1.75rem;
  }

  .nav-cta {
    gap: 1.5rem;
  }

  .phone-link {
    font-size: 0.9rem;
  }
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cp-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg img {
  animation: kenBurns 20s ease-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.95) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.15));
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 6rem;
  padding-bottom: 14rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(196, 30, 58, 0.2);
  border: 1px solid rgba(196, 30, 58, 0.4);
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--cp-white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--cp-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-title .accent {
  color: var(--cp-red);
  display: block;
  font-size: 0.85em;
  margin-top: 0.25rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 100%;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.hero-actions .btn {
  width: 100%;
  max-width: 280px;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.98), rgba(10, 10, 10, 0.8), transparent);
  padding: 1.5rem 0;
}

.hero-stats .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.stat-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0.5rem 0;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.125rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--cp-red);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cp-red);
}

.stat-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.375rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 7rem;
    padding-bottom: 12rem;
    text-align: left;
  }

  .hero-badge {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
    margin-bottom: 1.75rem;
    justify-content: flex-start;
  }

  .hero-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    max-width: 700px;
  }

  .hero-title .accent {
    font-size: 0.9em;
    margin-top: 0.375rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 0 2rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }

  .hero-actions .btn {
    width: auto;
    max-width: none;
  }

  .hero-stats {
    padding: 2rem 0;
  }

  .hero-stats .container {
    gap: 1.5rem;
  }

  .stat-item:not(:last-child)::after {
    right: -0.75rem;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .stat-suffix {
    font-size: 1.375rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }

  .hero-title {
    font-size: 3.5rem;
    max-width: 800px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
  }

  .stat-number {
    font-size: 2.75rem;
  }

  .stat-suffix {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
    max-width: 900px;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .stat-number {
    font-size: 3rem;
  }
}

.section {
  padding: 3rem 0;
}

.section-header {
  max-width: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.section-header-center {
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.section-header-center .section-title,
.section-header-center .section-desc {
  text-align: center;
}


.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cp-red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--cp-red);
  flex-shrink: 0;
}

.section-label-center {
  justify-content: center;
}

.section-label-center::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--cp-red);
  flex-shrink: 0;
}


.section-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--cp-charcoal);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--cp-red);
}

.section-desc {
  font-size: 1rem;
  color: var(--cp-steel);
  margin-top: 0.75rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .section-header {
    max-width: 700px;
    margin-bottom: 3rem;
  }

  .section-label {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .section-label::before {
    width: 30px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-desc {
    font-size: 1.1rem;
    margin-top: 1rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--space-xl) 0;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

.about {
  background: var(--cp-light);
  position: relative;
  overflow: hidden;
}

.about::before {
  display: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-image {
  position: relative;
  overflow: hidden;
  order: 1;
}

.about-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  transition: transform 0.6s ease;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 2px solid var(--cp-red);
  z-index: -1;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.about-content {
  order: 2;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--cp-charcoal);
  line-height: 1.3;
}

.about-content h2 span {
  color: var(--cp-red);
}

.about-content p {
  color: var(--cp-steel);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.features-list {
  list-style: none;
  margin-top: 1.5rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--cp-charcoal);
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.features-list li.visible {
  opacity: 1;
  transform: translateX(0);
}

.features-list li::before {
  content: '\25B8';
  color: var(--cp-red);
  font-size: 1rem;
  flex-shrink: 0;
}

.glitch {
  position: relative;
  display: inline-block;
}

.glitch:hover {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  color: var(--cp-red);
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

@media (min-width: 768px) {
  .about-grid {
    gap: 3rem;
  }

  .about-image img {
    height: 350px;
  }

  .about-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
  }

  .about-content p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .features-list li {
    font-size: 0.95rem;
    padding: 1rem 0;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-image {
    order: 0;
  }

  .about-image img {
    height: 450px;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
  }

  .about-image::before {
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border-width: 3px;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
  }

  .about-content h2 {
    font-size: 2.25rem;
  }

  .about::before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: url('../images/logo-original.png') no-repeat center;
    background-size: contain;
    opacity: 0.04;
    pointer-events: none;
  }
}

.sustainability {
  background: linear-gradient(135deg, #0A3D2E 0%, #0A5D4A 50%, #0A7D6A 100%);
  color: var(--cp-white);
  position: relative;
  overflow: hidden;
}

.sustainability::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.sustainability .section-label {
  color: var(--cp-white);
}

.sustainability .section-label::before,
.sustainability .section-label::after {
  background: var(--cp-white);
}

.sustainability .section-title {
  color: var(--cp-white);
}

.sustainability .section-title span {
  color: #7ED321;
}

.sustainability .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.sustain-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.sustain-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.sustain-icon {
  width: 56px;
  height: 56px;
  background: rgba(126, 211, 33, 0.2);
  border: 2px solid #7ED321;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.sustain-icon svg {
  width: 28px;
  height: 28px;
  color: #7ED321;
}

.sustain-icon.green {
  background: rgba(126, 211, 33, 0.3);
}

.sustain-icon.nature {
  background: rgba(126, 211, 33, 0.2);
}

.sustain-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.sustain-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #7ED321;
  line-height: 1;
}

.sustain-suffix {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #7ED321;
}

.sustain-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--cp-white);
}

.sustain-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.sustain-desc strong {
  color: #7ED321;
}

@media (min-width: 768px) {
  .sustainability::before {
    top: -40%;
    left: -30%;
    width: 600px;
    height: 600px;
  }

  .sustainability-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .sustain-card {
    padding: 2rem;
  }

  .sustain-number {
    font-size: 3rem;
  }

  .sustain-suffix {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .sustainability::before {
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
  }

  .sustainability-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .sustain-card {
    padding: 2.5rem;
  }

  .sustain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .sustain-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }

  .sustain-icon svg {
    width: 32px;
    height: 32px;
  }

  .sustain-number {
    font-size: 3.5rem;
  }

  .sustain-suffix {
    font-size: 2.5rem;
  }

  .sustain-label {
    font-size: 1.1rem;
  }

  .sustain-desc {
    font-size: 0.9rem;
  }
}

.products {
  background: var(--cp-white);
}

.products-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 2rem;
}

.products-header .section-label {
  justify-content: center;
}

.products-header .section-label::before {
  display: none;
}

.products-header .section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--cp-red);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  opacity: 0;
  background: var(--cp-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(40px);
}

.product-card.visible {
  animation-fill-mode: both;
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--cp-red);
}

.product-card.featured {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.product-card.featured .product-image {
  height: 220px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  left: 0;
  background: var(--cp-red);
  color: var(--cp-white);
  padding: 0.375rem 0.875rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.product-content {
  padding: 1.5rem;
  text-align: center;
}

.product-card.featured .product-content {
  display: block;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cp-charcoal);
  margin-bottom: 0.5rem;
}

.product-desc {
  color: var(--cp-steel);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.875rem;
}

.product-features {
  list-style: none;
  margin-bottom: 1.25rem;
}

.product-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--cp-steel);
  margin-bottom: 0.5rem;
}

.product-features li::before {
  content: '\25B8';
  color: var(--cp-red);
  font-weight: bold;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cp-red);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap var(--transition-fast);
}

.product-link:hover {
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .product-card.featured {
    grid-column: span 2;
    flex-direction: row;
  }

  .product-card.featured .product-image {
    width: 45%;
    height: auto;
  }

  .product-card.featured .product-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .product-image {
    height: 240px;
  }

  .product-title {
    font-size: 1.25rem;
  }

  .product-content {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }

  .product-image {
    height: 280px;
  }

  .product-card.featured .product-image {
    height: 100%;
  }

  .product-title {
    font-size: 1.35rem;
  }

  .product-desc {
    font-size: 0.95rem;
  }

  .product-features li {
    font-size: 0.85rem;
  }
}

.services {
  background: var(--cp-charcoal);
  color: var(--cp-white);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.services .section-title {
  color: var(--cp-white);
}

.services .section-desc {
  color: rgba(255, 255, 255, 0.85);
}


.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-card {
  opacity: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  transition: all var(--transition-base);
  position: relative;
  transform: perspective(1000px) rotateY(-5deg);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card.visible {
  opacity: 1;
  transform: perspective(1000px) rotateY(0);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--cp-red);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--cp-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--cp-white);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.service-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services::before {
    top: -40%;
    right: -30%;
    width: 600px;
    height: 600px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .service-card {
    opacity: 0;
    padding: 2rem;
  }

  .service-icon {
    width: 56px;
    height: 56px;
  }

  .service-icon svg {
    width: 26px;
    height: 26px;
  }

  .service-title {
    font-size: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .services::before {
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .service-card {
    opacity: 0;
    padding: 2.5rem;
    transform: perspective(1000px) rotateY(-10deg);
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon svg {
    width: 28px;
    height: 28px;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .service-desc {
    font-size: 0.95rem;
  }
}

.process {
  background: var(--cp-light);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
}

.process-steps::before {
  display: none;
}

.process-step {
  opacity: 0;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 1rem;
  background: transparent;
}

.process-step.visible {
  animation-fill-mode: both;
  opacity: 1;
  transform: translateY(0);
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--cp-white);
  border: 3px solid var(--cp-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cp-red);
  margin: 0 auto 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  background: var(--cp-red);
  color: var(--cp-white);
  transform: scale(1.1);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cp-charcoal);
  margin-bottom: 0.375rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--cp-steel);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .process-step {
    opacity: 0;
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .process-steps {
    flex-wrap: nowrap;
    gap: 2rem;
    margin-top: 3rem;
  }

  .process-steps::before {
    display: block;
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--cp-red), var(--cp-gold), var(--cp-red));
    z-index: 0;
  }

  .process-step {
    opacity: 0;
    flex: 1;
    background: transparent;
    padding: 0;
  }

  .process-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: none;
  }

  .step-number {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    z-index: 1;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .step-desc {
    font-size: 0.9rem;
  }
}

.instagram {
  background: var(--cp-light);
}

.instagram-header {
  text-align: center;
  margin-bottom: 2rem;
}

.instagram-header .section-label {
  justify-content: center;
  color: #E4405F;
}

.instagram-header .section-label::before {
  display: none;
}

.instagram-header .section-label svg {
  color: #E4405F;
  width: 20px;
  height: 20px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(228, 64, 95, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay svg {
  color: white;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.instagram-item:hover .instagram-overlay svg {
  transform: scale(1);
}

.instagram-embed-container {
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.instagram-embed-container iframe {
  width: 100%;
  height: 350px;
}

.instagram-cta {
  text-align: center;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .instagram-header .section-label svg {
    width: 24px;
    height: 24px;
  }

  .instagram-embed-container {
    max-width: 800px;
  }

  .instagram-embed-container iframe {
    height: 450px;
  }

  .instagram-cta {
    margin-top: 2rem;
  }
}

.testimonials {
  background: var(--cp-white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-header .section-label::before {
  display: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.testimonial-card {
  opacity: 0;
  background: var(--cp-light);
  padding: 1.5rem;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.5s ease;
}

.testimonial-card.visible {
  animation-fill-mode: both;
  opacity: 1;
  transform: translateX(0);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--cp-red);
  opacity: 0.2;
  position: absolute;
  top: 0.25rem;
  right: 1rem;
  line-height: 1;
}

.rating {
  color: var(--cp-gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--cp-charcoal);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cp-red);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--cp-charcoal);
  font-size: 0.95rem;
}

.testimonial-company {
  font-size: 0.8rem;
  color: var(--cp-steel);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonial-card {
    opacity: 0;
    padding: 1.75rem;
  }

  .testimonial-card::before {
    font-size: 4.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .testimonial-card {
    opacity: 0;
    padding: 2rem;
  }

  .testimonial-card::before {
    font-size: 5rem;
    top: 0.5rem;
    right: 1.5rem;
  }

  .rating {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .testimonial-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.cta {
  background: var(--cp-black);
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 15s ease-out infinite alternate;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.85), rgba(10, 10, 10, 0.95));
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--cp-white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.cta-actions .btn {
  width: 100%;
  max-width: 300px;
}

@media (min-width: 768px) {
  .cta {
    padding: 4rem 0;
  }

  .cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .cta-desc {
    font-size: 1.15rem;
    margin-bottom: 2rem;
  }

  .cta-actions {
    flex-direction: row;
    gap: 1rem;
  }

  .cta-actions .btn {
    width: auto;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .cta {
    padding: var(--space-xl) 0;
  }

  .cta-content {
    max-width: 800px;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-desc {
    font-size: 1.2rem;
  }
}

.contact {
  background: var(--cp-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(3px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--cp-red);
  color: var(--cp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: rotate(10deg) scale(1.1);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-detail h4 {
  font-weight: 600;
  color: var(--cp-charcoal);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-detail p,
.contact-detail a {
  color: var(--cp-steel);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-detail a:hover {
  color: var(--cp-red);
}

.contact-map {
  margin-top: 1.5rem;
  height: 200px;
  background: var(--cp-light);
  border-radius: 8px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  background: var(--cp-light);
  padding: 1.5rem;
  border-top: 4px solid var(--cp-red);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--cp-charcoal);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group.full {
  grid-column: span 1;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cp-charcoal);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 2px solid transparent;
  background: var(--cp-white);
  font-family: var(--font-body);
  font-size: 16px;
  transition: all var(--transition-fast);
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--cp-red);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

@media (min-width: 768px) {
  .contact-grid {
    gap: 3rem;
  }

  .contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-map {
    height: 220px;
    margin-top: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .form-title {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-group.full {
    grid-column: span 2;
  }

  .form-textarea {
    min-height: 120px;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }

  .contact-item {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-item:hover {
    transform: translateX(5px);
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-detail h4 {
    font-size: 1rem;
  }

  .contact-detail p,
  .contact-detail a {
    font-size: 0.95rem;
  }

  .contact-map {
    height: 250px;
  }

  .contact-form {
    padding: 2.5rem;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .form-label {
    font-size: 0.85rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.875rem 1rem;
  }
}

.footer {
  background: var(--cp-black);
  color: var(--cp-white);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo img {
  height: 50px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--cp-red);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--cp-white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--cp-red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: var(--space-lg) 0 var(--space-md);
  }

  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-brand .logo img {
    height: 55px;
  }

  .footer-desc {
    font-size: 0.95rem;
  }

  .footer-social {
    gap: 1rem;
  }

  .footer-copy {
    font-size: 0.9rem;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 999;
}

.whatsapp-btn {
  width: 52px;
  height: 52px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2s infinite;
  transition: transform var(--transition-fast);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

@keyframes whatsapp-pulse {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .whatsapp-btn {
    width: 56px;
    height: 56px;
  }

  .whatsapp-btn svg {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 1024px) {
  .whatsapp-float {
    bottom: 2rem;
    right: 2rem;
  }

  .whatsapp-btn {
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  .whatsapp-btn svg {
    width: 32px;
    height: 32px;
  }

  @keyframes whatsapp-pulse {

    0%,
    100% {
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
      box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
  }
}

.hover-lift {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(196, 30, 58, 0.3);
}

.hover-rotate:hover img {
  transform: scale(1.05) rotate(2deg);
}

.hover-shine {
  position: relative;
  overflow: hidden;
}

.hover-shine::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.6s ease;
  z-index: 1;
}

.hover-shine:hover::before {
  left: 100%;
}

.hover-glow {
  transition: all 0.4s ease;
}

.hover-glow:hover {
  text-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
}

.magnetic {
  transition: transform 0.2s ease;
}

.parallax {
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 1024px) {
  .parallax {
    background-attachment: fixed;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  animation-fill-mode: both;
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0 !important;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
  opacity: 1 !important;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0 !important;
  visibility: hidden;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
  opacity: 1 !important;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0 !important;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-scale.active {
  opacity: 1 !important;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

.hero-badge-animate {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-subtitle-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-buttons-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cp-charcoal);
}

::-webkit-scrollbar-thumb {
  background: var(--cp-red);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cp-red-light);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--cp-red) var(--cp-charcoal);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes textReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes glow {

  0%,
  100% {
    text-shadow: 0 0 10px rgba(196, 30, 58, 0.5);
  }

  50% {
    text-shadow: 0 0 30px rgba(196, 30, 58, 0.8), 0 0 60px rgba(196, 30, 58, 0.4);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

@keyframes cardFlip {
  0% {
    transform: rotateY(0);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes elastic {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes drawLine {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  animation-fill-mode: both;
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0 !important;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
  opacity: 1 !important;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0 !important;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
  opacity: 1 !important;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0 !important;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-scale.active {
  opacity: 1 !important;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.reveal-rotate {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-rotate.active {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

.hover-lift {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hover-glow {
  transition: all 0.4s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(196, 30, 58, 0.5);
}

.hover-rotate {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-rotate:hover {
  transform: rotate(5deg) scale(1.05);
}

.hover-shine {
  position: relative;
  overflow: hidden;
}

.hover-shine::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.6s ease;
}

.hover-shine:hover::before {
  left: 100%;
}

.hero-title-animate {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards,
    glow 3s ease-in-out infinite 1s;
}

.hero-subtitle-animate {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-badge-animate {
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.6s forwards;
}

.hero-buttons-animate {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number {
  display: inline-block;
}

.stat-number.animate {
  animation: countUp 0.8s ease-out forwards;
}

.product-card {
  opacity: 0;
  transform: translateY(40px);
}

.product-card.visible {
  animation-fill-mode: both;
  animation: fadeInUp 0.6s ease-out both;
}

.product-card:nth-child(1).visible {
  animation-delay: 0.1s;
}

.product-card:nth-child(2).visible {
  animation-delay: 0.2s;
}

.product-card:nth-child(3).visible {
  animation-delay: 0.3s;
}

.product-card:nth-child(4).visible {
  animation-delay: 0.4s;
}

.product-card:nth-child(5).visible {
  animation-delay: 0.5s;
}

.service-card {
  opacity: 0;
  transform: perspective(400px) rotateY(-30deg);
  transition: all 0.6s ease;
}

.service-card.visible {
  animation-fill-mode: both;
  opacity: 1;
  transform: perspective(400px) rotateY(0);
}

.process-step {
  opacity: 0;
  transform: scale(0.8);
}

.process-step.visible {
  animation-fill-mode: both;
  animation: zoomIn 0.5s ease-out both;
}

.process-step:nth-child(1).visible {
  animation-delay: 0.1s;
}

.process-step:nth-child(2).visible {
  animation-delay: 0.2s;
}

.process-step:nth-child(3).visible {
  animation-delay: 0.3s;
}

.process-step:nth-child(4).visible {
  animation-delay: 0.4s;
}

.process-step:nth-child(5).visible {
  animation-delay: 0.5s;
}

.testimonial-card {
  opacity: 0;
  transform: translateX(-50px);
}

.testimonial-card.visible {
  animation-fill-mode: both;
  animation: fadeInRight 0.6s ease-out both;
}

.testimonial-card:nth-child(2).visible {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3).visible {
  animation-delay: 0.4s;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(196, 30, 58, 0.2);
  border-top-color: #C41E3A;
  border-radius: 50%;
  animation: rotate 0.8s linear infinite;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: #C41E3A;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.pulse-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.pulse-dot:nth-child(3) {
  animation-delay: 0.4s;
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

.glitch:hover {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  color: #C41E3A;
}

.magnetic {
  transition: transform 0.3s ease;
}

.scroll-indicator {
  animation: bounce 2s infinite;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-rotate,
  .product-card,
  .service-card,
  .process-step,
  .testimonial-card {
    opacity: 0;
    opacity: 1;
    transform: none;
  }
}

.nav-links a {
  color: var(--cp-white);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  outline: none;
  border: none;
  background: transparent;
  text-decoration: none;
}

.nav-links a:focus {
  outline: none;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--cp-red);
  outline-offset: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cp-red);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--cp-red);
  transform: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  transition: all 0.3s ease;
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--cp-white);
  outline-offset: 3px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 100%);
  transition: left 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--cp-red);
  color: var(--cp-white);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.2);
}

.btn-primary:hover {
  background: var(--cp-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--cp-white);
  border: 2px solid var(--cp-white);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--cp-white);
  color: var(--cp-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.process-step {
  opacity: 0;
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  border: none;
  outline: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--cp-white);
  border: 3px solid var(--cp-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cp-red);
  margin: 0 auto 1.5rem;
  position: relative;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
  box-shadow: none;
  outline: none;
}

.step-number::before,
.step-number::after {
  display: none !important;
  content: none !important;
}

.process-step:hover .step-number {
  background: var(--cp-red);
  color: var(--cp-white);
  transform: scale(1.08);
  box-shadow: none;
  border-color: var(--cp-red);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cp-charcoal);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.process-step:hover .step-title {
  color: var(--cp-red);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--cp-steel);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.nav-links a.nav-glow:hover {
  text-shadow: 0 0 20px rgba(196, 30, 58, 0.4);
}

.process-step.glow:hover .step-number {
  box-shadow: 0 0 0 8px rgba(196, 30, 58, 0.1);
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

.footer-links a:hover {
  color: var(--cp-red);
  transform: translateX(3px);
}

.footer-links a:focus-visible {
  outline: 1px solid var(--cp-red);
  outline-offset: 2px;
}

.contact-detail a {
  color: var(--cp-steel);
  transition: color 0.3s ease;
  text-decoration: none;
  outline: none;
}

.contact-detail a:hover {
  color: var(--cp-red);
}

.contact-detail a:focus-visible {
  outline: 1px solid var(--cp-red);
  outline-offset: 2px;
}

.phone-link {
  color: var(--cp-white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  text-decoration: none;
  outline: none;
}

.phone-link:hover {
  color: var(--cp-red);
}

.phone-link:focus-visible {
  outline: 1px solid var(--cp-red);
  outline-offset: 2px;
}

.product-card {
  opacity: 0;
  background: var(--cp-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--cp-red);
}

.service-card {
  opacity: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--cp-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(196, 30, 58, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card {
  opacity: 0;
  background: var(--cp-light);
  padding: 2rem;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.sustain-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sustain-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  text-decoration: none;
  outline: none;
}

.footer-social a:hover {
  background: var(--cp-red);
  transform: translateY(-3px);
}

.footer-social a:focus-visible {
  outline: 2px solid var(--cp-red);
  outline-offset: 2px;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
  text-decoration: none;
  outline: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 3px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid transparent;
  background: var(--cp-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(196, 30, 58, 0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cp-red);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.contact-form {
  background: var(--cp-light);
  padding: 2.5rem;
  border-top: 4px solid var(--cp-red);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

a:hover,
button:hover,
[role="button"]:hover {
  outline: none;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--cp-red);
  outline-offset: 3px;
}

.no-shadow-hover:hover {
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .process-step:hover {
    transform: translateY(-4px);
  }

  .process-step:hover .step-number {
    transform: scale(1.05);
  }

  .btn-primary:hover,
  .btn-outline:hover {
    transform: translateY(-1px);
  }

  .product-card:hover,
  .service-card:hover,
  .sustain-card:hover,
  .testimonial-card:hover {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {

  .btn,
  .btn::before,
  .nav-links a,
  .nav-links a::after,
  .step-number,
  .process-step,
  .product-card,
  .service-card,
  .testimonial-card,
  .sustain-card,
  .footer-links a,
  .contact-form,
  .whatsapp-btn {
    transition: none !important;
    animation: none !important;
  }

  .btn:hover,
  .process-step:hover,
  .product-card:hover,
  .service-card:hover {
    transform: none !important;
  }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cp-white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  position: relative;
}

.mobile-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex !important;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    width: 100%;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    animation: fadeIn 0.3s ease;
  }

  body.menu-open {
    overflow: hidden;
  }
}

.nav-links a {
  position: relative;
  transition: color 0.3s ease;
  outline: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cp-red);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--cp-red);
}

.nav-links a:hover,
.nav-links a:focus {
  outline: none;
  box-shadow: none;
  background: none;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--cp-red);
  outline-offset: 4px;
}

.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::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.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn-outline:hover {
  background: var(--cp-white);
  color: var(--cp-black);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.process-step {
  opacity: 0;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
}

.step-number {
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  background: var(--cp-red);
  color: var(--cp-white);
  transform: scale(1.08);
}

.step-number::before,
.step-number::after {
  display: none;
}

@media (max-width: 767px) {

  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .container {
    padding: 0 0.875rem;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    height: auto;
    display: block;
    padding-bottom: 0;
  }

  .hero-content {
    padding: 5rem 0.5rem 2rem;
    text-align: center;
    width: 100%;
  }

  .hero-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
  }

  .hero-title .accent {
    font-size: 1.25rem;
    display: block;
    margin-top: 0.25rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.85rem;
  }

  .hero-stats {
    padding: 1.5rem 0;
    position: relative !important;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 1)) !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .hero-stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.75rem;
  }

  .stat-item {
    padding: 0.75rem 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .stat-item::after {
    display: none;
  }

  .stat-number-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-suffix {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.65rem;
    line-height: 1.3;
    margin-top: 0.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image img {
    height: 280px;
    clip-path: none;
    border-radius: 8px;
  }

  .about-image::before {
    display: none;
  }

  .about::before {
    width: 150px;
    height: 150px;
    opacity: 0.02;
  }

  .sustainability-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sustain-number {
    font-size: 2.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-template-columns: 1fr;
  }

  .product-card.featured .product-image {
    height: 200px;
  }

  .product-image {
    height: 220px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    gap: 1rem;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    opacity: 0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .process-step:hover {
    box-shadow: none;
    transform: none;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    margin: 0;
    flex-shrink: 0;
    border-width: 2px;
  }

  .step-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .step-desc {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .instagram-embed-container iframe {
    height: 350px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 390px) {

  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    display: block;
    padding-bottom: 0;
  }

  .hero-content {
    padding: 4.5rem 0.25rem 1.5rem;
  }

  .hero-title {
    font-size: 1.35rem;
    line-height: 1.25;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-title .accent {
    font-size: 1.1rem;
    display: block;
    margin-top: 0.25rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    padding: 0 0.25rem;
  }

  .hero-actions {
    gap: 0.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 260px;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .hero-stats {
    position: relative !important;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 1)) !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .hero-stats .container {
    gap: 0.5rem;
  }

  .stat-item {
    padding: 0.5rem 0.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-suffix {
    font-size: 0.875rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  .product-image {
    height: 180px;
  }

  .contact-form {
    padding: 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 16px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .hero {
    display: block;
    height: auto;
    min-height: auto;
  }

  .hero-content {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-stats {
    position: relative !important;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 1)) !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    padding: 2rem 0;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-card.featured {
    grid-column: span 3;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    display: block;
    height: auto;
    min-height: auto;
  }

  .hero-content {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    position: relative !important;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 1)) !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    padding: 2rem 0;
  }

  .hero-stats .container {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 350px;
  }

  .sustainability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sustain-card:last-child {
    grid-column: span 2;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card.featured {
    grid-column: span 2;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1.5rem;
  }

  .process-step {
    opacity: 0;
    flex: 1 1 calc(50% - 1rem);
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 1rem;
  }

  .process-step:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }

  .step-number {
    margin: 0 auto 0.75rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card:last-child {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    flex-direction: row;
    padding: 0;
  }

  .nav-cta {
    display: flex;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }

  .container {
    max-width: 1200px;
  }
}

.process-step {
  opacity: 0;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.process-step:hover {
  box-shadow: none !important;
  background: transparent !important;
}

@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .mobile-toggle span {
    transition: none;
  }
}

@media (pointer: coarse) {

  .btn,
  .nav-links a,
  .footer-links a,
  .product-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.navbar-logo-img {
  height: 55px;
  filter: brightness(0) invert(1);
}

.section-label-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.mt-2rem {
  margin-top: 2rem;
}

.iframe-embed {
  border: 0;
  border-radius: 8px;
  background: white;
}

.footer-logo-img {
  height: 60px;
}

.map-iframe {
  border: 0;
  border-radius: 8px;
}

.mr-05 {
  margin-right: 0.5rem;
}

.mb-1rem {
  margin-bottom: 1rem;
}

/* ============================================ */
/* RESPONSIVE FIXES */
/* ============================================ */
@media (max-width: 480px) {

  /* Fix Instagram Title Overflow */
  .section-title.text-center {
    font-size: 1.3rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {

  /* Fix Hero Section Spacing on Mobile */
  .hero-content {
    padding-top: 8rem;
    /* More space for fixed navbar */
    padding-bottom: 6rem;
  }

  .hero-title {
    font-size: 2.2rem;
    /* Reduce size slightly */
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  /* Reduce overlay opacity slightly for better text legibility if needed, 
     but user complained about "how it looks", possibly contrast/clutter. 
     Let's increase the top gradient opacity */
  .hero-overlay {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(196, 30, 58, 0.5) 50%, rgba(10, 10, 10, 0.95) 100%);
  }

  /* Adjust badge */
  .hero-badge {
    margin-top: 1rem;
    font-size: 0.7rem;
  }
}
/* --- New Components for Content Enrichment --- */

/* Characteristics Grid */
.characteristics {
  padding: var(--space-xl) 0;
  background: var(--cp-light);
}

.characteristics-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.char-card {
  flex: 1 1 22%;
  min-width: 250px;
  background: var(--cp-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border-bottom: 4px solid transparent;
}


.char-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--cp-red);
}

.char-icon {
  width: 60px;
  height: 60px;
  background: rgba(196, 30, 58, 0.1);
  color: var(--cp-red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.char-icon svg {
  width: 30px;
  height: 30px;
}

.char-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--cp-black);
}

.char-desc {
  font-size: 0.95rem;
  color: var(--cp-steel);
  line-height: 1.6;
}

/* Infinite Logo Marquee */
.clients-section {
  padding: 5rem 0;
  background: var(--cp-white);
  overflow: hidden;
  border-top: 1px solid var(--cp-light);
  border-bottom: 1px solid var(--cp-light);
}

.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 100px;
  overflow-x: hidden;
}

.marquee-content {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
}

.logo-item img {
  max-width: 100%;
  max-height: 50px;
  filter: grayscale(100%) opacity(0.6);
  transition: all var(--transition-fast);
}

.logo-item img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Testimonial Carousel */
.testimonials-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.testimonials-marquee {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: testimonials-scroll 60s linear infinite;
}

.testimonials-marquee:hover {
  animation-play-state: paused;
}

.testimonials-marquee .testimonial-card {
  width: 400px;
  flex-shrink: 0;
}

@keyframes testimonials-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* Service Enhancement */
.service-tech-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.service-tech-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}


.service-tech-item svg {
  color: var(--cp-red);
  flex-shrink: 0;
}

/* Recruitment CTA */
.recruitment-box {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cp-black);
  color: var(--cp-white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.recruitment-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.recruitment-box p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}

@media (min-width: 768px) {
  .recruitment-box {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

/* ============================================ */
/* PRODUCT PAGES STYLES - RESPONSIVE FIXES */
/* ============================================ */

.hero-product-page {
    min-height: 55vh !important;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Specific adjustments for mobile font sizes in product pages */
@media (max-width: 768px) {
    .hero-product-page .hero-title {
        font-size: 2.2rem !important;
        padding-top: 2rem;
    }
    
    .hero-product-page .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
}

/* Feature Grid for specific product details (Text + Sidebar Images) */
.product-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 992px) {
    .product-feature-grid {
        grid-template-columns: 1fr 400px;
        gap: 3rem;
    }
}

/* General Image Responsiveness for Product Pages */
.about-image img, 
.product-feature-grid img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .about-content {
        text-align: center;
    }
    
    .features-list {
        text-align: left;
        display: inline-block;
    }
    
    .about-grid .about-image {
        order: -1; /* Image first on mobile */
    }
}

/* ==========================================================================
   Interactive Hotspots
   ========================================================================== */
.hotspots-section {
    padding: 80px 0;
    background: #f8fafc;
}

.hotspots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.hotspot-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #fff;
}

.hotspot-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #e11d48; /* CP Red */
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.2);
}

.hotspot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: hotspot-pulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

.hotspot i {
    color: white;
    font-size: 10px;
    position: relative;
    z-index: 2;
}

@keyframes hotspot-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hotspot-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 240px;
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    text-align: left;
    pointer-events: none;
}

.hotspot-tooltip strong {
    display: block;
    color: #fca5a5;
    margin-bottom: 4px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotspot:hover {
    z-index: 200;
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: rgba(15, 23, 42, 0.95) transparent transparent transparent;
}

/* Tooltip position adjustments for edges */
.hotspot.on-left .hotspot-tooltip {
    left: 0;
    transform: translateX(0) translateY(10px);
}
.hotspot.on-left:hover .hotspot-tooltip {
    transform: translateX(0) translateY(0);
}
.hotspot.on-left .hotspot-tooltip::after {
    left: 12px;
}

.hotspot.on-right .hotspot-tooltip {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(10px);
}
.hotspot.on-right:hover .hotspot-tooltip {
    transform: translateX(0) translateY(0);
}
.hotspot.on-right .hotspot-tooltip::after {
    left: auto;
    right: 12px;
}

.hotspot.on-top .hotspot-tooltip {
    bottom: auto;
    top: calc(100% + 15px);
    transform: translateX(-50%) translateY(-10px);
}
.hotspot.on-top:hover .hotspot-tooltip {
    transform: translateX(-50%) translateY(0);
}
.hotspot.on-top .hotspot-tooltip::after {
    top: auto;
    bottom: 100%;
    border-color: transparent transparent rgba(15, 23, 42, 0.95) transparent;
}

@media (max-width: 991px) {
    .hotspots-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hotspots-section {
        padding: 40px 0;
    }
    .hotspot-tooltip {
        width: 180px;
        font-size: 12px;
        padding: 10px;
    }
    .hotspot {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================================================
   Accessory Showroom (Carousel Version)
   ========================================================================== */
.accessories-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(225, 29, 72, 0.03), transparent),
                radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.03), transparent),
                #ffffff;
    position: relative;
    overflow: hidden;
}

.accessories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.accessories-slider-container {
    position: relative;
    margin-top: 50px;
    padding: 20px 0 60px;
}

.accessories-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.accessories-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.accessory-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.accessory-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(225, 29, 72, 0.2);
}

.accessory-image-wrapper {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.accessory-image-wrapper::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.05) 0%, transparent 70%);
    z-index: 0;
    transition: all 0.5s ease;
}

.accessory-card:hover .accessory-image-wrapper::after {
    transform: scale(1.5);
    background: radial-gradient(circle, rgba(225, 29, 72, 0.1) 0%, transparent 70%);
}

.accessory-image-wrapper img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.accessory-card:hover .accessory-image-wrapper img {
    transform: scale(1.1) rotate(-3deg);
}

.accessory-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.accessory-btn {
    background: #0f172a;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
    text-decoration: none;
    margin-top: auto;
    border: 1px solid transparent;
}

.accessory-card:hover .accessory-btn {
    background: var(--cp-red);
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.25);
}

/* Custom Scroll Indicator */
.slider-controls {
    display: contents; /* Allows absolute positioning of children relative to the container */
}

.slider-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 20;
}

.slider-arrow:hover {
    background: var(--cp-red);
    color: #ffffff;
    border-color: var(--cp-red);
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.3);
}

.slider-arrow::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2.5px solid currentColor;
    border-right: 2.5px solid currentColor;
    position: absolute;
}

.slider-arrow.prev::before {
    transform: rotate(-135deg);
    left: 21px;
}

.slider-arrow.next::before {
    transform: rotate(45deg);
    right: 21px;
}

.slider-arrow.prev {
    left: -15px;
}

.slider-arrow.next {
    right: -15px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.nav-dot.active {
    width: 32px;
    background: var(--cp-red);
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.3);
}

@media (max-width: 1200px) {
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
}

@media (max-width: 767px) {
    .slider-arrow {
        display: none; /* Hide arrows on mobile, rely on touch scroll */
    }
}

/* Floating Badges */
.accessory-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .accessories-section {
        padding: 70px 0;
    }
    .accessory-card {
        flex: 0 0 280px;
        padding: 30px 20px;
    }
}

/* ============================================ */
/* PRODUCT PAGES STYLES - RESPONSIVE FIXES */
/* ============================================ */

.hero-product-page {
    min-height: 55vh !important;
}

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

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Specific adjustments for mobile font sizes in product pages */
@media (max-width: 768px) {
    .hero-product-page .hero-title {
        font-size: 2.2rem !important;
    }
    .hero-product-page .hero-subtitle {
        font-size: 1.1rem !important;
    }
    .about-content {
        text-align: center;
    }
    .about-grid .about-image {
        order: -1; /* Image first on mobile */
    }
}

/* FIX FOR WORDPRESS ADMIN BAR EDGE BLEED */
.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .navbar { top: 46px; } }


/* BLOG STYLES */
.blog-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: var(--cp-black);
  text-align: center;
  color: var(--cp-white);
}

.blog-hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .blog-hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
  .blog-hero-title {
    font-size: 3.5rem;
  }
}

.blog-section {
  padding: 4rem 0;
  background: var(--cp-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

.blog-card {
  background: var(--cp-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.blog-card-thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.blog-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date {
  font-size: 0.85rem;
  color: var(--cp-steel);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--cp-charcoal);
  line-height: 1.4;
}

.blog-card-title a {
  transition: color var(--transition-fast);
}

.blog-card-title a:hover {
  color: var(--cp-red);
}

.blog-card-excerpt {
  color: var(--cp-steel);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-card-btn {
  align-self: flex-start;
  color: var(--cp-red);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-fast);
}

.blog-card-btn::after {
  content: '\25B8';
  font-size: 1.2em;
}

.blog-card-btn:hover {
  gap: 0.75rem;
  color: var(--cp-red-dark);
}

.blog-pagination {
  margin-top: 3rem;
}

.blog-pagination .nav-links {
  position: static;
  width: auto;
  height: auto;
  background: transparent;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  background: var(--cp-white);
  color: var(--cp-charcoal);
  font-weight: 600;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--cp-red);
  color: var(--cp-white);
}

/* SINGLE POST STYLES */
.single-post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.single-post-thumbnail {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.single-post-thumbnail img {
  width: 100%;
  height: auto;
}

.single-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--cp-charcoal);
}

.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4,
.single-post-content h5,
.single-post-content h6 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--cp-charcoal);
}

.single-post-content p {
  margin-bottom: 1.5rem;
}

.single-post-content ul,
.single-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.single-post-content li {
  margin-bottom: 0.5rem;
}

.single-post-content a {
  color: var(--cp-red);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition-fast);
}

.single-post-content a:hover {
  text-decoration-color: var(--cp-red);
}

.single-post-content img {
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.single-post-content blockquote {
  border-left: 4px solid var(--cp-red);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--cp-light);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cp-steel);
}


/* ============================================ */
/* BLOG STYLES */
/* ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-title a {
    color: var(--cp-black);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--cp-red);
}

.blog-excerpt {
    color: var(--cp-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-excerpt p {
    margin-bottom: 0;
}

.blog-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.blog-pagination a,
.blog-pagination span {
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    color: var(--cp-black);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.blog-pagination span.current,
.blog-pagination a:hover {
    background: var(--cp-red);
    color: white;
}

/* Single Post Styles */
.blog-single-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-single-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
}

.blog-single-content p {
    margin-bottom: 1.5rem;
}

.blog-single-content h2,
.blog-single-content h3 {
    color: var(--cp-black);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

.blog-single-content ul,
.blog-single-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-single-content li {
    margin-bottom: 0.5rem;
}

.blog-single-nav {
    display: flex;
    justify-content: space-between;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.blog-single-nav a {
    color: var(--cp-red);
    font-weight: 600;
    text-decoration: none;
}

.blog-single-nav a:hover {
    text-decoration: underline;
}

/* V33 MOBILE FIXES */
.navbar {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  transition: all var(--transition-base);
}

.navbar.scrolled::before {
  background: rgba(10, 10, 10, 0.98);
}

/* FIX FOR 1PX BORDER GAP ON NAVBAR */
.navbar {
  border-top: none !important;
}

/* Dropdown menu styles */
.nav-links .dropdown {
  position: relative;
}
.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  list-style: none;
  border-radius: 4px;
  z-index: 1000;
  border-top: 3px solid var(--cp-red);
}
.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu {
  display: block;
}
.nav-links .dropdown-menu li {
  width: 100%;
  border-bottom: 1px solid #f1f5f9;
}
.nav-links .dropdown-menu li:last-child {
  border-bottom: none;
}
.nav-links .dropdown-menu a {
  padding: 0.8rem 1.5rem !important;
  color: #334155 !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  display: block !important;
  transition: all 0.3s ease !important;
}
.nav-links .dropdown-menu a::after {
  display: none !important;
}
.nav-links .dropdown-menu a:hover {
  background: #f8f9fa !important;
  color: var(--cp-red) !important;
  padding-left: 1.8rem !important;
}

@media (max-width: 991px) {
  .nav-links .dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    background: rgba(255, 255, 255, 0.03);
    padding-left: 1rem;
    display: block !important;
  }
  .nav-links .dropdown-menu a {
    color: #e2e8f0 !important;
    padding: 0.8rem 1rem !important;
  }
  .nav-links .dropdown-menu a:hover {
    background: transparent !important;
    padding-left: 1.2rem !important;
  }
}
