/* AND AI - Optimized CSS */

/* ========== FONTS ========== */
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sansation;
  src: url('../fonts/Sansation_Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Sansation;
  src: url('../fonts/Sansation_Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  src: url('../fonts/fa-solid-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  src: url('../fonts/fa-regular-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Font Awesome 5 Brands';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  src: url('../fonts/fa6-solid-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ========== FONT AWESOME ICONS ========== */
.fas, .far, .fab {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fas {
  font-weight: 900;
}

.far {
  font-weight: 400;
}

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
}

/* Icon unicode mappings - FA5 */
.fa-lightbulb::before { content: "\f0eb"; }
.fa-cogs::before { content: "\f085"; }
.fa-users::before { content: "\f0c0"; }
.fa-shield-alt::before { content: "\f3ed"; }
.fa-check-circle::before { content: "\f058"; }
.fa-bolt::before { content: "\f0e7"; }
.fa-bullseye::before { content: "\f140"; }
.fa-handshake::before { content: "\f2b5"; }
.fa-map-marker-alt::before { content: "\f3c5"; }
.fa-phone-alt::before { content: "\f879"; }
.fa-whatsapp::before { content: "\f232"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-calendar-alt::before { content: "\f073"; }
.fa-chevron-left::before { content: "\f053"; }
.fa-chevron-right::before { content: "\f054"; }
.fa-tasks::before { content: "\f0ae"; }
.fa-bug::before { content: "\f188"; }
.fa-user-plus::before { content: "\f234"; }
.fa-wrench::before { content: "\f0ad"; }

/* Font Awesome 6 */
.fa-solid {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Number icons - FA6 */
.fa-1::before { content: "\31"; }
.fa-2::before { content: "\32"; }
.fa-3::before { content: "\33"; }
.fa-4::before { content: "\34"; }

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Account for fixed header */
}

body {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #01ffbc;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Sansation, 'Noto Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ========== LAYOUT ========== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

.col-2 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-3 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

.col-4 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* Ensure service cards stretch to equal height */
.services .row {
  align-items: stretch;
  margin-bottom: 30px;
}

.services .col-2 {
  display: flex;
}

.services .col-2 .service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services .col-2 .service-card p {
  flex-grow: 1;
}

section {
  padding: 80px 0;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgb(10 10 10 / 95%);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: background 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 47px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #01ffbc;
  transition: width 0.3s ease;
  will-change: width;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  padding-top: 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/header-anthonie-ai.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1, .hero h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 25px;
  color: #ffffff;
}

.hero p {
  font-size: 18px;
  margin-bottom: 15px;
  color: rgb(255 255 255 / 85%);
}

.hero p.highlight {
  font-size: 16px;
  color: rgb(255 255 255 / 70%);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

.btn-primary {
  background: #01ffbc;
  color: #0a0a0a;
}

.btn-primary:hover {
  background: #00e6a8;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgb(1 255 188 / 30%);
}

.btn-outline {
  background: transparent;
  border: 2px solid #01ffbc;
  color: #01ffbc;
}

.btn-outline:hover {
  background: #01ffbc;
  color: #0a0a0a;
}

/* ========== FEATURES STRIP ========== */
.features-strip {
  background: rgb(255 255 255 / 5%);
  padding: 40px 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.features-strip .row {
  justify-content: center;
  gap: 40px;
}

.feature-item {
  text-align: center;
  flex: 0 0 auto;
}

.feature-item i {
  font-size: 36px;
  color: #01ffbc;
  margin-bottom: 20px;
  display: block;
}

.feature-item p {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

/* ========== SERVICES SECTION ========== */
.services {
  background: #0d0d0d;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgb(255 255 255 / 70%);
  margin-bottom: 15px;
}

.section-label img {
  width: 20px;
  height: 20px;
}

/* ==============================================================================
   YOU ANDAI ANIMATED ELEMENT
   ============================================================================== */

/* Container for animated wordplay */
.you-andai-animated {
  display: flex;
  align-items: baseline;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 15px;
  cursor: default;
}

/* "You" text element */
.you-andai-animated__you {
  color: #ffffff;
  transform: translateX(-1.5rem);
  animation: initial-slide-you 1.2s ease-out 0.3s forwards;
}

/* "AndAI" text element */
.you-andai-animated__andai {
  color: #01ffbc;
  transform: translateX(1.5rem);
  animation: initial-slide-andai 1.2s ease-out 0.3s forwards;
}

/* Visual spacing between words */
.you-andai-animated__space {
  width: 0.3em;
}

/* Initial load animation - "You" slides from left */
@keyframes initial-slide-you {
  0% {
    transform: translateX(-1.5rem);
    text-shadow: none;
  }

  100% {
    transform: translateX(0);
    text-shadow: none;
  }
}

/* Initial load animation - "AndAI" slides from right with subtle glow */
@keyframes initial-slide-andai {
  0% {
    transform: translateX(1.5rem);
    text-shadow: none;
  }

  60% {
    text-shadow: 0 0 10px rgb(1 255 188 / 30%);
  }

  100% {
    transform: translateX(0);
    text-shadow: 0 0 5px rgb(1 255 188 / 20%);
  }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .you-andai-animated__you,
  .you-andai-animated__andai {
    animation: none;
    transform: none;
  }

  .you-andai-animated__andai {
    text-shadow: none;
  }
}

/* Responsive adjustments for tablets */
@media (width <= 1024px) {
  .you-andai-animated {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
  }

  @keyframes initial-slide-you {
    0% { transform: translateX(-1.25rem); }
    100% { transform: translateX(0); }
  }

  @keyframes initial-slide-andai {
    0% { transform: translateX(1.25rem); }
    100% { transform: translateX(0); }
  }

  @keyframes hover-out-you {
    100% { transform: translateX(-1.25rem); }
  }

  @keyframes hover-out-andai {
    100% { transform: translateX(1.25rem); }
  }
}

/* Mobile optimizations */
@media (width <= 768px) {
  .you-andai-animated {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  @keyframes initial-slide-you {
    0% { transform: translateX(-1rem); }
    100% { transform: translateX(0); }
  }

  @keyframes initial-slide-andai {
    0% {
      transform: translateX(1rem);
      text-shadow: none;
    }

    60% { text-shadow: 0 0 8px rgb(1 255 188 / 25%); }

    100% {
      transform: translateX(0);
      text-shadow: 0 0 4px rgb(1 255 188 / 15%);
    }
  }
}

/* Small phones */
@media (width <= 480px) {
  .you-andai-animated {
    font-size: 1.25rem;
  }

  @keyframes initial-slide-andai {
    0% {
      transform: translateX(0.75rem);
      text-shadow: none;
    }

    60% { text-shadow: 0 0 6px rgb(1 255 188 / 20%); }

    100% {
      transform: translateX(0);
      text-shadow: 0 0 3px rgb(1 255 188 / 10%);
    }
  }
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #ffffff;
}

.section-title span {
  color: #01ffbc;
}

.service-card {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgb(1 255 188 / 30%);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.service-card p {
  color: rgb(255 255 255 / 75%);
  margin-bottom: 25px;
}

.service-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
}

/* Services grid - 2 columns layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.services-grid .service-card {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.services-grid .service-card .service-case-link {
  margin-top: auto;
}

/* ========== CASE STUDY ========== */
.case-study {
  background: linear-gradient(135deg, #0a0a0a 0%, #151530 100%);
}

/* Case Study Slider */
.case-slider {
  position: relative;
  overflow: hidden;
}

.case-slides {
  position: relative;
}

.case-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  will-change: opacity;
}

.case-slide.active {
  display: block;
  opacity: 1;
}

/* Two-column layout: visual left, quote right */
.case-slide-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  min-height: 320px;
}

.case-slide-inner .case-slide-visual {
  flex: 0 0 50%;
  max-width: 50%;
}

.case-slide-inner .case-slide-content {
  flex: 1;
}

.case-slide-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.case-slide-image .case-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.case-slide-image .case-logo {
  position: absolute;
  bottom: 15px;
  left: 15px;
  max-width: 140px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.case-slide-content {
  background: rgb(255 255 255 / 5%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.case-slide-content h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #01ffbc;
}

.case-slide-content blockquote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgb(255 255 255 / 90%);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.case-slide-content cite {
  font-style: normal;
  font-weight: 600;
  color: #01ffbc;
  font-size: 1rem;
}

/* Case Stats Grid (compact layout) */
.case-slide-visual {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12px;
  height: 100%;
}

.case-slide-visual .case-slide-image {
  grid-row: span 2;
}

.case-slide-visual .case-slide-image .case-image {
  height: 100%;
  min-height: 280px;
}

.case-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 15px;
  height: 100%;
  grid-row: span 2;
}

.stat-card {
  background: #1a1a2e;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #01ffbc;
  line-height: 1;
  margin-bottom: 8px;
  display: inline-block;
  min-width: 5ch;
  text-align: center;
}

.stat-card .stat-label {
  font-size: 14px;
  color: rgb(255 255 255 / 80%);
  line-height: 1.3;
}

.stat-card.accent {
  background: #01ffbc;
}

.stat-card.accent .stat-number {
  color: #0a0a0a;
}

.stat-card.accent .stat-label {
  color: #0a0a0a;
}

.case-extra-image {
  grid-column: span 2;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.case-extra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.case-extra-image .extra-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgb(0 0 0 / 70%));
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
}

.case-extra-image .extra-overlay .highlight {
  color: #01ffbc;
  font-size: 1.5rem;
  display: inline-block;
  min-width: 4ch;
  text-align: center;
}

/* Slider Navigation */
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-arrow {
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(1 255 188 / 30%);
  color: #01ffbc;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: #01ffbc;
  color: #0a0a0a;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #01ffbc;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
  background: #01ffbc;
}

/* Legacy case-card styles (for other pages) */
.case-card {
  background: rgb(255 255 255 / 5%);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}

.case-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #01ffbc;
}

.case-card blockquote {
  font-size: 16px;
  line-height: 1.8;
  color: rgb(255 255 255 / 85%);
  margin-bottom: 20px;
}

.case-card cite {
  font-style: normal;
  font-weight: 600;
  color: #ffffff;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, #01ffbc 0%, #00b386 100%);
  color: #0a0a0a;
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  color: #0a0a0a;
  margin-bottom: 10px;
}

.cta-section p {
  color: rgb(0 0 0 / 70%);
  margin-bottom: 25px;
}

.cta-section .btn {
  background: #0a0a0a;
  color: #01ffbc;
}

.cta-section .btn:hover {
  background: #1a1a1a;
}

/* ========== PROCESS SECTION ========== */
.process {
  background: #0a0a0a;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.process-step .number {
  font-size: 3rem;
  color: #01ffbc;
  margin-bottom: 15px;
  display: block;
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.process-step p {
  font-size: 14px;
  color: rgb(255 255 255 / 70%);
}

/* ========== WHY US ========== */
.why-us {
  background: #0d0d0d;
}

.why-us-list {
  margin-top: 40px;
}

.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.why-us-item i.fas {
  color: #01ffbc;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-us-item h4 {
  font-size: 1rem;
  color: #ffffff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.why-us-content {
  display: flex;
  flex-direction: column;
}

.why-us-content .why-us-list {
  margin-top: 0;
}

.why-us-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-us-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 40px rgb(1 255 188 / 15%);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #0d1520 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-form {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-form > p {
  color: rgb(255 255 255 / 70%);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: rgb(255 255 255 / 80%);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #01ffbc;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Form validation states */
.form-group.error input,
.form-group.error textarea {
  border-color: #ff4444;
  background: rgb(255 68 68 / 5%);
}

.form-group.success input,
.form-group.success textarea {
  border-color: #01ffbc;
  background: rgb(1 255 188 / 5%);
}

.form-group .error-message {
  color: #ff4444;
  font-size: 13px;
  margin-top: 8px;
  display: block;
  animation: slideDown 0.3s ease-out;
}

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

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

/* Form-level messages */
.form-message {
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  animation: slideDown 0.3s ease-out;
}

.form-message.error {
  background: rgb(255 68 68 / 10%);
  border: 1px solid rgb(255 68 68 / 30%);
  color: #ff6b6b;
}

.form-message.success {
  background: rgb(1 255 188 / 10%);
  border: 1px solid rgb(1 255 188 / 30%);
  color: #01ffbc;
}

/* Loading button state */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentcolor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Contact page grid with plan gesprek card */
.contact-grid:has(.contact-plan-gesprek) {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px 60px;
  align-items: stretch;
}

.contact-grid:has(.contact-plan-gesprek) .contact-form {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.contact-grid:has(.contact-plan-gesprek) .chat-widget {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-grid:has(.contact-plan-gesprek) .contact-plan-gesprek {
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.contact-grid:has(.contact-plan-gesprek) .service-card {
  margin-bottom: 0;
}

/* Chat widget */
.chat-widget {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.chat-widget h3 {
  margin-bottom: 20px;
}

.chat-input {
  display: flex;
  gap: 10px;
}

.chat-input input {
  flex: 1;
  padding: 14px 18px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
}

.chat-input button {
  padding: 14px 24px;
  background: #01ffbc;
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.chat-input button:hover {
  background: #00e6a8;
}

.chat-input button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Chat messages container */
.chat-messages {
  flex: 1;
  min-height: 300px;
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 20px;
  padding: 10px;
  background: rgb(0 0 0 / 20%);
  border-radius: 12px;
  display: none;
  scrollbar-gutter: stable;
}

.chat-messages.active {
  display: flex;
  flex-direction: column;
}

.chat-message {
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  max-width: 85%;
  overflow-wrap: break-word;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.chat-message.user {
  background: #01ffbc;
  color: #0a0a0a;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.chat-message.bot {
  background: rgb(255 255 255 / 10%);
  color: #ffffff;
  margin-right: auto;
  border-bottom-left-radius: 4px;
}

.chat-message.error {
  background: rgb(255 100 100 / 20%);
  color: #ff6b6b;
  font-size: 14px;
}

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: rgb(255 255 255 / 10%);
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 12px;
}

.chat-typing span {
  width: 8px;
  height: 8px;
  background: rgb(255 255 255 / 50%);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.chat-typing span:nth-child(1) { animation-delay: 0s; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

/* ========== FOOTER ========== */
.site-footer {
  background: #050505;
  padding: 60px 0 30px;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  order: 5;  /* Verplaats naar laatste positie in grid */
  text-align: left;
}

.footer-brand img {
  margin-left: 0;
  display: block;
}

.footer-brand p {
  color: rgb(255 255 255 / 70%);
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.8;
  text-align: left;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgb(255 255 255 / 70%);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #01ffbc;
}

.footer-col address {
  font-style: normal;
  color: rgb(255 255 255 / 70%);
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 14px;
  color: rgb(255 255 255 / 50%);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: rgb(255 255 255 / 50%);
}

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

/* ========== ABOUT PAGE TWO-COLUMN LAYOUTS ========== */
.about-intro-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 60px;
}

.about-intro-row > .col {
  flex: 1;
  max-width: none;
}

.about-cards-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: stretch;
}

.about-cards-row > .col {
  flex: 1;
  max-width: none;
  display: flex;
}

.about-cards-row .service-card {
  height: 100%;
}

/* ========== RESPONSIVE ========== */
@media (width <= 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 40px !important;
  }
}

@media (width <= 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a0a0a;
    padding: 20px;
    border-top: 1px solid rgb(255 255 255 / 10%);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
  }

  .main-nav a {
    display: block;
    padding: 15px 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .col-2, .col-3, .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-intro-row,
  .about-cards-row {
    flex-wrap: wrap;
  }

  .about-intro-row > .col,
  .about-cards-row > .col {
    flex: 0 0 100%;
  }

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

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-us-visual {
    order: -1;
  }

  /* Case slider responsive */
  .case-slide-inner {
    flex-direction: column;
    gap: 25px;
  }

  .case-slide-inner .case-slide-visual {
    flex: none;
    max-width: 100%;
  }

  .stat-card {
    padding: 15px;
  }

  .case-slide-content {
    padding: 30px;
  }

  .case-slide-content blockquote {
    font-size: 1rem;
  }

  .features-strip .row {
    flex-direction: column;
    gap: 20px;
  }

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

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

  .chat-input {
    flex-direction: column;
  }

  .chat-input input {
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .chat-input button {
    width: 100%;
    border-radius: 8px;
  }

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

  /* Case Study Slider - Mobile */
  .case-slide-visual {
    grid-template-columns: 1fr;
  }

  .case-slide-visual .case-slide-image {
    grid-row: auto;
  }

  .case-slide-image .case-image {
    height: 200px;
  }

  .case-stats-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .stat-card .stat-number {
    font-size: 1.8rem;
  }

  .stat-card .stat-label {
    font-size: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    /* order: 0; */

  /* Verwijderd - niet meer nodig */
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-brand p {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* Reset grid positioning voor contact elements op mobile */
  .contact-grid:has(.contact-plan-gesprek) .contact-form,
  .contact-grid:has(.contact-plan-gesprek) .chat-widget,
  .contact-grid:has(.contact-plan-gesprek) .contact-plan-gesprek {
    grid-column: 1 !important;
    grid-row: auto !important;
    align-self: stretch !important;
  }

  .contact-form h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 60px 0;
  }
}

/* ========== SMALL MOBILE (480px) ========== */
@media (width <= 480px) {
  .container {
    width: 95%;
    padding: 0 12px;
  }

  .logo img {
    height: 40px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 15px;
  }

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

  .service-card {
    padding: 25px;
  }

  .process-step {
    padding: 20px;
  }

  .process-step .number {
    font-size: 2.5rem;
  }

  .use-case-card {
    padding: 25px;
  }

  .team-card {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }

  .chat-widget {
    padding: 20px;
  }

  .page-header {
    padding: 120px 0 60px;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  section {
    padding: 40px 0;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

/* ========== EXTRA SMALL MOBILE (375px) ========== */
@media (width <= 375px) {
  .container {
    width: 98%;
    padding: 0 8px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 14px;
  }

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

  .section-label span {
    font-size: 12px;
  }

  .service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .process-step {
    padding: 15px;
  }

  .process-step .number {
    font-size: 2rem;
  }

  .process-step h4 {
    font-size: 1rem;
  }

  .team-card {
    padding: 15px;
  }

  .team-card img {
    width: 100px;
    height: 140px;
    border-radius: 50px;
  }

  .use-case-card {
    padding: 20px;
  }

  .contact-form,
  .chat-widget {
    padding: 15px;
  }

  .page-header {
    padding: 100px 0 50px;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .page-header p {
    font-size: 15px;
  }

  section {
    padding: 30px 0;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .feature-item i {
    font-size: 28px;
  }

  .feature-item p {
    font-size: 13px;
  }

  .why-us-item h4 {
    font-size: 14px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-us-visual {
    order: -1;
  }

  .why-us-visual img {
    max-height: 300px;
    object-fit: cover;
  }

  .case-card {
    padding: 25px;
  }

  .case-card blockquote {
    font-size: 14px;
  }

  .footer-col h4 {
    font-size: 1rem;
  }

  .footer-brand p,
  .footer-col p,
  .footer-col li,
  .footer-col address {
    font-size: 13px;
  }
}

/* ========== CONTACT INFO SECTION ========== */
.contact-info-section {
  padding: 60px 0;
}

.contact-info-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  text-align: center;
  flex-wrap: wrap;
}

.contact-info-item {
  flex: 0 0 250px;
}

.contact-info-item i {
  font-size: 36px;
  color: #01ffbc;
  margin-bottom: 20px;
  display: block;
}

.contact-info-item h4 {
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-info-item p {
  color: rgb(255 255 255 / 80%);
}

.contact-info-item a {
  color: #01ffbc;
}

@media (width <= 768px) {
  .contact-info-row {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info-item {
    flex: 0 0 auto;
  }
}

@media (width <= 480px) {
  .contact-info-section {
    padding: 40px 0;
  }

  .contact-info-row {
    gap: 25px;
  }

  .contact-info-item i {
    font-size: 30px;
  }
}

/* ========== LOCATION SECTION ========== */
.location-section {
  padding: 80px 0;
  background: #111111;
}

.location-section .section-title {
  margin-bottom: 40px;
  text-align: center;
}

.location-section .section-title span {
  color: #01ffbc;
}

.location-map {
  max-width: 1000px;
  margin: 0 auto;
}

.location-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 12px;
}

@media (width <= 768px) {
  .location-map iframe {
    height: 350px;
  }
}

@media (width <= 480px) {
  .location-section {
    padding: 60px 0;
  }

  .location-map iframe {
    height: 280px;
  }
}

/* ========== BLOG PAGE ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgb(1 255 188 / 30%);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Case image with logo overlay */
.case-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
}

.case-image-wrapper .case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-image-wrapper .case-logo {
  position: absolute;
  bottom: 15px;
  left: 15px;
  max-width: 140px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.blog-card-content {
  padding: 25px;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.blog-card p {
  font-size: 14px;
  color: rgb(255 255 255 / 70%);
  margin-bottom: 20px;
}

.blog-card .read-more {
  color: #01ffbc;
  font-weight: 600;
  font-size: 14px;
}

/* ========== PAGE HEADERS ========== */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 15px;
}

.page-header p {
  color: rgb(255 255 255 / 70%);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== USE CASES ========== */
.use-case-card {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
}

.use-case-card h3 {
  color: #01ffbc;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.use-case-card p {
  color: rgb(255 255 255 / 75%);
}

/* ========== TEAM SECTION ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.team-card img {
  width: 140px;
  height: 200px;
  border-radius: 70px;
  margin: 0 auto 20px;
  object-fit: cover;
  object-position: top;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-card .role {
  color: #01ffbc;
  font-size: 14px;
  margin-bottom: 15px;
}

.team-card p {
  font-size: 14px;
  color: rgb(255 255 255 / 70%);
}

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

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

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Subtle fade-scale animation for icons */
@keyframes subtleFadeScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

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

.bounce-in {
  /* Animation triggered by Intersection Observer */
}

/* Subtle bounce animation for icons */
@keyframes subtleBounce {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.icon-bounce {
  /* Animation triggered by Intersection Observer */
}

/* Subtle scale animation for process numbers */
@keyframes subtleScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

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

.scale-up {
  /* Animation triggered by Intersection Observer */
}

/* Subtle fade-up for cards */
@keyframes subtleFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.slide-up-stagger {
  /* Animation triggered by Intersection Observer */
}

/* Initial hidden state for animated elements */
.animate-on-scroll,
.bounce-in,
.scale-up,
.slide-up-stagger,
.count-up,
.icon-bounce {
  opacity: 0;
}

/* Stagger delays - No longer used (all animations trigger simultaneously) */

/* .stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; } */

/* Accessibility: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .bounce-in,
  .scale-up,
  .slide-up-stagger,
  .fade-in-up,
  .icon-bounce {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.accent { color: #01ffbc; }

/* ========== CASE STUDY DETAIL PAGES ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgb(255 255 255 / 60%);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgb(255 255 255 / 60%);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #01ffbc;
}

.breadcrumb .separator {
  color: rgb(255 255 255 / 40%);
}

.breadcrumb .current {
  color: #01ffbc;
}

/* Case Study Hero */
.case-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.case-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.case-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: #ffffff;
}

.case-hero-content .client-name {
  color: #01ffbc;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.case-hero-content .intro-text {
  font-size: 1.1rem;
  color: rgb(255 255 255 / 85%);
  line-height: 1.8;
}

.case-hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.case-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.case-hero-image .case-logo-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: 160px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Case Study Content Sections */
.case-section {
  padding: 80px 0;
}

.case-section.alt-bg {
  background: #0d0d0d;
}

.case-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.case-section h2 span {
  color: #01ffbc;
}

.case-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgb(255 255 255 / 85%);
  margin-bottom: 20px;
}

.case-section ul {
  margin: 20px 0;
}

.case-section ul li {
  font-size: 1.05rem;
  color: rgb(255 255 255 / 85%);
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.case-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #01ffbc;
  border-radius: 50%;
}

/* Solution Section with Image */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.solution-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
}

.solution-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.result-card {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.result-card:hover {
  transform: translateY(-5px);
  border-color: rgb(1 255 188 / 30%);
}

.result-card.highlight {
  background: #01ffbc;
  border-color: #01ffbc;
}

.result-card .result-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #01ffbc;
  line-height: 1;
  margin-bottom: 10px;
}

.result-card.highlight .result-number {
  color: #0a0a0a;
}

.result-card .result-label {
  font-size: 15px;
  color: rgb(255 255 255 / 80%);
  line-height: 1.4;
}

.result-card.highlight .result-label {
  color: #0a0a0a;
}

/* Testimonial Section */
.case-testimonial {
  background: linear-gradient(135deg, #0a0a0a 0%, #151530 100%);
}

.testimonial-box {
  background: rgb(255 255 255 / 5%);
  border-radius: 16px;
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-box::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 6rem;
  color: rgb(1 255 188 / 20%);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-box blockquote {
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgb(255 255 255 / 90%);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-box cite {
  font-style: normal;
  font-weight: 600;
  color: #01ffbc;
  font-size: 1rem;
}

/* Related Cases */
.related-cases {
  background: #0a0a0a;
}

.related-cases h2 {
  text-align: center;
  margin-bottom: 50px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.related-card {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  will-change: transform;
  display: block;
}

.related-card:hover {
  transform: translateY(-5px);
  border-color: rgb(1 255 188 / 30%);
  color: #ffffff;
}

.related-card .related-image {
  position: relative;
  height: 180px;
}

.related-card .related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card .related-image .related-logo {
  position: absolute;
  bottom: 15px;
  left: 15px;
  max-width: 120px;
  max-height: 45px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.related-card .related-content {
  padding: 25px;
}

.related-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.related-card p {
  font-size: 14px;
  color: rgb(255 255 255 / 70%);
  margin-bottom: 15px;
}

.related-card .read-more {
  color: #01ffbc;
  font-weight: 600;
  font-size: 14px;
}

/* Case Study CTA */
.case-cta {
  background: linear-gradient(135deg, #01ffbc 0%, #00b386 100%);
  color: #0a0a0a;
  text-align: center;
  padding: 60px 0;
}

.case-cta h2 {
  color: #0a0a0a;
  font-size: 2rem;
  margin-bottom: 15px;
}

.case-cta p {
  color: rgb(0 0 0 / 70%);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.case-cta .btn {
  background: #0a0a0a;
  color: #01ffbc;
}

.case-cta .btn:hover {
  background: #1a1a1a;
}

/* Responsive Case Study */
@media (width <= 1024px) {
  .case-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-hero-image {
    order: -1;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

@media (width <= 768px) {
  .case-hero {
    padding: 120px 0 40px;
  }

  .case-hero-image img {
    height: 280px;
  }

  .case-section {
    padding: 50px 0;
  }

  .testimonial-box {
    padding: 30px;
  }

  .testimonial-box::before {
    font-size: 4rem;
    left: 20px;
  }

  .testimonial-box blockquote {
    font-size: 1rem;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .result-card {
    padding: 25px 15px;
  }

  .result-card .result-number {
    font-size: 2rem;
  }
}

@media (width <= 480px) {
  .case-hero-content h1 {
    font-size: 1.6rem;
  }

  .case-section h2 {
    font-size: 1.5rem;
  }

  .breadcrumb {
    font-size: 12px;
    flex-wrap: wrap;
  }

  .result-card .result-number {
    font-size: 1.6rem;
  }

  .result-card .result-label {
    font-size: 13px;
  }
}

/* ============================================
   SEO ENHANCEMENTS - Enhanced Footer & Internal Linking
   ============================================ */

/* Service Case Link Boxes */
.service-case-link {
  margin-top: 20px;
  padding: 20px;
  background: rgb(1 255 188 / 10%);
  border-left: 3px solid #01ffbc;
  border-radius: 8px;
}

.service-case-link h5 {
  color: #01ffbc;
  margin-bottom: 10px;
  font-size: 16px;
}

.service-case-link a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-case-link a:hover {
  color: #01ffbc;
}

.service-case-link .case-summary {
  font-size: 14px;
  color: rgb(255 255 255 / 70%);
  margin: 10px 0 0;
}

/* Related Cases Cards */
.related-cases a.related-case-card {
  display: block;
  background: rgb(255 255 255 / 5%);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.related-cases a.related-case-card:hover {
  transform: translateY(-5px);
  background: rgb(255 255 255 / 8%);
}

.related-cases img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.related-cases h4 {
  color: #01ffbc;
  margin-bottom: 10px;
}

/* ========== FAQ / ACCORDION STYLES ========== */
.faq-section {
  padding: 80px 0;
}

.faq-category {
  margin-bottom: 60px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.accordion-item:hover {
  border-color: rgb(1 255 188 / 30%);
}

.accordion-item.open {
  border-color: #01ffbc;
}

.accordion-header {
  padding: 24px 60px 24px 24px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  margin: 0;
  transition: color 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  color: #01ffbc;
}

.accordion-item.open .accordion-header {
  color: #01ffbc;
}

.accordion-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  will-change: transform;
  color: #01ffbc;
}

.accordion-item.open .accordion-icon {
  transform: translateY(-50%) rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  will-change: max-height;
}

.accordion-content > div {
  padding: 0 24px 24px;
}

.accordion-content p {
  color: rgb(255 255 255 / 80%);
  line-height: 1.7;
  margin-bottom: 15px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

.accordion-content a {
  color: #01ffbc;
  text-decoration: underline;
}

.accordion-content ul,
.accordion-content ol {
  margin: 15px 0;
  padding-left: 20px;
  list-style: disc;
  color: rgb(255 255 255 / 80%);
}

.accordion-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (width <= 1024px) {
  .accordion-header {
    padding: 20px 50px 20px 20px;
    font-size: 1.05rem;
  }

  .accordion-content > div {
    padding: 0 20px 20px;
  }
}

@media (width <= 768px) {
  .faq-category {
    margin-bottom: 50px;
  }

  .accordion-header {
    padding: 18px 45px 18px 18px;
    font-size: 1rem;
  }

  .accordion-icon {
    right: 18px;
    font-size: 1.3rem;
  }

  .accordion-content > div {
    padding: 0 18px 18px;
  }
}

@media (width <= 480px) {
  .faq-section {
    padding: 60px 0;
  }

  .accordion-header {
    padding: 16px 40px 16px 16px;
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

/* ========== LEGAL PAGES ========== */

/* Main legal content section */
.legal-content {
  background: linear-gradient(135deg, #0a0a0a 0%, #151530 100%);
  padding: 80px 0;
  min-height: 100vh;
}

/* Two-column grid layout */
.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

/* Left sidebar: Sticky TOC */
.legal-toc {
  position: sticky;
  top: 100px; /* Clear fixed header */
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  padding: 30px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.legal-toc h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #01ffbc;
}

.legal-toc nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-toc nav ul li {
  margin-bottom: 12px;
}

.legal-toc nav ul li a {
  color: rgb(255 255 255 / 70%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
}

.legal-toc nav ul li a:hover {
  color: #01ffbc;
  background: rgb(1 255 188 / 5%);
}

/* Right content: Main article */
.legal-article {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  padding: 60px;
  max-width: 900px;
}

.legal-article h2 {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #01ffbc;
  padding-bottom: 15px;
  border-bottom: 2px solid rgb(1 255 188 / 20%);
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #ffffff;
}

.legal-article p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: rgb(255 255 255 / 80%);
}

.legal-article ul,
.legal-article ol {
  margin-bottom: 20px;
  padding-left: 30px;
  line-height: 1.8;
  color: rgb(255 255 255 / 80%);
}

.legal-article li {
  margin-bottom: 10px;
}

.legal-article strong {
  color: #ffffff;
  font-weight: 600;
}

/* Last updated block */
.legal-updated {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: rgb(255 255 255 / 60%);
  font-size: 0.9rem;
}

.legal-updated strong {
  color: #01ffbc;
}


/* Responsive Design */
@media (width <= 1024px) {
  .legal-layout {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }

  .legal-article {
    padding: 40px;
  }
}

@media (width <= 768px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-toc {
    position: relative;
    top: 0;
    max-height: none;
  }

  .legal-article {
    padding: 30px;
  }

  .legal-article h2 {
    font-size: 1.6rem;
  }

  .legal-article h3 {
    font-size: 1.3rem;
  }
}

@media (width <= 480px) {
  .legal-content {
    padding: 60px 0;
  }

  .legal-article {
    padding: 20px;
  }

  .legal-article h2 {
    font-size: 1.4rem;
  }

  .legal-article h3 {
    font-size: 1.2rem;
  }
}

/* ========== CUSTOM SCROLLBAR STYLING ========== */

/* WebKit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgb(255 255 255 / 2%);
  border-radius: 12px;
  border: 1px solid rgb(255 255 255 / 5%);
}

::-webkit-scrollbar-thumb {
  background: rgb(1 255 188 / 40%);
  border-radius: 12px;
  border: 2px solid rgb(0 0 0 / 30%);
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(1 255 188 / 60%);
}

::-webkit-scrollbar-thumb:active {
  background: rgb(1 255 188 / 80%);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgb(1 255 188 / 40%) rgb(255 255 255 / 2%);
}

/* ====================================
   Blog Article Pages
   ==================================== */

.blog-article {
  background: #0a0a0a;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  font-size: 15px;
  color: rgb(255 255 255 / 60%);
}

.article-separator {
  color: rgb(255 255 255 / 30%);
}

.article-date,
.article-reading-time {
  font-weight: 500;
}

.article-featured-image {
  padding: 40px 0;
  background: #0a0a0a;
}

.article-featured-image img {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgb(0 0 0 / 50%);
}

.article-content {
  padding: 80px 0 100px;
  background: #0a0a0a;
}

.article-body {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.8;
  color: rgb(255 255 255 / 85%);
}

.article-body p {
  margin-bottom: 24px;
}

.article-body h2 {
  font-size: 2rem;
  margin: 50px 0 25px;
  color: #ffffff;
}

.article-body h3 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  color: #ffffff;
}

.article-body h4 {
  font-size: 1.25rem;
  margin: 30px 0 15px;
  color: #ffffff;
}

.article-body ul,
.article-body ol {
  margin-bottom: 24px;
  padding-left: 30px;
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.article-body a {
  color: #01ffbc;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.article-body a:hover {
  color: #00e6a8;
}

.article-body code {
  background: rgb(1 255 188 / 10%);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: #01ffbc;
}

.article-body pre {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 8px;
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 24px;
}

.article-body pre code {
  background: none;
  padding: 0;
  color: rgb(255 255 255 / 90%);
}

.article-body blockquote {
  border-left: 4px solid #01ffbc;
  padding-left: 24px;
  margin: 30px 0;
  font-style: italic;
  color: rgb(255 255 255 / 75%);
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 30px 0;
}

.article-cta {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 50px;
  background: linear-gradient(135deg, rgb(1 255 188 / 10%) 0%, rgb(1 255 188 / 5%) 100%);
  border: 1px solid rgb(1 255 188 / 20%);
  border-radius: 16px;
  text-align: center;
}

.article-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.article-cta p {
  font-size: 1.1rem;
  color: rgb(255 255 255 / 75%);
  margin-bottom: 30px;
}

.article-back {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #01ffbc;
  transition: transform 0.3s ease, color 0.3s ease;
}

.back-link:hover {
  color: #00e6a8;
  transform: translateX(-5px);
}

/* Responsive adjustments for article pages */
@media (width <= 1024px) {
  .article-header {
    padding: 160px 0 50px;
  }

  .article-featured-image {
    padding: 50px 0;
  }

  .article-content {
    padding: 60px 0 80px;
  }

  .article-cta {
    padding: 40px 30px;
  }
}

@media (width <= 768px) {
  .article-meta {
    font-size: 14px;
    gap: 10px;
  }

  .article-featured-image {
    padding: 30px 0;
  }

  .article-featured-image img {
    max-width: 100%;
    border-radius: 12px;
  }

  .article-content {
    padding: 50px 0 60px;
  }

  .article-body {
    font-size: 16px;
    padding: 0 20px;
  }

  .article-body h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
  }

  .article-body h3 {
    font-size: 1.25rem;
    margin: 30px 0 15px;
  }

  .article-cta {
    padding: 35px 25px;
  }

  .article-cta h3 {
    font-size: 1.5rem;
  }

  .article-cta p {
    font-size: 1rem;
  }
}

@media (width <= 480px) {
  .article-meta {
    flex-direction: column;
    gap: 5px;
  }

  .article-separator {
    display: none;
  }

  .article-featured-image {
    padding: 20px 0;
  }

  .article-featured-image img {
    border-radius: 8px;
  }

  .article-content {
    padding: 40px 0 50px;
  }

  .article-body {
    font-size: 15px;
    padding: 0 15px;
  }

  .article-body h2 {
    font-size: 1.35rem;
  }

  .article-body h3 {
    font-size: 1.15rem;
  }

  .article-cta {
    padding: 30px 20px;
  }

  .article-cta h3 {
    font-size: 1.25rem;
  }

  .article-cta p {
    font-size: 0.95rem;
  }

  .back-link {
    font-size: 15px;
  }
}

@media (width <= 375px) {
  .article-body {
    font-size: 14px;
  }

  .article-cta {
    padding: 25px 18px;
  }

  .article-cta h3 {
    font-size: 1.15rem;
  }
}

/* ============================================
   Page Header Extensions for Blog Articles
   ============================================ */

.page-header .article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 15px;
  color: rgb(255 255 255 / 60%);
}

.page-header .article-separator {
  color: rgb(255 255 255 / 30%);
}

.page-header .article-date,
.page-header .article-reading-time {
  font-weight: 500;
}

/* ============================================
   Author Info Section
   ============================================ */

.author-info-section {
  padding: 40px 0;
  background: rgb(255 255 255 / 3%);
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.author-info {
  display: flex;
  gap: 25px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #01ffbc;
  object-fit: cover;
  flex-shrink: 0;
}

.author-details {
  flex: 1;
}

.author-name {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #ffffff;
}

.author-role {
  color: #01ffbc;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.author-bio {
  color: rgb(255 255 255 / 70%);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   Social Share Buttons
   ============================================ */

.social-share {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  text-align: center;
}

.social-share h4 {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: #ffffff;
}

.share-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Noto Sans', sans-serif;
}

.share-btn:hover {
  transform: translateY(-2px);
  border-color: rgb(255 255 255 / 30%);
}

.share-btn i {
  font-size: 18px;
}

/* Platform-specific hover colors */
.share-linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.share-twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.share-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.share-email:hover {
  background: #ea4335;
  border-color: #ea4335;
}

.share-copy:hover {
  background: #01ffbc;
  border-color: #01ffbc;
  color: #0a0a0a;
}

/* Toast notification for copy success */
.copy-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #01ffbc;
  color: #0a0a0a;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  opacity: 0;
  animation: toastSlideUp 3s ease;
  z-index: 1001;
  pointer-events: none;
}

@keyframes toastSlideUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  10% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  90% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
}

/* ============================================
   Related Posts
   ============================================ */

.related-posts {
  max-width: 1200px;
  margin: 80px auto 60px;
}

.related-posts h3 {
  font-size: 1.75rem;
  margin-bottom: 30px;
  text-align: center;
  color: #ffffff;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-post-card {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-5px);
  border-color: rgb(1 255 188 / 30%);
}

.related-post-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-post-content {
  padding: 20px;
}

.related-post-content h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ffffff;
  line-height: 1.3;
}

.related-post-content p {
  font-size: 14px;
  color: rgb(255 255 255 / 70%);
  line-height: 1.5;
}

/* ============================================
   Responsive Styles for New Blog Components
   ============================================ */

@media (width <= 1024px) {
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 768px) {
  .page-header .article-meta {
    font-size: 14px;
    gap: 10px;
  }

  .author-info {
    flex-direction: column;
    text-align: center;
  }

  .author-info-section {
    padding: 30px 0;
  }

  .social-share {
    padding: 30px 20px;
    margin: 50px auto;
  }

  .social-share h4 {
    font-size: 1.15rem;
  }

  .share-btn span {
    display: none;
  }

  .share-btn {
    padding: 12px;
    min-width: 48px;
    justify-content: center;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .related-posts {
    margin: 60px auto 40px;
  }

  .related-posts h3 {
    font-size: 1.5rem;
  }
}

@media (width <= 480px) {
  .page-header .article-meta {
    flex-direction: column;
    gap: 5px;
  }

  .page-header .article-separator {
    display: none;
  }

  .author-avatar {
    width: 60px;
    height: 60px;
    border-width: 2px;
  }

  .author-name {
    font-size: 1.1rem;
  }

  .author-role {
    font-size: 0.9rem;
  }

  .author-bio {
    font-size: 0.9rem;
  }

  .social-share {
    padding: 25px 15px;
  }

  .share-buttons {
    gap: 10px;
  }

  .share-btn {
    padding: 10px;
    min-width: 44px;
  }

  .share-btn i {
    font-size: 16px;
  }

  .related-posts {
    margin: 50px auto 30px;
  }

  .related-posts h3 {
    font-size: 1.35rem;
    margin-bottom: 20px;
  }

  .related-post-card img {
    height: 160px;
  }

  .related-post-content {
    padding: 15px;
  }

  .related-post-content h4 {
    font-size: 1rem;
  }

  .related-post-content p {
    font-size: 13px;
  }
}

@media (width <= 375px) {
  .author-info-section {
    padding: 25px 0;
  }

  .social-share {
    padding: 20px 12px;
  }

  .related-posts h3 {
    font-size: 1.25rem;
  }
}

/* ========== LANDING PAGE STYLES ========== */

/* LP Header */
.lp-header {
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.lp-header .container {
  display: flex;
  justify-content: flex-start;
}

.lp-logo img {
  height: 40px;
  width: auto;
}

/* LP Stats Source */
.lp-stats-source {
  text-align: center;
  font-size: 14px;
  color: rgb(255 255 255 / 60%);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* LP Hero */
.lp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  padding: 100px 0 60px;
}

.lp-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero with background image */
.lp-hero-bg {
  background-image:
    linear-gradient(135deg, rgb(10 10 10 / 75%) 0%, rgb(26 26 46 / 65%) 100%),
    url('../images/lp/hero-team-bg.webp');
  background-size: cover;
  background-position: center top;
}

.lp-hero-bg .container {
  background: rgb(10 10 10 / 60%);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.lp-hero-bg .lp-hero-visual img {
  max-height: 500px;
  width: auto;
  object-fit: contain;
  border-radius: 16px;
  border: 2px solid #01ffbc;
  box-shadow: 0 0 20px rgb(1 255 188 / 40%), 0 0 40px rgb(1 255 188 / 20%);
}

.lp-hero-content {
  max-width: 600px;
}

.lp-badge {
  display: inline-block;
  background: rgb(1 255 188 / 15%);
  color: #01ffbc;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgb(1 255 188 / 30%);
}

.lp-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.lp-hero h1 .accent {
  color: #01ffbc;
}

.lp-subtitle {
  font-size: 18px;
  color: rgb(255 255 255 / 85%);
  margin-bottom: 25px;
  line-height: 1.6;
}

.lp-hero-benefits {
  margin-bottom: 30px;
}

.lp-hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgb(255 255 255 / 90%);
}

.lp-hero-benefits i {
  color: #01ffbc;
  font-size: 14px;
}

.lp-cta-subtext {
  margin-top: 15px;
  font-size: 14px;
  color: rgb(255 255 255 / 60%);
}

.lp-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* LP Logo Strip */
.lp-logos {
  background: rgb(255 255 255 / 3%);
  padding: 40px 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.lp-logos-title {
  text-align: center;
  font-size: 14px;
  color: rgb(255 255 255 / 50%);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lp-logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.lp-logo-strip img {
  height: 45px;
  width: auto;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.lp-logo-strip img:hover {
  opacity: 1;
}

/* LP Benefits */
.lp-benefits {
  background: #0a0a0a;
  padding: 80px 0;
}

/* LP Stats */
.lp-stats {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
  padding: 60px 0;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* LP Testimonial */
.lp-testimonial {
  background: #0a0a0a;
  padding: 80px 0;
}

.lp-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lp-testimonial-image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.lp-testimonial-quote {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
}

.lp-testimonial-quote blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgb(255 255 255 / 90%);
  margin-bottom: 20px;
  font-style: italic;
}

.lp-testimonial-quote cite {
  display: block;
}

.lp-testimonial-quote cite strong {
  display: block;
  color: #01ffbc;
  font-size: 1rem;
  font-style: normal;
}

.lp-testimonial-quote cite span {
  font-size: 14px;
  color: rgb(255 255 255 / 60%);
  font-style: normal;
}

.lp-testimonial-results {
  display: flex;
  gap: 30px;
}

.lp-result {
  text-align: center;
}

.lp-result-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #01ffbc;
  font-family: Sansation, sans-serif;
}

.lp-result-label {
  font-size: 13px;
  color: rgb(255 255 255 / 70%);
}

/* LP Process Steps */
.lp-process {
  background: linear-gradient(135deg, #0d0d1a 0%, #0a0a0a 100%);
  padding: 80px 0;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.lp-step {
  text-align: center;
  padding: 30px 20px;
}

.lp-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #01ffbc 0%, #00b386 100%);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: Sansation, sans-serif;
}

.lp-step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.lp-step p {
  font-size: 14px;
  color: rgb(255 255 255 / 70%);
  line-height: 1.5;
}

/* LP FAQ */
.lp-faq {
  background: #0a0a0a;
  padding: 80px 0;
}

.lp-faq .accordion {
  max-width: 800px;
  margin: 0 auto;
}

/* LP Final CTA */
.lp-final-cta {
  background: linear-gradient(135deg, #01ffbc 0%, #00b386 100%);
  padding: 80px 0;
  text-align: center;
}

.lp-final-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.lp-urgency {
  display: inline-block;
  background: rgb(10 10 10 / 20%);
  color: #0a0a0a;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.lp-final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #0a0a0a;
  margin-bottom: 20px;
}

.lp-final-cta p {
  font-size: 17px;
  color: rgb(10 10 10 / 80%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.lp-trust-signals {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgb(0 0 0 / 20%);
  padding: 10px 16px;
  border-radius: 8px;
  color: rgb(255 255 255 / 90%);
  font-size: 14px;
  font-weight: 500;
}

.lp-trust-item i {
  color: #01ffbc;
  font-size: 16px;
}

.lp-final-cta .btn-primary {
  background: #0a0a0a;
  color: #01ffbc;
}

.lp-final-cta .btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgb(0 0 0 / 30%);
}

/* LP Minimal Footer */
.lp-minimal-footer {
  background: #050505;
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.lp-minimal-footer p {
  font-size: 13px;
  color: rgb(255 255 255 / 50%);
}

.lp-minimal-footer a {
  color: rgb(255 255 255 / 50%);
  text-decoration: underline;
}

.lp-minimal-footer a:hover {
  color: #01ffbc;
}

/* LP Button Large */
.btn-large {
  padding: 18px 48px;
  font-size: 17px;
}

.btn-large i {
  margin-right: 10px;
}

/* LP Responsive - Tablet */
@media (width <= 1024px) {
  .lp-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-hero-visual {
    order: -1;
  }

  .lp-hero-visual img {
    max-width: 500px;
  }

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

  .lp-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* LP Responsive - Mobile */
@media (width <= 768px) {
  .lp-hero {
    padding: 40px 0;
  }

  .lp-hero h1 {
    font-size: 1.8rem;
  }

  .lp-subtitle {
    font-size: 16px;
  }

  .lp-logo-strip {
    gap: 30px;
  }

  .lp-logo-strip img {
    height: 35px;
  }

  .lp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .lp-testimonial-results {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .lp-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lp-trust-signals {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-large {
    padding: 16px 36px;
    font-size: 16px;
  }
}

/* LP Responsive - Small Mobile */
@media (width <= 480px) {
  .lp-hero {
    padding: 30px 0;
  }

  .lp-hero h1 {
    font-size: 1.5rem;
  }

  .lp-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .lp-subtitle {
    font-size: 15px;
  }

  .lp-hero-benefits li {
    font-size: 14px;
  }

  .lp-logo-strip img {
    height: 30px;
  }

  .lp-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-result-number {
    font-size: 1.5rem;
  }

  .lp-final-cta {
    padding: 60px 0;
  }

  .lp-final-cta h2 {
    font-size: 1.5rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
  }
}

/* LP Responsive - Extra Small */
@media (width <= 375px) {
  .lp-hero h1 {
    font-size: 1.3rem;
  }

  .lp-logo-strip {
    gap: 20px;
  }

  .lp-logo-strip img {
    height: 25px;
  }

  .lp-testimonial-quote {
    padding: 20px;
  }

  .lp-testimonial-quote blockquote {
    font-size: 1rem;
  }

  .lp-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* =====================================================
   LP Extended Components - Services, Cases, ROI, USP, Team
   ===================================================== */

/* Services Grid - 4 columns */
.lp-services {
  padding: 80px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #0a0a0a 100%);
}

.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.lp-service-card {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.lp-service-card:hover {
  background: rgb(255 255 255 / 6%);
  border-color: rgb(1 255 188 / 30%);
  transform: translateY(-4px);
}

.lp-service-card i {
  font-size: 2.5rem;
  color: #01ffbc;
  margin-bottom: 20px;
  display: block;
}

.lp-service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.lp-service-card p {
  font-size: 0.9rem;
  color: rgb(255 255 255 / 70%);
  line-height: 1.6;
}

/* Cases Grid - 3 columns */
.lp-cases {
  padding: 80px 0;
  background: #0a0a0a;
}

.lp-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.lp-case-card {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.lp-case-card:hover {
  border-color: rgb(1 255 188 / 30%);
  transform: translateY(-4px);
}

.lp-case-card-image {
  height: 160px;
  overflow: hidden;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-case-card-image img {
  max-width: 70%;
  max-height: 80px;
  object-fit: contain;
}

.lp-case-card-content {
  padding: 24px;
}

.lp-case-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.lp-case-card p {
  font-size: 0.9rem;
  color: rgb(255 255 255 / 70%);
  line-height: 1.5;
  margin-bottom: 16px;
}

.lp-case-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-case-stat {
  background: rgb(1 255 188 / 10%);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
}

.lp-case-stat strong {
  color: #01ffbc;
  margin-right: 4px;
}

/* ROI Scan Highlight Section */
.lp-roi-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #0d0d1a 100%);
  position: relative;
  overflow: hidden;
}

.lp-roi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgb(1 255 188 / 8%) 0%, transparent 70%);
  pointer-events: none;
}

.lp-roi-card {
  background: rgb(255 255 255 / 3%);
  border: 2px solid rgb(1 255 188 / 30%);
  border-radius: 24px;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.lp-roi-badge {
  display: inline-block;
  background: linear-gradient(135deg, #01ffbc, #00c896);
  color: #0a0a0a;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.lp-roi-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.lp-roi-card > p {
  font-size: 1.1rem;
  color: rgb(255 255 255 / 80%);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lp-roi-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.lp-roi-metric {
  padding: 20px;
  background: rgb(0 0 0 / 30%);
  border-radius: 12px;
}

.lp-roi-metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: #01ffbc;
  font-family: Sansation, sans-serif;
}

.lp-roi-metric-label {
  font-size: 0.9rem;
  color: rgb(255 255 255 / 70%);
  margin-top: 8px;
}

.lp-roi-deliverables {
  text-align: left;
  margin: 32px 0;
  padding: 24px;
  background: rgb(0 0 0 / 20%);
  border-radius: 12px;
}

.lp-roi-deliverables h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #01ffbc;
}

.lp-roi-deliverables ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lp-roi-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgb(255 255 255 / 80%);
}

.lp-roi-deliverables li i {
  color: #01ffbc;
  margin-top: 2px;
  flex-shrink: 0;
}

.lp-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgb(1 255 188 / 15%);
  border: 1px solid rgb(1 255 188 / 30%);
  padding: 12px 24px;
  border-radius: 50px;
  margin-top: 24px;
  font-size: 0.95rem;
}

.lp-guarantee i {
  color: #01ffbc;
}

/* USP Section */
.lp-usp-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.lp-usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.lp-usp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.lp-usp-item:hover {
  border-color: rgb(1 255 188 / 30%);
}

.lp-usp-item i {
  font-size: 1.5rem;
  color: #01ffbc;
  flex-shrink: 0;
  margin-top: 2px;
}

.lp-usp-item p {
  font-size: 1rem;
  color: rgb(255 255 255 / 90%);
  line-height: 1.5;
}

/* Team Section */
.lp-team {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d1a 100%);
}

.lp-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lp-team-member {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.lp-team-member:hover {
  border-color: rgb(1 255 188 / 30%);
}

.lp-team-member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid rgb(1 255 188 / 30%);
}

.lp-team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-team-member h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.lp-team-member .role {
  font-size: 0.9rem;
  color: #01ffbc;
  margin-bottom: 16px;
}

.lp-team-member p {
  font-size: 0.9rem;
  color: rgb(255 255 255 / 70%);
  line-height: 1.6;
}

/* LP Extended Components - Responsive */
@media (width <= 1024px) {
  .lp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .lp-cases-grid .lp-case-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .lp-roi-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width <= 768px) {
  .lp-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-cases-grid {
    grid-template-columns: 1fr;
  }

  .lp-cases-grid .lp-case-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .lp-roi-card {
    padding: 32px 24px;
  }

  .lp-roi-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-roi-deliverables ul {
    grid-template-columns: 1fr;
  }

  .lp-usp-grid {
    grid-template-columns: 1fr;
  }

  .lp-team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (width <= 480px) {
  .lp-service-card {
    padding: 24px 20px;
  }

  .lp-service-card i {
    font-size: 2rem;
  }

  .lp-roi-card {
    padding: 24px 16px;
  }

  .lp-roi-metric-value {
    font-size: 1.5rem;
  }

  .lp-guarantee {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }

  .lp-team-member {
    padding: 24px;
  }

  .lp-team-member-image {
    width: 100px;
    height: 100px;
  }
}
