@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES (LIGHT SYSTEM) --- */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #fbfbfb;
  --bg-card: #ffffff;
  --accent: #ff6b2c;
  --accent-rgb: 255, 107, 44;
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-glow: rgba(255, 107, 44, 0.15);
  --grid-line: rgba(0, 0, 0, 0.12); /* Increased contrast to make grid lines pop */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --header-height: 80px;
}

/* --- RESET & GLOBAL STYLE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* --- BACKGROUND GRID --- */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: 
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 7.5vw, 6.2rem);
  font-weight: 800;
  color: var(--text-primary);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* --- REUSABLE UTILITIES & LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

section {
  padding: 8rem 0;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

/* Buttons (Capsule Type) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 9999px; /* Capsule */
  position: relative;
  border: none;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--accent);
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: #000000;
  background-color: rgba(0, 0, 0, 0.02);
}

/* Badge (As shown in screenshot) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- HEADER --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
  background-color: var(--bg-primary);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  height: 70px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #000000;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--accent);
  margin-left: 0.2rem;
}

nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

nav ul li a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

nav ul li a:hover {
  color: #000000;
}

nav ul li.active a {
  color: #000000;
  font-weight: 600;
}

nav ul li.active a::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    padding: 3rem;
    z-index: 999;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 2rem;
  }

  nav ul li a {
    font-size: 1.5rem;
  }

  header.scrolled nav {
    top: 70px;
    height: calc(100vh - 70px);
  }
}

/* --- FOOTER --- */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-info .logo {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.footer-info p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  background-color: rgba(255, 107, 44, 0.05);
}

.footer-links h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links ul li a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: var(--accent);
}

.footer-contact h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.hero-content {
  z-index: 10;
}

.hero-title {
  font-size: clamp(3.8rem, 8.5vw, 6.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--text-primary);
  margin-bottom: 3rem;
  text-transform: none;
}

.hero-title span {
  color: var(--accent);
}

.hero-title.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-title.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Editorial Split Columns under Title */
.hero-details-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .hero-details-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Left Sub-column: Poetic short subtext */
.hero-sub-left.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-sub-left.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.hero-subtext-poetic {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 500;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

/* Right Sub-column: Detailed paragraph and CTA buttons */
.hero-sub-right.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-sub-right.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-subtext-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
}

/* Hero Pill & Link Buttons */
.hero-buttons-container {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.hero-btn-pill-black {
  display: inline-flex;
  align-items: center;
  background-color: #000000;
  color: #ffffff;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.hero-btn-pill-black:hover {
  background-color: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.2);
}

.hero-btn-link-discover {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.hero-btn-link-discover:hover {
  color: var(--accent);
}

.hero-btn-line {
  display: inline-block;
  width: 25px;
  height: 1.5px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

.hero-btn-link-discover:hover .hero-btn-line {
  background-color: var(--accent);
  width: 35px;
}

/* Scroll indicator on left side */
.scroll-indicator-left {
  position: absolute;
  left: 3rem;
  bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 10;
}

.scroll-indicator-left span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-indicator-left-line {
  width: 1px;
  height: 80px;
  background-color: var(--border-color);
}

@media (max-width: 992px) {
  .scroll-indicator-left {
    display: none;
  }
}

.hero-visual-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-container.reveal {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}

.hero-visual-container.reveal.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.hero-visual-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
}

/* Premium 3D floating animation for the H render */
.hero-visual-container.active .hero-visual-img {
  animation: float3D 6s ease-in-out infinite;
}

@keyframes float3D {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Tech badge line */
.badge-ticker {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 4rem;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ticker-item::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--accent);
  border-radius: 50%;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- THE TIMELINE BLOCK (As shown in screenshot) --- */
.timeline-section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.timeline-section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.timeline-container-v2 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Central Orange Line */
.timeline-line-v2 {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(255, 107, 44, 0.15);
  transform: translateX(-50%);
  z-index: 1;
}

/* Glowing traveling neon bead/pulse */
.timeline-line-v2::after {
  content: '';
  position: absolute;
  left: 50%;
  top: calc(var(--scroll-progress, 0) * 100%);
  width: 4px;
  height: 160px;
  background: linear-gradient(to bottom,
    rgba(255, 107, 44, 0) 0%,
    rgba(255, 107, 44, 1) 30%,
    #ffffff 50%,
    rgba(255, 107, 44, 1) 70%,
    rgba(255, 107, 44, 0) 100%
  );
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  box-shadow: 
    0 0 10px rgba(255, 107, 44, 0.8),
    0 0 20px rgba(255, 107, 44, 0.5),
    0 0 30px rgba(255, 107, 44, 0.2);
  pointer-events: none;
  transition: top 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: top;
}

/* Glowing S-Curve Neon Line Connector */
.neon-curve-connector {
  display: none;
}

.timeline-row-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; /* 48px gap, meaning 24px spacing from line on each side */
  margin-bottom: 8rem;
  position: relative;
  align-items: center;
}

@media (max-width: 992px) {
  .timeline-row-v2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-left: 30px; /* Leave space for left-aligned line on mobile */
  }
}

.timeline-row-v2:last-child {
  margin-bottom: 0;
}

/* Timeline center dot indicator */
.timeline-node-v2 {
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--accent);
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 10;
}

@media (max-width: 992px) {
  .timeline-node-v2 {
    left: 20px;
    top: 2rem;
  }
  .timeline-line-v2 {
    left: 20px;
  }
}

/* Left / Right positions and centering margins */
.timeline-row-v2:nth-child(odd) .timeline-image-col {
  grid-column: 2;
}
.timeline-row-v2:nth-child(odd) .timeline-text-col {
  grid-column: 1;
  margin-left: auto;
  margin-right: 0;
}

.timeline-row-v2:nth-child(even) .timeline-image-col {
  grid-column: 1;
}
.timeline-row-v2:nth-child(even) .timeline-text-col {
  grid-column: 2;
  margin-right: auto;
  margin-left: 0;
}

/* Force columns into the same grid row to prevent vertical layout offsets */
.timeline-row-v2 .timeline-text-col,
.timeline-row-v2 .timeline-image-col {
  grid-row: 1;
}

@media (max-width: 992px) {
  .timeline-image-col, .timeline-text-col {
    grid-column: 1 !important;
    grid-row: auto !important;
    margin: 0 !important;
  }
}

.timeline-image-box {
  width: 100%;
  aspect-ratio: 1.35;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.timeline-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-top: 1rem;
  transition: var(--transition-fast);
}
.timeline-explore-btn:hover {
  color: var(--accent);
}
.timeline-explore-btn svg {
  transition: var(--transition-fast);
}
.timeline-explore-btn:hover svg {
  transform: translateX(4px);
  stroke: var(--accent);
}

.timeline-text-col {
  padding: 0;
  max-width: 480px;
  width: 100%;
}

@media (max-width: 992px) {
  .timeline-text-col {
    padding: 0;
    max-width: 100%;
  }
}

/* Timeline Custom Step Badge */
.timeline-text-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.timeline-text-badge .step-num {
  color: var(--accent);
}

.timeline-text-badge .step-line {
  width: 40px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
}

.timeline-text-badge .step-label {
  color: var(--text-muted);
}

.timeline-text-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.timeline-text-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

/* Timeline Features Bullet List */
.timeline-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.5rem;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}

.timeline-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.timeline-feature-item::before {
  content: 'â€¢';
  color: var(--accent);
  font-weight: bold;
  font-size: 1.25rem;
}

/* Custom Scroll Reveal Animations for Timeline Rows */
.timeline-row-v2.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.timeline-row-v2 .timeline-text-col,
.timeline-row-v2 .timeline-image-col {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

/* Default state before scrolling in (Staggered translation) */
.timeline-row-v2:nth-child(odd) .timeline-text-col {
  transform: translateX(-40px);
}

.timeline-row-v2:nth-child(even) .timeline-text-col {
  transform: translateX(40px);
}

.timeline-row-v2 .timeline-image-col {
  transform: scale(0.95) translateY(30px);
}

/* Active animated state */
.timeline-row-v2.active .timeline-text-col {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.15s; /* Staggered delays */
}

.timeline-row-v2.active .timeline-image-col {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0s;
}

@media (max-width: 992px) {
  .timeline-row-v2 .timeline-text-col,
  .timeline-row-v2 .timeline-image-col {
    transform: translateY(20px) !important;
    transition-delay: 0s !important;
  }
  .timeline-row-v2.active .timeline-text-col,
  .timeline-row-v2.active .timeline-image-col {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
}

/* --- PRODUCTS GRID --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 3rem;
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}

.product-image-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.product-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-specs {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.spec-item {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.spec-item span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.15rem;
}

.product-action {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* --- PROJECTS PAGE --- */
.filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.filter-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.6rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 9999px;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: #000000;
  color: #000000;
}

.filter-btn.active {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

.projects-gallery {
  column-count: 3;
  column-gap: 2rem;
  width: 100%;
}

@media (max-width: 992px) {
  .projects-gallery {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .projects-gallery {
    column-count: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 0.5rem;
  background-color: var(--bg-card);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 18px;
  transition: var(--transition-smooth);
}

.gallery-item-info {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.85) 75%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border-radius: 0 0 18px 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.gallery-item-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.gallery-item-title {
  font-size: 1.25rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.gallery-item-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.gallery-item:hover {
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.gallery-item:hover .gallery-item-info {
  opacity: 1;
  transform: translateY(0);
}

/* --- LIGHTBOX MODAL --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content-wrapper {
  position: relative;
  width: 90%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 3rem;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
  .lightbox-content-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-height: 90vh;
    overflow-y: auto;
  }
}

.lightbox-viewer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f6f6f6;
  aspect-ratio: 1.4;
  border-radius: 16px;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.lightbox-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.lightbox-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.lightbox-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2010;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2010;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .lightbox-nav {
    top: auto;
    bottom: 2rem;
    transform: none;
  }
  .lightbox-prev {
    left: calc(50% - 60px);
  }
  .lightbox-next {
    right: calc(50% - 60px);
  }
  .lightbox-counter {
    bottom: auto;
    top: 2rem;
    left: 2rem;
  }
}

/* --- CONTACT & QUOTE --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.form-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

@media (max-width: 576px) {
  .form-wrapper {
    padding: 1.5rem;
  }
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.form-control {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  border-radius: 12px;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 107, 44, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
  border: 1px dashed var(--border-color);
  background-color: #fafafa;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  border-radius: 16px;
  transition: var(--transition-fast);
}

.file-upload-wrapper:hover {
  border-color: var(--accent);
  background-color: #ffffff;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-info svg {
  color: var(--accent);
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
}

.file-upload-info p {
  font-size: 0.85rem;
}

.file-upload-info span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-card {
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: 20px;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hours-row span:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

.map-container {
  width: 100%;
  height: 250px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-select-item {
  position: relative;
}

.service-select-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 5;
}

.service-select-label {
  display: block;
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.service-select-item input[type="checkbox"]:checked + .service-select-label {
  border-color: var(--accent);
  background-color: rgba(255, 107, 44, 0.05);
  color: var(--accent);
}

.notification {
  padding: 1.5rem;
  border: 1px solid;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.notification-success {
  background-color: rgba(46, 204, 113, 0.05);
  border-color: rgb(46, 204, 113);
  color: rgb(46, 204, 113);
}

.notification-error {
  background-color: rgba(231, 76, 60, 0.05);
  border-color: rgb(231, 76, 60);
  color: rgb(231, 76, 60);
}

/* --- AWARDS & CERTIFICATES SECTION V4 (Individual PNG Cards) --- */
.awards-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (max-width: 1200px) {
  .awards-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .awards-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .awards-cards-grid {
    grid-template-columns: 1fr;
  }
}

.award-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  background-color: #ffffff;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 107, 44, 0.15);
}

.award-card-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
}

.award-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.award-card:hover .award-card-img {
  transform: scale(1.05);
}

.award-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid var(--border-color);
}

.award-card-year {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.award-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-top: 0.1rem;
}

.award-card-org {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.award-card-badge {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: rgba(var(--badge-r), var(--badge-g), var(--badge-b), 0.1);
  color: rgb(var(--badge-r), var(--badge-g), var(--badge-b));
  border: 1px solid rgba(var(--badge-r), var(--badge-g), var(--badge-b), 0.25);
  width: fit-content;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover .award-card-badge {
  background-color: rgba(var(--badge-r), var(--badge-g), var(--badge-b), 0.18);
  box-shadow: 0 2px 8px rgba(var(--badge-r), var(--badge-g), var(--badge-b), 0.2);
}



/* Left Showcase Card */
.awards-visual-showcase {
  position: relative;
}

.awards-trophy-card {
  position: relative;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 2rem;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.02),
    0 1px 3px rgba(0, 0, 0, 0.01);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.awards-trophy-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.05),
    0 1px 5px rgba(255, 107, 44, 0.05);
}

.awards-badge-floating {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--accent);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255, 107, 44, 0.3);
}

.awards-showcase-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.awards-trophy-card:hover .awards-showcase-img {
  transform: scale(1.03);
}

.awards-trophy-card-info h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.awards-trophy-card-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Right Interactive List */
.awards-interactive-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.award-row-v3 {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.award-row-v3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0px;
  background-color: var(--accent);
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.award-row-v3:hover {
  transform: translateX(8px);
  border-color: rgba(255, 107, 44, 0.2);
  background-color: var(--bg-secondary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.award-row-v3:hover::before {
  width: 4px;
}

.award-year-v3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 60px;
}

.award-content-v3 {
  flex-grow: 1;
}

.award-title-v3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.award-row-v3:hover .award-title-v3 {
  color: #000000;
}

.award-org-v3 {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.award-badge-v3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Specific Badge Variants */
.award-row-v3:hover .award-badge-v3 {
  background-color: rgba(255, 107, 44, 0.08);
  color: var(--accent);
  border-color: rgba(255, 107, 44, 0.2);
}

@media (max-width: 576px) {
  .award-row-v3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .award-year-v3 {
    min-width: auto;
  }
  
  .award-badge-v3 {
    align-self: flex-start;
  }
}

/* --- PROJECTS CAROUSEL SECTION --- */
.projects-carousel-section {
  padding: 5rem 0 4rem;
  background-color: var(--bg-primary);
  background-image: 
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

.projects-carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 2rem;
  padding: 0 max(calc((100vw - 1280px) / 2), 2rem);
}

.projects-carousel-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: none;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.projects-carousel-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 380px;
  line-height: 1.6;
}

.projects-carousel-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  white-space: nowrap;
  padding-bottom: 0.25rem;
}

/* Full-bleed scroll track â€” starts from left edge of viewport */
.projects-carousel-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  /* Left padding shows ~half of the first card to signal more content */
  padding-left: max(calc((100vw - 1280px) / 2 - 240px), 0px);
  padding-right: max(calc((100vw - 1280px) / 2), 2rem);
  padding-bottom: 1.5rem;
  padding-top: 0.5rem;
  box-sizing: border-box;
}

.projects-carousel-wrap:active {
  cursor: grabbing;
}

.projects-carousel-wrap::-webkit-scrollbar {
  display: none;
}

.projects-carousel-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  user-select: none;
}

/* Individual Project Card â€” landscape, matches reference */
.pcard {
  position: relative;
  width: 460px;
  height: 310px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #111;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.45s ease;
}

.pcard:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.pcard-img-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.pcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.pcard:hover .pcard-img-wrap img {
  transform: scale(1.06);
}

/* Dark gradient overlay at bottom */
.pcard-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.5rem 1.25rem;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: padding 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              background 0.4s ease;
}

.pcard:hover .pcard-overlay {
  padding-bottom: 2rem;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

/* Category pill â€” slides up slightly on hover */
.pcard-category {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  background-color: var(--accent);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 0.2rem;
  opacity: 0.82;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.pcard:hover .pcard-category {
  opacity: 1;
  transform: translateY(0);
}

/* Title â€” starts slightly smaller & transparent, grows on hover */
.pcard-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.2;
  transform: translateY(4px);
  transition: color 0.35s ease,
              font-size 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.pcard:hover .pcard-title {
  color: #ffffff;
  font-size: 1.35rem;
  transform: translateY(0);
}

/* Location â€” hidden by default, fades in on hover */
.pcard-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease 0.05s,
              transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.05s,
              color 0.3s ease;
}

.pcard:hover .pcard-location {
  opacity: 1;
  transform: translateY(0);
  color: rgba(255, 255, 255, 0.8);
}

/* Controls bar below the carousel */
.projects-carousel-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.pcarousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.pcarousel-btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: scale(1.08);
}

.pcarousel-progress-bar {
  flex: 1;
  height: 3px;
  background-color: var(--border-color);
  border-radius: 9999px;
  overflow: hidden;
}

.pcarousel-progress-fill {
  height: 100%;
  width: 0%;
  background-color: var(--accent);
  border-radius: 9999px;
  transition: width 0.2s ease;
}

@media (max-width: 768px) {
  .projects-carousel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .pcard {
    width: 300px;
    height: 200px;
  }
}

/* --- AWARDS SECTION V2 (Dark, Two-Column) --- */
.awards-section-v2 {
  background-color: #0a0a0a;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.awards-section-v2::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.awards-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* LEFT */
.awards-v2-left {
  display: flex;
  flex-direction: column;
}

.awards-v2-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.awards-v2-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  text-transform: none;
  margin-bottom: 3rem;
}

.awards-v2-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.awards-v2-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s ease, padding 0.3s ease;
  border-radius: 8px;
  cursor: default;
}

.awards-v2-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.awards-v2-item:hover {
  background: rgba(255, 255, 255, 0.03);
  padding-left: 1rem;
  padding-right: 1rem;
}

.awards-v2-item-main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.awards-v2-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.awards-v2-item:hover .awards-v2-item-name {
  color: var(--accent);
}

.awards-v2-item-org {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
}

.awards-v2-item-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  flex-shrink: 0;
}

.awards-v2-item-year {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

.awards-v2-item-badge {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: 9999px;
  padding: 0.2rem 0.65rem;
  white-space: nowrap;
}

/* RIGHT */
.awards-v2-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.awards-v2-trophy-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.awards-v2-trophy-img {
  width: 100%;
  border-radius: 24px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.awards-v2-trophy-wrap:hover .awards-v2-trophy-img {
  transform: scale(1.03);
}

.awards-v2-trophy-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120px;
  background: radial-gradient(ellipse, rgba(218, 165, 32, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

/* Stats row */
.awards-v2-stat-row {
  display: flex;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
}

.awards-v2-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  text-align: center;
}

.awards-v2-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.awards-v2-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.03em;
}

@media (max-width: 960px) {
  .awards-v2-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .awards-v2-right {
    order: -1;
  }
}

/* --- PROD POWER SECTION (DARK) --- */
.prod-power-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .prod-power-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.prod-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 576px) {
  .prod-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.prod-card {
  background-color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.prod-card:hover {
  border-color: var(--accent);
  background-color: #161616;
  transform: translateY(-5px);
}

.prod-card-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.prod-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.prod-card-desc {
  font-size: 0.9rem;
  color: #888888;
  line-height: 1.5;
}

/* Glowing border decoration for dark section */
.prod-glow-path {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

/* --- ANIMATED NEON LASER CANVAS --- */
.video-placeholder-canvas {
  position: relative;
  width: 100%;
  max-width: none;
  height: 620px;
  background-color: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.laser-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 107, 44, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 44, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.neon-glow-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  color: #111111;
  text-shadow: 
    0 0 5px rgba(255, 107, 44, 0.2),
    0 0 10px rgba(255, 107, 44, 0.2);
  letter-spacing: 0.1em;
  z-index: 2;
  animation: neonPulse 2.5s infinite alternate;
}

@keyframes neonPulse {
  0% {
    color: #151515;
    text-shadow: 
      0 0 5px rgba(255, 107, 44, 0.1),
      0 0 10px rgba(255, 107, 44, 0.05);
  }
  100% {
    color: #ffffff;
    text-shadow: 
      0 0 10px var(--accent),
      0 0 20px var(--accent),
      0 0 40px var(--accent),
      0 0 80px rgba(255, 107, 44, 0.8);
  }
}

.laser-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 50%;
  filter: drop-shadow(0 0 3px var(--accent));
  animation: sparkFly 3s infinite linear;
}

@keyframes sparkFly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(0);
    opacity: 0;
  }
}

@media (max-width: 576px) {
  .video-placeholder-canvas {
    height: 320px;
  }
}

/* --- HERO SLIDER INTEGRATED STATS CARD & LOCAL GRID TEXTURE --- */
.hero {
  background-color: var(--bg-primary);
  background-image: 
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero Integrated Stats Card */
.hero-stats-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background-color: #ffffff; /* Solid white background card */
  border-radius: 32px;
  padding: 3rem 1.5rem 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.05); /* Slightly defined border for white-on-white card */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); /* Softer premium shadow */
  margin-left: auto; /* Align right inside column */
}

@media (max-width: 992px) {
  .hero-stats-card {
    margin: 0 auto; /* Center on mobile/tablet */
  }
}

.hero-stats-img-box {
  width: 100%;
  max-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-stats-printer-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.04));
  animation: float3D 6s ease-in-out infinite;
}

/* Embedded Floating Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 16px;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  width: 90%;
  z-index: 5;
}

.hero-stat-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.hero-stat-lbl {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 25px;
  background-color: rgba(0, 0, 0, 0.08);
}

@media (max-width: 576px) {
  .hero-stats-card {
    padding: 2rem 1rem 6.5rem 1rem;
    border-radius: 24px;
  }
  
  .hero-stats-bar {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.2rem 1rem;
    bottom: 1.5rem;
  }
  
  .hero-stat-divider {
    width: 50%;
    height: 1px;
    margin: 0 auto;
  }
}

/* ===================================================
   URUNLER PAGE — BIG SHOWCASE LAYOUT
=================================================== */
.ppage-hero {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid var(--border-color);
}

.ppage-hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: none;
  margin: 0.5rem 0 1rem;
}

.ppage-hero-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
}

/* --- Products grid: 2 columns --- */
.ppage-products {
  padding: 5rem 0 6rem;
}

.ppage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 4rem;
}

/* Individual product article */
.pprod {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* BIG image area */
.pprod-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pprod-num {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(0,0,0,0.45);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}

.pprod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25,1,0.5,1);
  display: block;
}

.pprod-img-wrap:hover .pprod-img {
  transform: scale(1.04);
}

/* --- Content --- */
.pprod-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pprod-tag {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.pprod-tag-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.pprod-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  text-transform: none;
  margin: 0;
}

.pprod-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
}

.pprod-desc strong {
  color: var(--accent);
  font-weight: 600;
}

/* Feature tags */
.pprod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.pprod-feature-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.pprod-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}

/* Specs row */
.pprod-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 0.85rem;
}

.pprod-spec-item {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.pprod-spec-item em {
  font-style: normal;
  font-weight: 600;
  color: var(--text-primary);
}

/* CTA link */
.pprod-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--text-primary);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.pprod-cta:hover {
  color: var(--accent);
  border-color: var(--accent);
  gap: 0.75rem;
}

/* Bottom CTA section */
.ppage-cta-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0;
}

.ppage-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ppage-cta-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  text-transform: none;
  margin-bottom: 0.5rem;
}

.ppage-cta-sub {
  color: var(--text-secondary);
  font-size: 1rem;
}

.ppage-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 1rem 2rem;
  border-radius: 9999px;
}

/* Responsive */
@media (max-width: 900px) {
  .ppage-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .ppage-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===================================================
   URETIM PAGE â€” PREMIUM CYBERPUNK/INDUSTRIAL LAYOUT
=================================================== */

.uretim-page-container {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Orange gradient text */
.orange-gradient-text {
  background: linear-gradient(135deg, #ff8c52 0%, #ff6b2c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uretim-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 107, 44, 0.08);
  border: 1px solid rgba(255, 107, 44, 0.25);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.uretim-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  animation: uretim-badge-pulse 2s infinite;
}

@keyframes uretim-badge-pulse {
  0% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
  100% { opacity: 0.4; transform: scale(1); }
}

/* Sections Global */
.uretim-section {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.bg-darker {
  background-color: #070707;
}

/* Section label */
.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

/* Hero Section */
.uretim-hero {
  padding: 8rem 0 6rem 0;
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a;
}

.uretim-hero-top {
  max-width: 800px;
  margin-bottom: 5rem;
}

.uretim-hero-title {
  font-family: var(--font-display);
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 2rem;
}

.uretim-hero-subtext {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  max-width: 650px;
}

.uretim-hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-outline-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366 !important;
  padding: 0.8rem 2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-outline-whatsapp:hover {
  background-color: rgba(37, 211, 102, 0.08);
  border-color: #25d366;
  transform: translateY(-2px);
}

/* Video Section */
.uretim-video-section {
  width: 100%;
  margin-top: 2rem;
}

.uretim-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

@media (max-width: 992px) {
  .uretim-video-wrapper {
    aspect-ratio: 16/9;
  }
}

.uretim-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.2) 100%);
  pointer-events: none;
}

.video-controls-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  background-color: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-play-btn {
  background-color: var(--accent);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.video-play-btn:hover {
  transform: scale(1.1);
  background-color: #ff8047;
}

.video-status-text {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
}

/* Two-column industrial grid */
.uretim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.uretim-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 992px) {
  .uretim-grid, .uretim-grid.reverse {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.uretim-sec-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 2rem;
}

.uretim-sec-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.uretim-sec-desc strong {
  color: #ffffff;
}

/* Spec grid */
.uretim-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.spec-item {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.spec-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.spec-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

/* Bullets list */
.uretim-bullet-list {
  list-style: none;
}

.uretim-bullet-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.bullet-dot {
  position: absolute;
  left: 0.5rem;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
}

.uretim-bullet-list strong {
  color: #ffffff;
}

/* Image framing */
.image-premium-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
}

.image-premium-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-zoom-hover:hover {
  transform: scale(1.05);
}

.frame-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Floating glow decorators */
.dark-glow-right::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.dark-glow-left::after {
  content: '';
  position: absolute;
  left: -10%;
  top: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Badge Showcase */
.badge-showcase-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.highlight-badge {
  background-color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.highlight-badge:hover {
  border-color: var(--accent);
  background-color: rgba(255, 107, 44, 0.05);
  transform: translateY(-2px);
}

/* Materials Section */
.uretim-materials {
  padding: 10rem 0;
}

.materials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 6rem auto;
}

.materials-header h2 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 1rem 0 1.5rem 0;
}

.materials-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 992px) {
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
}

.material-card {
  background-color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.material-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: var(--transition-fast);
}

.material-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 44, 0.2);
  background-color: #151515;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.material-card:hover::before {
  background-color: var(--accent);
}

.mat-card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 107, 44, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 2rem;
  transition: var(--transition-fast);
}

.material-card:hover .mat-card-icon {
  background-color: var(--accent);
  color: #ffffff;
}

.material-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.material-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* Quality Philosophy */
.uretim-philosophy {
  padding: 12rem 0;
  background-color: #080808;
  position: relative;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.uretim-philosophy::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.philosophy-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.3em;
  margin-bottom: 2.5rem;
}

.philosophy-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.philosophy-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 750px;
  margin: 0 auto;
}

/* CTA Section */
.uretim-cta {
  padding: 10rem 0;
  background-color: #0a0a0a;
}

.uretim-cta-card {
  position: relative;
  background-color: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 6rem 4rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
}

.cta-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.12) 0%, transparent 75%);
  pointer-events: none;
}

.uretim-cta-card h2 {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.uretim-cta-card p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .uretim-hero-title {
    font-size: 4rem;
  }
  .uretim-sec-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .uretim-hero-title {
    font-size: 2.8rem;
  }
  .uretim-hero-subtext {
    font-size: 1.05rem;
  }
  .uretim-sec-title {
    font-size: 2.2rem;
  }
  .uretim-section {
    padding: 6rem 0;
  }
  .uretim-materials {
    padding: 6rem 0;
  }
  .materials-header h2 {
    font-size: 2.4rem;
  }
  .uretim-philosophy {
    padding: 8rem 0;
  }
  .philosophy-title {
    font-size: 2.4rem;
  }
  .philosophy-text {
    font-size: 1.1rem;
  }
  .uretim-cta {
    padding: 6rem 0;
  }
  .uretim-cta-card h2 {
    font-size: 2.2rem;
  }
}

/* ===================================================
   BIZIM (ABOUT US) PAGE â€” PREMIUM EDITORIAL LAYOUT
=================================================== */

.bizim-page-container {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Section Global Spacing */
.bizim-section {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.bizim-bg-darker {
  background-color: #070707;
}

.bizim-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 107, 44, 0.08);
  border: 1px solid rgba(255, 107, 44, 0.25);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

/* Hero Section */
.bizim-hero {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a;
}

.bizim-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

@media (max-width: 992px) {
  .bizim-hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.bizim-hero-title {
  font-family: var(--font-display);
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

.bizim-hero-subtext {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.bizim-hero-secondary {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3.5rem;
  max-width: 550px;
}

.bizim-hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bizim-hero-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
}

.bizim-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bizim-hero-image-wrap:hover img {
  transform: scale(1.05);
}

/* Section 2: Manifesto */
.bizim-manifesto {
  padding: 12rem 0;
  text-align: center;
  background-color: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.bizim-manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.bizim-manifesto-title {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.bizim-manifesto-desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 750px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .bizim-manifesto-title {
    font-size: 2.4rem;
  }
  .bizim-manifesto-desc {
    font-size: 1.15rem;
  }
}

/* Section 3: What We Do (Editorial Split) */
.bizim-split-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8rem;
}

@media (max-width: 992px) {
  .bizim-split-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.bizim-split-left {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.bizim-split-title {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
}

.bizim-split-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.services-editorial-list {
  display: flex;
  flex-direction: column;
}

.service-editorial-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-editorial-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-editorial-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.service-edit-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.service-edit-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  transition: var(--transition-smooth);
}

.service-editorial-arrow {
  color: rgba(255, 255, 255, 0.25);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.service-editorial-item:hover {
  padding-left: 1.5rem;
  border-bottom-color: rgba(255, 107, 44, 0.3);
}

.service-editorial-item:hover .service-edit-num {
  opacity: 1;
  transform: scale(1.1);
}

.service-editorial-item:hover .service-edit-name {
  color: var(--accent);
}

.service-editorial-item:hover .service-editorial-arrow {
  color: var(--accent);
  transform: translateX(5px);
}

/* Section 4: Why HARFLAB */
.bizim-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
}

@media (max-width: 992px) {
  .bizim-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bizim-features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-editorial-card {
  background-color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3.5rem 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
}

.feature-editorial-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

.feature-editorial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 44, 0.2);
  background-color: #141414;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}

.feature-editorial-card:hover::after {
  width: 100%;
}

.feat-edit-icon {
  color: var(--accent);
  margin-bottom: 2rem;
  width: 32px;
  height: 32px;
}

.feature-editorial-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.feature-editorial-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* Section 5: Sectors Grid */
.sectors-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

@media (max-width: 992px) {
  .sectors-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sectors-editorial-grid {
    grid-template-columns: 1fr;
  }
}

.sector-editorial-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  background-color: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.sector-editorial-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.sector-dot {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.sector-editorial-item:hover {
  border-color: rgba(255, 107, 44, 0.3);
  background-color: #111111;
  transform: translateY(-2px);
}

.sector-editorial-item:hover .sector-dot {
  background-color: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

/* Section 6: Philosophy */
.bizim-philosophy {
  padding: 12rem 0;
  background-color: #080808;
  position: relative;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.bizim-philosophy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
  text-align: left;
}

@media (max-width: 992px) {
  .bizim-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.bizim-philosophy-left {
  max-width: 650px;
}

.bizim-philosophy-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.bizim-philosophy-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bizim-philosophy-image-wrap:hover img {
  transform: scale(1.05);
}

@media (max-width: 1200px) {
  .bizim-hero-title {
    font-size: 4rem;
  }
  .bizim-split-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .bizim-hero-title {
    font-size: 2.8rem;
  }
  .bizim-hero-subtext {
    font-size: 1.1rem;
  }
  .bizim-split-title {
    font-size: 2.2rem;
  }
  .bizim-section {
    padding: 6rem 0;
  }
  .bizim-hero {
    padding: 6rem 0;
  }
}
/* =============================================
   HARFLAB CUSTOM ADDITIONS - Logo & Mobile Fixes
   ============================================= */

/* === LOGO IMAGE STYLES === */
.logo-img-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: transparent;
    padding: 0;
}
.header-logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    /* White background pill for logo on dark header */
    background: transparent;
    padding: 0;
    transition: opacity 0.2s ease;
}
.header-logo-img:hover {
    opacity: 0.9;
}
/* Responsive Header adjustments to prevent logo overflows */
header {
    min-height: var(--header-height, 80px) !important;
    height: auto !important;
    padding: 0.5rem 0 !important;
}
header.scrolled {
    min-height: 70px !important;
    height: auto !important;
    padding: 0.25rem 0 !important;
}
header.scrolled .header-logo-img {
    height: 46px !important;
}
.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

/* === SOCIAL ICONS STYLE FIX === */
.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-icon:hover {
    background: var(--accent, #ff6b2c);
    border-color: var(--accent, #ff6b2c);
    transform: translateY(-2px);
}
.social-icon svg, .social-icon i {
    width: 18px;
    height: 18px;
}

/* === MOBILE HERO/SLIDER FIX === */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem 0;
        min-height: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }
    .hero-content {
        text-align: center;
        order: 1;
    }
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem) !important;
        text-align: center;
    }
    .hero-badge {
        justify-content: center;
    }
    .hero-details-split {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    .hero-sub-left, .hero-sub-right {
        text-align: center;
    }
    .hero-buttons-container {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-visual-container {
        order: 2;
        width: 100%;
    }
    .hero-stats-card {
        margin: 0 auto;
        max-width: 100%;
    }
    .hero-stats-img-box {
        height: 260px !important;
    }
    .hero-stats-bar {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem;
    }
    .hero-stat-item {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
    .scroll-indicator-left {
        display: none;
    }
    /* Fix hero image centering on mobile */
    .hero-stats-printer-img {
        object-position: center center !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 3rem 0;
    }
    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.8rem) !important;
    }
    .header-logo-img {
        height: 40px;
        padding: 4px 8px;
    }
    .hero-stat-divider {
        display: none;
    }
}


/* Fix for bizim-sectors header text color on light background */
#bizim-sectors .materials-header h2 {
  color: var(--text-primary) !important;
}
#bizim-sectors .materials-header p {
  color: var(--text-secondary) !important;
}


/* Fix for bizim-features header text color on light background */
#bizim-features .materials-header h2 {
  color: var(--text-primary) !important;
}
#bizim-features .materials-header p {
  color: var(--text-secondary) !important;
}
