/* ================================
   HEADER & NAVIGATION
   ================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
  transition: all var(--transition-base);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 1);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(245, 166, 35, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: var(--spacing-md);
}

.site-branding {
  flex-shrink: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.site-logo:hover {
  transform: translateY(-2px);
}

.site-logo .logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(245, 166, 35, 0.4));
}

.site-logo .logo-text {
  font-size: 1.25rem;
  color: var(--color-white);
  line-height: 1;
}

.site-logo .logo-text strong {
  color: var(--color-accent);
  font-weight: 900;
}

/* Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu-item a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  transition: all var(--transition-base);
  position: relative;
  border-radius: 0.5rem;
}

.menu-item a:hover,
.menu-item.current-menu-item a {
  color: var(--color-accent);
  background: rgba(245, 166, 35, 0.1);
}

.menu-item a::after {
  display: none;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.header-phone .phone-icon {
  font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

@media (max-width: 1023px) {
  .header-inner {
    padding: 0.75rem 0;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    max-width: 85%;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg) 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 5rem var(--spacing-lg) var(--spacing-lg);
    gap: 0;
    transition: right var(--transition-slow);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 999;
  }

  .main-nav.active {
    right: 0;
  }

  .menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .menu-item {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .menu-item:last-child {
    border-bottom: none;
  }

  .menu-item a {
    display: block;
    padding: 1rem 0;
    border-radius: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-phone .phone-number {
    display: none;
  }

  .header-phone .phone-icon {
    font-size: 1.3rem;
  }
}

/* ================================
   HERO SECTION — WIDE SPLIT LAYOUT
   ================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #060606 0%, #0d0d0d 45%, #111007 100%);
  overflow: hidden;
  padding: 110px 0 100px;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  margin-bottom: -4vw;
}

/* Industrial dot grid pattern */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(245, 166, 35, 0.18) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  z-index: 0;
}

/* Ambient glow blobs */
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.22) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  animation: glowFloat1 8s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
  bottom: -80px;
  left: -120px;
  animation: glowFloat2 10s ease-in-out infinite alternate;
}
@keyframes glowFloat1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-30px, 30px) scale(1.1); }
}
@keyframes glowFloat2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, -20px) scale(1.08); }
}

/* Vertical accent bar on the right edge (RTL: right = start) */
.hero-accent-bar {
  position: absolute;
  top: 15%;
  right: 0;
  width: 5px;
  height: 70%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--color-accent) 30%,
    var(--color-accent-light) 70%,
    transparent 100%
  );
  border-radius: 4px 0 0 4px;
  z-index: 2;
  opacity: 0.7;
  animation: barPulse 4s ease-in-out infinite;
}
@keyframes barPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* ===== Wide grid container ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* ===== Text column ===== */
.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  animation: fadeInRight 0.6s ease 0.1s both;
}
.eyebrow-pulse {
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: eyebrowPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6);
}
@keyframes eyebrowPulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(245, 166, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}

.hero-title {
  color: var(--color-white);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  animation: fadeInRight 0.6s ease 0.25s both;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
  border-radius: 2px;
  animation: accentGlow 2s ease-in-out infinite;
}

@keyframes accentGlow {
  0%, 100% { opacity: 0.4; transform: scaleX(0.7); }
  50%       { opacity: 1;   transform: scaleX(1); }
}

.hero-title-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65em;
  letter-spacing: 0.08em;
  font-weight: 400;
  display: block;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  animation: fadeInRight 0.6s ease 0.4s both;
}

/* CTA buttons */
.hero-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInRight 0.6s ease 0.55s both;
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-cta .btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(245, 166, 35, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-cta .btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.55s, height 0.55s;
}
.hero-cta .btn:hover::before { width: 320px; height: 320px; }
.hero-cta .btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5), 0 6px 18px rgba(245, 166, 35, 0.45);
}
.hero-cta .btn:active { transform: translateY(-2px) scale(1.01); }

/* Trust pills */
.hero-trust-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  animation: fadeInRight 0.6s ease 0.7s both;
}
.trust-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  backdrop-filter: blur(8px);
  transition: all 0.25s;
}
.trust-pill:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.45);
  color: var(--color-accent-light);
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== Visual column ===== */
.hero-visual-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInLeft 0.7s ease 0.3s both;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Big decorative recycling symbol */
.hero-big-icon {
  font-size: 8rem;
  line-height: 1;
  color: rgba(245, 166, 35, 0.12);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: iconSpin 30s linear infinite;
  z-index: 0;
  font-family: sans-serif;
}
@keyframes iconSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Service mini-cards */
.hero-svc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 1rem;
  padding: 1.1rem 0.8rem;
  backdrop-filter: blur(10px);
  text-align: center;
  cursor: default;
  opacity: 0;
  animation: svcCardIn 0.5s ease var(--delay, 0.1s) forwards;
  transition: all 0.3s ease;
}
.hero-svc-card:last-child {
  grid-column: 1 / -1; /* span full width for odd card */
}
.hero-svc-card:hover {
  background: rgba(245, 166, 35, 0.08);
  border-color: rgba(245, 166, 35, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 15px rgba(245, 166, 35, 0.15);
}
@keyframes svcCardIn {
  from { opacity: 0; transform: scale(0.85) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.svc-emoji  { font-size: 2rem; line-height: 1; }
.svc-label  {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Bottom diagonal shape */
.hero-bottom-shape {
  display: none; /* handled by clip-path on .hero-section */
}

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .hero-section {
    clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
    padding: 100px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }

  .hero-visual-col {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-big-icon { display: none; }

  .hero-svc-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-svc-card:last-child {
    grid-column: auto;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }
}

@media (max-width: 600px) {
  .hero-svc-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-svc-card:last-child {
    grid-column: 1 / -1;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn { width: 100%; }
}

/* ================================
   STATS BAR
   ================================ */

.stats-bar {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 50%, var(--color-accent-light) 100%);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.03) 10px,
      rgba(255, 255, 255, 0.03) 20px
    );
  animation: statsMove 20s linear infinite;
}

@keyframes statsMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(28px); }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: var(--spacing-sm);
  transition: transform var(--transition-base);
}

.stat-item:hover {
  transform: scale(1.08);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #111;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-base);
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* ================================
   SERVICE CARDS
   ================================ */

.services-section {
  position: relative;
  background: 
    radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      rgba(45, 45, 45, 0.3) 0px,
      transparent 1px,
      transparent 40px,
      rgba(45, 45, 45, 0.3) 41px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(45, 45, 45, 0.3) 0px,
      transparent 1px,
      transparent 40px,
      rgba(45, 45, 45, 0.3) 41px
    ),
    var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  border-radius: 1rem;
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-base);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(245, 166, 35, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card:hover::before {
  opacity: 0.15;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
  filter: grayscale(0%) drop-shadow(0 0 10px rgba(245, 166, 35, 0.5));
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: grayscale(20%);
  transition: all var(--transition-base);
  display: inline-block;
}

.service-card h3 {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* Force service cards visible — JS animation is enhancement only */
.services-grid .service-card,
.services-section .service-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* ================================
   FEATURES / WHY CHOOSE US
   ================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  text-align: center;
  padding: var(--spacing-md);
  background: 
    linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(30, 30, 30, 0.5) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(245, 166, 35, 0.03),
      rgba(245, 166, 35, 0.03) 10px,
      transparent 10px,
      transparent 20px
    );
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 166, 35, 0.2) 50%, transparent 100%);
  transition: right 0.6s ease;
}

.feature-item:hover::before {
  right: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(245, 166, 35, 0.3));
  transition: all var(--transition-base);
  display: inline-block;
}

.feature-item:hover .feature-icon {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 0 15px rgba(245, 166, 35, 0.6));
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
  transition: color var(--transition-base);
}

.feature-item:hover h3 {
  color: var(--color-accent);
}

.feature-item p {
  color: var(--color-text-muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* ================================
   PROCESS / HOW IT WORKS
   ================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid::before {
    content: '';
    position: absolute;
    top: 2rem;
    right: 15%;
    left: 15%;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--color-accent) 0%,
      var(--color-accent) 33%,
      var(--color-border) 33%,
      var(--color-accent) 66%,
      var(--color-border) 66%,
      var(--color-accent) 100%
    );
    z-index: 0;
  }
}

.process-step {
  text-align: center;
  position: relative;
  padding: var(--spacing-md);
  z-index: 1;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  color: #111;
  font-size: 2rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 
    0 4px 12px rgba(245, 166, 35, 0.4),
    0 0 0 8px rgba(245, 166, 35, 0.1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-base);
  position: relative;
}

.process-step:hover .step-number {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 
    0 6px 20px rgba(245, 166, 35, 0.6),
    0 0 0 12px rgba(245, 166, 35, 0.15),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-white);
  transition: color var(--transition-base);
}

.process-step:hover h3 {
  color: var(--color-accent);
}

.process-step p {
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ================================
   TESTIMONIALS
   ================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: var(--spacing-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: var(--color-accent);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(245, 166, 35, 0.15);
  border-color: var(--color-accent);
}

.testimonial-card:hover::after {
  transform: scaleX(1);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-name {
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.testimonial-location {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 2px rgba(245, 166, 35, 0.5));
}

/* ================================
   CTA BANNER
   ================================ */

.cta-banner {
  background: 
    linear-gradient(135deg, #D4891A 0%, var(--color-accent) 50%, #FBBE5E 100%),
    url('data:image/svg+xml,%3Csvg width="80" height="80" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0L40 40L0 80M40 0L80 40L40 80M80 0L40 40L80 80M40 0L0 40L40 80" stroke="rgba(0,0,0,0.1)" stroke-width="2" fill="none"/%3E%3C/svg%3E');
  background-blend-mode: overlay;
  padding: var(--spacing-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.05) 30px,
      rgba(255, 255, 255, 0.05) 60px
    );
  animation: ctaMove 30s linear infinite;
}

@keyframes ctaMove {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(56px) translateY(28px); }
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.cta-content h2 {
  color: #111;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.cta-content p {
  color: #1a1a1a;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  background: #111;
  color: var(--color-accent);
  border: 2px solid #111;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn:hover {
  background: #000;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cta-buttons .btn-whatsapp {
  background: var(--color-success);
  color: white;
  border-color: var(--color-success);
}

.cta-buttons .btn-whatsapp:hover {
  background: #1ebe5d;
}

.cta-banner h2 {
  color: #111;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #1a1a1a;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner .btn {
  background: #111;
  color: var(--color-white);
}

.cta-banner .btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.cta-banner .btn-whatsapp {
  background: var(--color-success);
  color: var(--color-white);
}

.cta-banner .btn-whatsapp:hover {
  background: #1ebe5d;
}

/* ================================
   FOOTER
   ================================ */

.site-footer {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
}

.footer-top {
  padding: var(--spacing-2xl) 0;
  position: relative;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-xl);
}

.footer-widget {
  padding: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--spacing-md);
}

.footer-logo .logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(245, 166, 35, 0.4));
}

.footer-logo .logo-text {
  font-size: 1.2rem;
  color: var(--color-white);
  line-height: 1;
}

.footer-logo .logo-text strong {
  color: var(--color-accent);
  font-weight: 900;
}

.footer-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--spacing-md);
}

.footer-highlights span {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-widget-title {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
}

.footer-widget p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.6rem;
}

.footer-menu a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-menu a:hover {
  color: var(--color-accent);
  transform: translateX(-4px);
}

.footer-menu a::before {
  content: '→';
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.footer-menu a:hover::before {
  opacity: 1;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-contact .contact-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
}

.footer-contact a {
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--color-border);
  padding: var(--spacing-md) 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.footer-copyright {
  color: var(--color-text-faint);
  font-size: 0.85rem;
  margin: 0;
}

.footer-copyright strong {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all var(--transition-base);
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.social-link.whatsapp:hover {
  border-color: var(--color-success);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 767px) {
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ================================
   WHATSAPP FLOATING BUTTON
   ================================ */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 20px rgba(37, 211, 102, 0.5),
    0 0 0 0 rgba(37, 211, 102, 0.7);
  transition: all var(--transition-base);
  animation: whatsappPulse 2s ease-in-out infinite;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--color-success);
  border-radius: 50%;
  opacity: 0;
  animation: whatsappRing 2s ease-in-out infinite;
}

.whatsapp-float::after {
  content: '💬';
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff0000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  animation: whatsappBadge 1.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 
    0 6px 30px rgba(37, 211, 102, 0.7),
    0 0 0 8px rgba(37, 211, 102, 0.2);
}

.whatsapp-float:hover::before {
  animation: none;
  opacity: 1;
  transform: scale(1.2);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform var(--transition-base);
}

.whatsapp-float:hover svg {
  transform: scale(1.1);
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 
      0 4px 20px rgba(37, 211, 102, 0.5),
      0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 
      0 6px 30px rgba(37, 211, 102, 0.7),
      0 0 0 15px rgba(37, 211, 102, 0);
  }
}

@keyframes whatsappRing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes whatsappBadge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 1.5rem;
    left: 1.5rem;
    width: 3rem;
    height: 3rem;
  }
  
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  
  .whatsapp-float::after {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }
}
