/* Fortex Clone - CSS Variables */
/* NOTE: Satoshi font is a premium font. 
   If you have Satoshi font files, add them via @font-face.
   Otherwise, Inter (already loaded) will be used as fallback. */
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Regular.woff2') format('woff2'),
    url('fonts/Satoshi-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

:root {
  --primary-color: #ae0079;
  --primary-color-hover: #c7008f;
  --bg-color: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #141414;
  --text-color: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.64);
  --text-tertiary: rgba(255, 255, 255, 0.4);
  --border-color: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Satoshi', 'Inter', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-2xl: 8rem;

  /* Layout */
  --container-max-width: 1280px;
  --section-padding: 8rem 2rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ── Preloader Overlay ─────────────────────────────────────────────── */
#site-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-concentric {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #c7008f;
  /* Primary magenta */
  animation: preloaderSpin 1s linear infinite;
}

.preloader-concentric-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #ae0079;
  /* Slightly darker magenta */
  animation: preloaderSpin 1s linear infinite;
}

@keyframes preloaderSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: auto;
  /* Let Lenis handle smooth scrolling */
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Cursor - Only on desktop */
@media (min-width: 769px) and (pointer: fine) {
  body {
    cursor: none;
  }

  .custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10002;
    mix-blend-mode: difference;
    opacity: 1;
    left: 0;
    top: 0;
    will-change: transform;
    transform-origin: center center;
    /* GSAP handles positioning with x, y, xPercent, yPercent */
  }

  .custom-cursor.hover {
    width: 60px;
    height: 60px;
    border-color: var(--primary-color);
    background: rgba(174, 0, 121, 0.1);
    mix-blend-mode: normal;
  }

  /* White cursor for contact section (pink background) */
  .custom-cursor.in-contact-section {
    border-color: #ffffff;
  }

  .custom-cursor.in-contact-section.hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
  }
}

/* Mobile - use default cursor */
@media (max-width: 768px),
(pointer: coarse) {
  body {
    cursor: auto;
  }

  .custom-cursor {
    display: none !important;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
}

.display-font {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-color);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(174, 0, 121, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

button:hover::before {
  width: 300px;
  height: 300px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  will-change: transform;
  border-radius: 0;
}

/* Premium Image Loading Effect */
img {
  opacity: 1;
  transition: opacity 0.6s ease;
}

img.loaded {
  opacity: 1;
}

/* Lazy load images */
img[data-src] {
  opacity: 0;
  transition: opacity 0.6s ease;
}

img[data-src].loaded {
  opacity: 1;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transform: translateY(0);
}

.navbar.scrolled {
  background-color: transparent;
  box-shadow: none;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--spacing-md);
  padding-left: 180px;
  /* Space for logo */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  position: relative;
}

.nav-logo {
  flex-shrink: 0;
  position: fixed;
  left: 4rem;
  top: 0.5rem;
  z-index: 1001;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-badge {
  font-size: 0.7em;
  color: var(--primary-color);
  vertical-align: super;
  margin-left: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-shrink: 0;
}

.nav-contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  font-size: 12px;
  color: var(--text-secondary);
}

.contact-phone,
.contact-email {
  white-space: nowrap;
}

.nav-social {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Nav Toggle Wrapper with MENU text */
.nav-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-color);
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}

.menu-text.hidden {
  opacity: 0;
  pointer-events: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 40px;
  height: 30px;
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle::before {
  display: none !important;
}

.nav-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}

.nav-toggle:hover::before {
  display: none !important;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) {
  width: 40px;
}

.nav-toggle span:nth-child(2) {
  width: 30px;
}

.nav-toggle span:nth-child(3) {
  width: 20px;
}

.nav-toggle:hover span {
  opacity: 0.7;
}

/* Active state - X animation */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  width: 30px;
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  width: 30px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FULLSCREEN MENU OVERLAY - Matching Fortex Design
   ═══════════════════════════════════════════════════════════════════════════ */

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0a0a0a;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

.fullscreen-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fullscreen-menu-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  padding: 2rem 3rem 3rem;
  align-items: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.fullscreen-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.fullscreen-logo-img {
  height: 6.5rem;
  /* Match the visual size of original FORTEX text */
  width: auto;
}

.fullscreen-close {
  background: none !important;
  border: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 2px solid #ffffff;
  transition: opacity 0.3s ease;
  overflow: visible;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.fullscreen-close::before {
  display: none !important;
  content: none !important;
}

.fullscreen-close:hover {
  opacity: 0.7;
  background: none !important;
}

.fullscreen-close:hover::before {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.fullscreen-close:focus {
  outline: none !important;
  box-shadow: none !important;
}

.fullscreen-menu-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  padding: 2rem 3rem 3rem;
  align-items: flex-start;
}

.fullscreen-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fullscreen-nav-link {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.2;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}

.fullscreen-nav-link:hover {
  opacity: 0.6;
}

.nav-badge {
  font-size: 0.35em;
  font-weight: 400;
  color: var(--primary-color);
  vertical-align: super;
  letter-spacing: 0.02em;
}

.nav-badge.hiring {
  color: var(--primary-color);
}

.fullscreen-right {
  max-width: 380px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 1rem;
}

.fullscreen-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.fullscreen-tagline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

.fullscreen-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.fullscreen-phone {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.fullscreen-email {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.fullscreen-email:hover {
  opacity: 0.7;
}

.fullscreen-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
  min-height: fit-content;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

.fullscreen-social {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.fullscreen-social-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  line-height: 1.5;
}

.fullscreen-social-link:hover {
  opacity: 0.7;
}

.fullscreen-social-link .arrow {
  font-size: 0.75em;
  display: inline-block;
}

.fullscreen-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.fullscreen-legal-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  line-height: 1.5;
}

.fullscreen-legal-link:hover {
  color: #ffffff;
}

.legal-divider {
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

/* Fullscreen menu animations */
.fullscreen-menu .fullscreen-nav-link {
  opacity: 0;
  transform: translateY(30px);
}

.fullscreen-menu.active .fullscreen-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-menu.active .fullscreen-nav-link:nth-child(1) {
  transition-delay: 0.1s;
}

.fullscreen-menu.active .fullscreen-nav-link:nth-child(2) {
  transition-delay: 0.15s;
}

.fullscreen-menu.active .fullscreen-nav-link:nth-child(3) {
  transition-delay: 0.2s;
}

.fullscreen-menu.active .fullscreen-nav-link:nth-child(4) {
  transition-delay: 0.25s;
}

.fullscreen-menu.active .fullscreen-nav-link:nth-child(5) {
  transition-delay: 0.3s;
}

.fullscreen-menu.active .fullscreen-nav-link:nth-child(6) {
  transition-delay: 0.35s;
}

.fullscreen-menu.active .fullscreen-nav-link:nth-child(7) {
  transition-delay: 0.4s;
}

.fullscreen-menu.active .fullscreen-nav-link:nth-child(8) {
  transition-delay: 0.45s;
}

.fullscreen-menu .fullscreen-nav-link {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Responsive adjustments for fullscreen menu */
@media (max-width: 1200px) {
  .fullscreen-menu-footer {
    padding: 1.5rem 2.5rem;
  }
}

@media (max-width: 1024px) {
  .fullscreen-menu-footer {
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }

  .fullscreen-social {
    gap: 1.5rem;
  }

  .fullscreen-legal {
    gap: 0.875rem;
  }
}

@media (max-width: 768px) {
  .fullscreen-menu-header {
    padding: 1rem 1.5rem;
    flex-shrink: 0;
  }

  .fullscreen-menu-content {
    flex-direction: column;
    padding: 1.5rem;
    gap: 2rem;
    overflow-y: auto;
  }

  .fullscreen-right {
    text-align: left;
    max-width: 100%;
    align-items: flex-start;
  }

  .fullscreen-contact {
    align-items: flex-start;
  }

  .fullscreen-menu-footer {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 100%;
  }

  .fullscreen-social {
    width: 100%;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .fullscreen-social-link {
    font-size: 0.9375rem;
    color: #ffffff !important;
    display: flex;
    align-items: center;
  }

  .fullscreen-legal {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.875rem;
  }

  .fullscreen-legal-link {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7) !important;
    display: inline-block;
  }

  .fullscreen-nav-link {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 480px) {
  .fullscreen-menu-footer {
    padding: 1.25rem 1rem;
    gap: 1.25rem;
    flex-shrink: 0;
  }

  .fullscreen-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .fullscreen-social-link {
    font-size: 1rem;
    color: #ffffff !important;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .fullscreen-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
  }

  .fullscreen-legal-link {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8) !important;
    display: inline-block;
    width: 100%;
  }

  .legal-divider {
    display: none;
  }
}

@media (max-width: 360px) {
  .fullscreen-menu-footer {
    padding: 1rem 0.75rem;
    gap: 1rem;
  }

  .fullscreen-social-link,
  .fullscreen-legal-link {
    font-size: 0.875rem;
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  display: flex;
  align-items: flex-end;
  padding: 120px 2rem 4rem;
  padding-bottom: 6rem;
  /* Ensure background covers full width, no split layout */
  background: #0a0a0a;
  box-sizing: border-box;
}

/* === Hero Background === */
.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  z-index: 0;
  transition: transform 0.1s ease-out;
}

.hero-bg-slide-1 {
  cursor: none;
}

/* Hero image visibility - Desktop vs Mobile */
.hero-bg-desktop {
  display: block;
}

.hero-bg-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-bg-desktop {
    display: none;
  }

  .hero-bg-mobile {
    display: block;
  }
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  /* Ensure background covers full width as single image, no split */
  display: block;
  pointer-events: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px) brightness(0.3);
  transform: scale(1.1);
  position: absolute;
  top: 0;
  left: 0;
}

.hero-bg-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px) brightness(0.3);
  transform: scale(1.1);
}

.hero-bg-img-fallback {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px) brightness(0.3);
  transform: scale(1.1);
  z-index: -1;
}

/* Show fallback if video fails to load */
.hero-background-image:has(video:not([src])) .hero-bg-img-fallback,
.hero-background-image video[poster]+.hero-bg-img-fallback {
  display: block;
}

.hero-light-trails {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 40%, rgba(174, 0, 121, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero Caption Overlay (first slide only) */
.hero-caption {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  pointer-events: none;
  opacity: 1;
  will-change: opacity, transform;
  width: 100%;
}

.hero-caption-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-caption-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-color);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-container {
  max-width: var(--container-max-width);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  position: relative;
  z-index: 1;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-xl);
}

.hero-intro {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-color);
  max-width: 600px;
  font-weight: 400;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--font-heading);
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-headline .headline-line1,
.hero-headline .headline-line2,
.hero-headline .headline-line3 {
  display: block;
}

.hero-headline .headline-line2 {
  white-space: nowrap;
  /* Keep "WE MAKE IT" on one line */
}

.hero-headline .headline-line3 {
  white-space: nowrap;
  /* Keep flip-words and "//." together on one line */
}

.hero-headline .highlight-real {
  color: var(--primary-color);
}

/* Flip Words Animation Styles */
.flip-words-container {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  white-space: nowrap;
  overflow: visible;
  text-align: left;
}

.flip-letter {
  display: inline-block;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
  transform-origin: 50% 50%;
}

/* Ensure flip-words stays inline with heading text */
.hero-headline .flip-words-container {
  color: var(--primary-color);
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

/* Placeholder styling before animation starts */
.flip-word-placeholder {
  color: var(--primary-color);
  display: inline-block;
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-md);
}

.scroll-hint-text {
  font-size: 0.875rem;
  color: var(--text-color);
  font-weight: 400;
}

.scroll-hint-line {
  width: 100px;
  height: 1px;
  background-color: var(--primary-color);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: var(--spacing-xl);
}

.hero-services-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: flex-end;
}

.service-link-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  position: relative;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  color: var(--text-color);
  padding: var(--spacing-xs) 0;
  opacity: 1 !important;
  visibility: visible !important;
  justify-content: flex-end;
  /* Align items to the right */
}

.service-link-item:hover {
  transform: translateX(-5px);
}

.service-link-item:hover .service-connector {
  width: 60px;
  opacity: 1;
}

.service-link-item:hover .service-number,
.service-link-item:hover .service-name {
  color: var(--primary-color);
}

.service-number {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--text-color);
  font-weight: 400;
  font-family: var(--font-body);
  white-space: nowrap;
  width: 50px;
  /* Fixed width for alignment */
  text-align: right;
  flex-shrink: 0;
}

.service-connector {
  width: 40px;
  height: 1px;
  background-color: var(--primary-color);
  transition: all var(--transition-base);
  opacity: 0.8;
  flex-shrink: 0;
}

.service-name {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--text-color);
  font-weight: 400;
  font-family: var(--font-body);
  white-space: nowrap;
}

.hero-footer-right {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-sm);
}

.hero-copyright {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 400;
  transform: rotate(180deg);
}

/* Intro Section */
.intro-section {
  padding: var(--section-padding);
  padding-bottom: 0;
  background-color: var(--bg-color);
  position: relative;
  z-index: 10;
  margin-top: -100vh;
  /* Pull up to overlap hero */
  transform: translateY(100vh);
  /* Start below viewport */
  will-change: transform;
  overflow: hidden;
  max-width: 100vw;
}

.intro-section-spacer {
  height: 100vh;
  /* Compensate for negative margin-top */
  width: 100%;
  display: block;
  margin-top: -8rem;
  /* Reduce gap to carousel */
}

.intro-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.intro-tagline {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.intro-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.service-preview {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.service-number {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--font-display);
}

.service-name {
  font-size: 18px;
  color: var(--text-secondary);
}

.intro-main-tagline {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.tagline-line1,
.tagline-line2 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.intro-copyright {
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   IMMERSIVE 3D CAROUSEL SECTION - Exceptional Design
   ═══════════════════════════════════════════════════════════════════════════ */

.carousel-section {
  padding: 6rem 0 8rem;
  background: linear-gradient(180deg,
      var(--bg-color) 0%,
      #0a0a12 30%,
      #080810 70%,
      var(--bg-color) 100%);
  position: relative;
  z-index: 12;
  min-height: 100vh;
  overflow: hidden;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  margin-top: -6rem;
}

/* Atmospheric Background Effects */
.carousel-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.carousel-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: glowPulse 8s ease-in-out infinite;
}

.carousel-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ae0079 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.carousel-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #c7008f 0%, transparent 70%);
  bottom: 10%;
  right: -5%;
  animation-delay: -4s;
}

@keyframes glowPulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

.carousel-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Section Header */
.carousel-header {
  width: 100%;
  max-width: 1400px;
  padding: 0 3rem;
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.carousel-header-left {
  flex: 1;
}

.carousel-section-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ae0079;
  background: rgba(174, 0, 121, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(174, 0, 121, 0.2);
  margin-bottom: 1.5rem;
}

.carousel-main-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  margin: 0;
}

.carousel-main-title .title-line {
  display: block;
}

.carousel-main-title .title-line:first-child {
  color: var(--text-primary);
  background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel-main-title .title-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: transparent;
}

.carousel-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.carousel-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

.carousel-nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-nav-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-nav-btn:hover {
  background: rgba(174, 0, 121, 0.2);
  border-color: rgba(174, 0, 121, 0.4);
  transform: scale(1.05);
}

.carousel-nav-btn:active {
  transform: scale(0.95);
}

.carousel-progress {
  width: 100px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.carousel-progress-bar {
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, #ae0079, #c7008f);
  border-radius: 100px;
  transition: width 0.3s ease;
}

/* Main Carousel Container */
.carousel-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.carousel-wrapper:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Individual Carousel Cards */
.carousel-card {
  flex-shrink: 0;
  width: 340px;
  height: 460px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transform: scale(0.92);
  opacity: 0.6;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 25px 80px -20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.carousel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.4) 70%,
      rgba(0, 0, 0, 0.9) 100%);
  z-index: 2;
  transition: opacity 0.4s ease;
}

.carousel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0.1) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 3;
  pointer-events: none;
}

.carousel-card.active {
  transform: scale(1);
  opacity: 1;
  box-shadow:
    0 35px 100px -20px rgba(174, 0, 121, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 60px -10px rgba(174, 0, 121, 0.2);
}

.carousel-card:hover {
  transform: scale(1.02);
  opacity: 1;
}

.carousel-card.active:hover {
  transform: scale(1.04);
}

/* Card Image */
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card:hover .carousel-image {
  transform: scale(1.08);
}

/* Card Content Overlay */
.carousel-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 5;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card.active .carousel-card-content,
.carousel-card:hover .carousel-card-content {
  transform: translateY(0);
  opacity: 1;
}

.card-category {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ae0079;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-category::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ae0079;
  animation: categoryPulse 2s ease-in-out infinite;
}

@keyframes categoryPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.card-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 0.5rem 0;
  line-height: 1.1;
}

.card-year {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* View Button */
.card-view-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transform: scale(0) rotate(-45deg);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-view-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  transition: transform 0.3s ease;
}

.carousel-card:hover .card-view-btn {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.card-view-btn:hover {
  background: rgba(174, 0, 121, 0.8);
  transform: scale(1.1) rotate(0deg) !important;
}

.card-view-btn:hover svg {
  transform: translate(2px, -2px);
}

/* Floating Indicator */
.carousel-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  animation: indicatorFloat 3s ease-in-out infinite;
}

@keyframes indicatorFloat {

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

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

.indicator-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(174, 0, 121, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: indicatorArrow 1.5s ease-in-out infinite;
}

.indicator-icon svg {
  width: 16px;
  height: 16px;
  stroke: #ae0079;
}

@keyframes indicatorArrow {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(3px);
  }
}

.indicator-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* Full Image Overlay */
.carousel-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.overlay-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 90%;
  max-height: 90%;
}

.carousel-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.carousel-close svg {
  width: 24px;
  height: 24px;
}

.carousel-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.carousel-full-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-overlay.active .carousel-full-image {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.overlay-info {
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.carousel-overlay.active .overlay-info {
  transform: translateY(0);
  opacity: 1;
}

.overlay-info .overlay-category {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ae0079;
  display: block;
  margin-bottom: 0.5rem;
}

.overlay-info .overlay-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .carousel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 0 2rem;
  }

  .carousel-header-right {
    align-items: flex-start;
    width: 100%;
  }

  .carousel-subtitle {
    text-align: left;
  }

  .carousel-card {
    width: 300px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .carousel-section {
    padding: 4rem 0 6rem;
  }

  .carousel-header {
    padding: 0 1.5rem;
    margin-bottom: 2.5rem;
  }

  .carousel-main-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .carousel-wrapper {
    height: 420px;
  }

  .carousel-card {
    width: 260px;
    height: 350px;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .carousel-indicator {
    padding: 0.75rem 1.25rem;
  }

  .carousel-nav-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-progress {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .carousel-card {
    width: 240px;
    height: 320px;
  }

  .carousel-card-content {
    padding: 1.5rem;
  }

  .carousel-indicator {
    display: none;
  }
}

/* Clients Section */
/* Clients Section - Matching Fortex Design */
.clients-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 15;
  /* Higher than intro section so it appears on top */
}

.clients-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.clients-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-2xl);
  position: relative;
}

.section-header-left {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

/* Remove any inherited padding from parent containers */
.clients-header,
.why-us-header,
.services-section-header,
.process-section-header,
.insights-header,
.faq-section-header {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* All section headers at exact same position from left edge of viewport */
.clients-container,
.why-us-container,
.services-section-header,
.process-section-header,
.insights-header,
.faq-section-header {
  padding-left: 5vw !important;
  padding-right: 2rem;
}

@media (max-width: 768px) {

  .clients-container,
  .why-us-container,
  .services-section-header,
  .process-section-header,
  .insights-header,
  .faq-section-header {
    padding-left: 1.5rem !important;
  }
}

.section-accent-bar {
  width: 4px;
  height: 60px;
  background-color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.section-header-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.section-number {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1;
  display: block;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--font-body);
  text-transform: none;
  line-height: 1.2;
  display: block;
  margin: 0;
}

.section-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-xs);
}

.clients-copyright {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1;
}

.clients-brand {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-card {
  background-color: var(--bg-secondary);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  min-height: 300px;
  position: relative;
  cursor: pointer;
  transition: background-color var(--transition-base);
}

.client-card:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.client-logo-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.client-logo-svg {
  width: 100%;
  height: 100%;
  color: var(--text-color);
}

.client-logo-img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  filter: brightness(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.client-card:hover .client-logo-img {
  filter: brightness(1.2);
  transform: scale(1.05);
}

.client-name {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--font-body);
  text-align: center;
}

.client-identifier {
  position: absolute;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHY CHOOSE US SECTION - Matching Fortex Design Screenshots
   ═══════════════════════════════════════════════════════════════════════════ */

.why-us-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

.why-us-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.why-us-header {
  margin-bottom: var(--spacing-lg);
}

.why-us-content {
  margin-top: var(--spacing-lg);
  text-align: center;
}

/* Main Title - Centered with highlight */
.why-us-main-title {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 400;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--spacing-lg);
  color: var(--text-color);
  text-align: center;
  position: relative;
}

.why-us-main-title .title-highlight {
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.why-us-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto var(--spacing-2xl);
  max-width: 700px;
  text-align: center;
}

/* Two-Column Blocks Grid */
.why-us-blocks {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-lg);
  align-items: stretch;
  margin-bottom: 0;
}

.why-us-block {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
}

/* Experience Block - Left Side */
.experience-block {
  background: linear-gradient(145deg, #1a1a1f 0%, #0f0f12 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  /* Pointy corners */
}

.block-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-family: var(--font-heading);
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  text-align: left;
}

.block-description {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--spacing-xl);
  text-align: left;
}

.block-description strong {
  font-weight: 600;
  color: var(--text-color);
}

/* Project Thumbnails - Horizontal Row */
.project-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-sm);
  margin-top: auto;
}

.thumbnail-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0c;
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0.9;
}

.thumbnail-item:hover .thumbnail-image {
  transform: scale(1.1);
  opacity: 1;
}

.thumbnail-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.thumb-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Different colored dots for each thumbnail - magenta theme */
.thumbnail-item:nth-child(1) .thumb-icon {
  background: linear-gradient(135deg, #ae0079 0%, #c7008f 100%);
}

.thumbnail-item:nth-child(2) .thumb-icon {
  background: linear-gradient(135deg, #c7008f 0%, #e600a6 100%);
}

.thumbnail-item:nth-child(3) .thumb-icon {
  background: linear-gradient(135deg, #9e006d 0%, #ae0079 100%);
}

.thumbnail-item:nth-child(4) .thumb-icon {
  background: linear-gradient(135deg, #d100a0 0%, #f000b8 100%);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLLING TESTIMONIALS ANIMATION
   ═══════════════════════════════════════════════════════════════════════════ */

.testimonials-container {
  margin-top: 1.5rem;
  max-height: 380px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.testimonials-columns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.testimonials-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: scrollUp 15s linear infinite;
}

.testimonials-column:nth-child(2) {
  animation-duration: 19s;
  animation-direction: reverse;
}

.testimonials-column:nth-child(3) {
  animation-duration: 17s;
}

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

  100% {
    transform: translateY(-50%);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  max-width: 220px;
  box-shadow: 0 4px 20px rgba(174, 0, 121, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(174, 0, 121, 0.2);
}

.testimonial-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(174, 0, 121, 0.3);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
}

.testimonial-role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

/* Hide third column on smaller screens */
.testimonials-column-third {
  display: none;
}

@media (min-width: 900px) {
  .testimonials-column-third {
    display: flex;
  }
}

@media (max-width: 600px) {
  .testimonials-columns {
    gap: 0.75rem;
    flex-direction: column;
  }

  .testimonial-card {
    max-width: 100%;
    width: 100%;
    padding: 1rem;
  }

  .testimonial-text {
    font-size: 0.75rem;
  }

  /* Disable animation on mobile to prevent overflow */
  .testimonials-column {
    animation: none;
    width: 100%;
  }
}

/* Pause animation on hover */
.testimonials-container:hover .testimonials-column {
  animation-play-state: paused;
}

/* Disable animation on touch devices */
@media (pointer: coarse) {
  .testimonials-column {
    animation: none;
  }
}

/* Re-enable scroll animation on mobile (single card cycles through reviews) */
@media (max-width: 768px) and (pointer: coarse) {
  .testimonials-column {
    animation: scrollUp 15s linear infinite;
  }
}

/* Satisfaction Block - Right Side */
.satisfaction-block {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

.satisfaction-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.satisfaction-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.satisfaction-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(180deg,
      transparent 0%,
      transparent 30%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.6) 100%);
}

.satisfaction-label {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.satisfaction-value {
  font-size: clamp(4.5rem, 12vw, 7rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-color);
  line-height: 0.9;
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.satisfaction-sublabel {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.satisfaction-rating {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars .star {
  color: #fbbf24;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.rating-text {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--text-color);
  margin-left: var(--spacing-xs);
}

.satisfaction-tagline {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, 0.8);
}

.satisfaction-tagline strong {
  color: var(--text-color);
  font-weight: 600;
}

/* Orange Corner Accent */
.satisfaction-accent {
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  width: clamp(40px, 5vw, 60px);
  height: clamp(40px, 5vw, 60px);
  border-right: 3px solid var(--primary-color);
  border-top: 3px solid var(--primary-color);
}

/* ═══════════════════════════════════════════════════════════════════════════
   THREE PANELS SECTION - Matching Fortex Design Screenshots
   ═══════════════════════════════════════════════════════════════════════════ */

.why-us-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: var(--spacing-2xl);
  width: 100%;
  min-height: 85vh;
  margin-left: calc(-1 * var(--spacing-xl));
  margin-right: calc(-1 * var(--spacing-xl));
  width: calc(100% + var(--spacing-xl) * 2);
}

.panel {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 85vh;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING PANEL - Left Panel with Image Background
   ═══════════════════════════════════════════════════════════════════════════ */

.pricing-panel {
  background-color: #1a1a1f;
  position: relative;
}

.pricing-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 85vh;
  display: flex;
}

.pricing-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85);
}

.pricing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      rgba(0, 0, 0, 0.4) 70%,
      rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}


.pricing-note-top {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: var(--spacing-lg);
}

.pricing-note-top::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
  display: inline-block;
  flex-shrink: 0;
}

.pricing-content-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  width: 100%;
}

.pricing-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  font-family: var(--font-heading);
  line-height: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-word-flexible {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 0.15em 0.4em;
  font-weight: 400;
}

.pricing-word-pricing {
  display: block;
  color: var(--text-color);
  margin-top: 0.1em;
  font-weight: 400;
}

.pricing-subheadline {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
  max-width: 300px;
}

.pricing-note {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.pricing-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 1rem 2rem;
  background-color: var(--text-color);
  color: var(--bg-color);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 200px;
}

.pricing-cta-button:hover {
  background-color: var(--primary-color-hover);
  color: var(--text-color);
  transform: translateY(-2px);
}

.cta-arrow {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.pricing-cta-button:hover .cta-arrow {
  transform: translate(2px, -2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES PANEL - Center Panel with Two Feature Items
   ═══════════════════════════════════════════════════════════════════════════ */

.features-panel {
  background-color: #0f0f12;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  min-height: 85vh;
  height: 100%;
  position: relative;
}

.feature-item {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  background-color: transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.feature-icon {
  width: clamp(50px, 6vw, 70px);
  height: clamp(50px, 6vw, 70px);
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.feature-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-family: var(--font-heading);
  color: var(--text-color);
  margin-bottom: var(--spacing-sm);
}

.feature-description {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px;
}

/* Corner Bracket Accents */
.feature-accent {
  position: absolute;
  width: clamp(20px, 3vw, 30px);
  height: clamp(20px, 3vw, 30px);
  border: 2px solid var(--primary-color);
  opacity: 1;
}

.feature-accent-top-left {
  top: clamp(1rem, 2vw, 1.5rem);
  left: clamp(1rem, 2vw, 1.5rem);
  border-right: none;
  border-bottom: none;
}

.feature-accent-bottom-right {
  bottom: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  border-left: none;
  border-top: none;
}

.feature-item:nth-child(2) {
  margin-top: 0;
}

/* Remove the horizontal divider */
.features-panel::before {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUPPORT PANEL - Right Panel with Chat Interface
   ═══════════════════════════════════════════════════════════════════════════ */

.support-panel {
  background-color: #0f0f12;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  min-height: 85vh;
  height: auto;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Red Top Accent Bar */
.support-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-color);
}

.support-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-sm);
}

.support-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  font-family: var(--font-heading);
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}

/* Hamburger Menu Icon */
.support-menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 30px;
  justify-content: center;
  align-items: flex-end;
}

.support-menu-btn span {
  height: 2px;
  background: #ffffff;
  display: block;
  transition: width 0.2s ease;
}

.support-menu-btn span:nth-child(1) {
  width: 20px;
}

.support-menu-btn span:nth-child(2) {
  width: 16px;
}

.support-menu-btn span:nth-child(3) {
  width: 20px;
}

.support-menu-btn:hover span {
  width: 20px;
}

.support-menu-btn:disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}

.support-menu-btn:disabled:hover span {
  width: 20px;
}

.support-tagline {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
  max-width: 100%;
}

.support-tagline strong,
.support-tagline em {
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CHAT WINDOW - Messaging Interface
   ═══════════════════════════════════════════════════════════════════════════ */

.chat-window {
  display: flex;
  flex-direction: column;
  background-color: #1a1a1f;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex: 1;
  width: 100%;
  min-height: 350px;
}


/* Chat Conversation Area */
.chat-conversation {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(1rem, 2vw, 1.5rem);
  flex: 1;
  overflow-y: auto;
  background: #1a1a1f;
}

.chat-message {
  display: flex;
  width: 100%;
  align-items: flex-end;
}

.chat-message-user {
  justify-content: flex-start;
}

.chat-message-agent {
  justify-content: flex-end;
}

/* Chat Bubbles */
.chat-bubble {
  padding: 12px 16px;
  border-radius: 20px;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.5;
  word-wrap: break-word;
  position: relative;
  max-width: 85%;
}

.chat-message-user .chat-bubble {
  background-color: #ffffff;
  color: #1a1a1f;
  border-bottom-left-radius: 6px;
}

.chat-message-agent .chat-bubble {
  background: linear-gradient(135deg, #ae0079 0%, #c7008f 100%);
  color: #ffffff;
  border-bottom-right-radius: 6px;
}

/* WhatsApp-style timestamps */
.chat-time {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  margin-top: 4px;
}

.chat-message-user .chat-time {
  color: rgba(0, 0, 0, 0.45);
}

/* Chat Input Area */
.chat-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #1a1a1f;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.chat-input {
  flex: 1;
  background: #2a2a30;
  border: none;
  border-radius: 24px;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 12px 18px;
  outline: none;
  transition: all 0.2s ease;
}

.chat-input:focus {
  background: #35353d;
  box-shadow: 0 0 0 2px rgba(174, 0, 121, 0.3);
}

.chat-input:disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.6;
}

.chat-input:disabled:focus {
  background: #2a2a30;
  box-shadow: none;
}

.chat-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Chat Input Icons */
.chat-input-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-icon-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s ease;
  border-radius: 50%;
}

.chat-icon-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

.chat-icon-btn:disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}

.chat-icon-btn:disabled:hover {
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.chat-icon-btn svg {
  width: 18px;
  height: 18px;
}

.chat-send-btn {
  display: none;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  opacity: 0.7;
}

.chat-send-btn {
  background-color: var(--primary-color);
  color: var(--text-color);
  opacity: 1;
  font-size: 1rem;
  font-weight: 600;
}

.chat-icon-btn:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.chat-send-btn:hover {
  background-color: var(--primary-color-hover);
  transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
}

.pricing-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.pricing-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: var(--spacing-xs);
}

.pricing-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.pricing-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}

.pricing-note {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: var(--spacing-lg);
}

.pricing-cta {
  display: inline-block;
  padding: 16px 32px;
  background-color: var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: var(--spacing-xl);
  transition: background-color var(--transition-base);
}

.pricing-cta:hover {
  background-color: var(--primary-color-hover);
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.pricing-feature h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.pricing-feature p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-support {
  margin-top: var(--spacing-xl);
}

.pricing-support h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.pricing-support p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.support-chat {
  background-color: var(--bg-color);
  border-radius: 16px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.chat-message {
  margin-bottom: var(--spacing-md);
}

.chat-message:last-child {
  margin-bottom: 0;
}

.chat-reply {
  margin-left: var(--spacing-lg);
}

.chat-question,
.chat-answer {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
}

.chat-button {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: 8px;
  font-weight: 600;
  margin-top: var(--spacing-md);
}

.pricing-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  margin-top: var(--spacing-xl);
}

/* ═══════════════════════════════════════════════════════════════════════════
   OUR WORKS - ZOOM PARALLAX SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.our-works-section {
  background-color: #111;
}

.our-works-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.our-works-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  font-family: var(--font-heading);
  color: var(--text-color);
  margin-bottom: 1rem;
}

.our-works-title .title-highlight {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.our-works-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.zoom-parallax-container {
  position: relative;
  height: 200vh;
  background: transparent;
}

/* Ensure desktop zoom animation works correctly */
@media (min-width: 1025px) {
  .zoom-parallax-container {
    height: 200vh;
  }

  .zoom-parallax-sticky {
    overflow: hidden;
  }

  .works-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
    max-width: 1200px;
  }

  .works-item-3.works-center {
    grid-column: 2;
    grid-row: 2;
    height: 220px;
  }

  .works-center {
    transform-origin: 50% 50% !important;
  }
}

.zoom-parallax-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  z-index: 10;
  /* Above services section so it fades out to reveal services */
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #111;
}

/* Black overlay that fades in as image dissolves */
.zoom-black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  opacity: 0;
  z-index: 200;
  pointer-events: none;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1rem;
  max-width: 1200px;
  width: 100%;
}

.works-item {
  overflow: hidden;
  border-radius: 0;
  will-change: transform;
}

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

/* Center image - will zoom to fill screen */
.works-item.works-center {
  z-index: 100;
  transform-origin: center center !important;
}

/* Row 1: Left tall, Right wide */
.works-item-1 {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 400px;
}

.works-item-2 {
  grid-column: 2 / 4;
  grid-row: 1;
  height: 250px;
}

/* Row 2: Center (main zoom), Right */
.works-item-3 {
  grid-column: 2;
  grid-row: 2;
  height: 220px;
  z-index: 10;
}

.works-item-4 {
  grid-column: 3;
  grid-row: 2;
  height: 220px;
}

/* Row 3: Three images */
.works-item-5 {
  grid-column: 1;
  grid-row: 3;
  height: 200px;
}

.works-item-6 {
  grid-column: 2;
  grid-row: 3;
  height: 200px;
}

.works-item-7 {
  grid-column: 3;
  grid-row: 3;
  height: 150px;
  align-self: start;
}

/* Center image gets special treatment */
.works-center {
  transform-origin: center center !important;
  position: relative;
}

/* Download button for brochure */
.brochure-download-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 150;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: auto;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

.brochure-download-btn:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.brochure-download-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.brochure-download-btn span {
  white-space: nowrap;
  font-size: 0.6875rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .works-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .works-item-1 {
    grid-row: 1;
    height: 200px;
  }

  .works-item-2 {
    grid-column: 2;
    height: 200px;
  }

  .works-item-3 {
    grid-column: 1 / 3;
    grid-row: 2;
    height: 250px;
  }

  .works-item-4 {
    grid-column: 1;
    grid-row: 3;
    height: 180px;
  }

  .works-item-5 {
    grid-column: 2;
    grid-row: 3;
    height: 180px;
  }

  .works-item-6,
  .works-item-7 {
    display: none;
  }

  .brochure-download-btn {
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.6875rem;
    gap: 0.375rem;
  }

  .brochure-download-btn svg {
    width: 12px;
    height: 12px;
  }

  .brochure-download-btn span {
    font-size: 0.625rem;
  }
}

@media (max-width: 600px) {
  .zoom-parallax-container {
    height: 150vh;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .works-item {
    height: 180px !important;
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .works-item-4,
  .works-item-5 {
    display: none;
  }

  .brochure-download-btn {
    bottom: 0.5rem;
    right: 0.5rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.625rem;
    gap: 0.25rem;
  }

  .brochure-download-btn svg {
    width: 11px;
    height: 11px;
  }

  .brochure-download-btn span {
    font-size: 0.5625rem;
  }
}

/* Services Section */
.services-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

.services-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.services-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.services-main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.services-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
}

.services-grid {
  display: grid;
  gap: var(--spacing-2xl);
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--spacing-md);
  align-items: start;
}

.service-number {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--primary-color);
  line-height: 1;
}

.service-divider {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-tertiary);
}

.service-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  grid-column: 2;
}

.service-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  grid-column: 2;
}

.service-cta {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: var(--spacing-lg);
  grid-column: 2;
  transition: background-color var(--transition-base);
}

.service-cta:hover {
  background-color: var(--primary-color-hover);
}

.service-images {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.service-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROJECTS COUNTER SECTION - Compact Version
   ═══════════════════════════════════════════════════════════════════════════ */

.projects-counter-section {
  background-color: #0a0a0a;
  padding: 3rem 2rem 2rem;
}

.counter-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.counter-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.counter-number {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 400;
  font-family: var(--font-heading);
  line-height: 1;
  color: #ffffff;
}

.counter-plus {
  color: var(--primary-color);
  font-weight: 300;
}

.counter-value {
  color: #ffffff;
}

.counter-text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.4;
  font-family: var(--font-heading);
}

.counter-underline {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.counter-faded {
  color: rgba(255, 255, 255, 0.35);
}

.counter-white {
  color: #ffffff;
}

.counter-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #e85a3c;
  color: #ffffff;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.3s ease;
}

.counter-cta:hover {
  background-color: #d14a2c;
}

.cta-arrow-icon {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .projects-counter-section {
    padding: 2rem 1.5rem 1.5rem;
  }

  .counter-number {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .counter-text {
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES SECTION - NEW INTERACTIVE MENU STYLE
   ═══════════════════════════════════════════════════════════════════════════ */

.services-section-new {
  padding: 4rem 2rem 6rem;
  background-color: #0a0a0a;
  min-height: 100vh;
  position: relative;
  margin-top: -100vh;
  /* Overlap with zoom section */
  z-index: 5;
}

.services-section-header {
  max-width: 100%;
  width: 100%;
  margin: 0 0 3rem 0;
}

.services-new-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

/* Left Side - Preview */
.services-left {
  position: sticky;
  top: 120px;
}

.services-preview {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.services-preview:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.services-preview-image {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0;
}

.services-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.3s ease;
}

.services-preview:hover .services-preview-image img {
  transform: scale(1.05);
}

.services-preview-content {
  max-width: 320px;
}

.preview-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.preview-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
}

/* Right Side - Menu */
.services-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.services-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-menu-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-menu-item:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-number {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  min-width: 50px;
  transition: color 0.3s ease;
}

.menu-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-heading);
  line-height: 1.1;
  transition: color 0.3s ease;
}

/* Hover and Active States */
.service-menu-item:hover .menu-title,
.service-menu-item.active .menu-title {
  color: #ffffff;
}

.service-menu-item:hover .menu-number,
.service-menu-item.active .menu-number {
  color: var(--primary-color);
}

/* See Pricing Link */
.services-see-pricing {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  padding-top: 2rem;
}

.services-see-pricing:hover {
  opacity: 0.7;
}

.pricing-arrow {
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 900px) {
  .services-new-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-left {
    position: relative;
    top: 0;
    order: 2;
  }

  .services-right {
    order: 1;
  }

  .services-preview-image,
  .services-preview-content {
    max-width: 100%;
  }

  .menu-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* Process Section */
.process-section {
  padding: 80px 2rem 120px;
  background-color: #0a0a0a;
  color: #ffffff;
}

.process-section-header {
  margin-bottom: 60px;
}

/* Override colors for dark background - keep same sizes as 001/002/003 */
.process-section-header .section-number {
  color: rgba(255, 255, 255, 0.5);
}

.process-section-header .section-title {
  color: rgba(255, 255, 255, 0.8);
}

.process-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.process-left {
  position: relative;
}

.process-main-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  font-family: var(--font-display);
  margin-bottom: 24px;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.process-description {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  max-width: 500px;
}

.process-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.process-cta:hover {
  opacity: 0.7;
}

.process-cta .cta-arrow {
  font-size: 18px;
}

.process-right {
  display: flex;
  flex-direction: column;
}

.process-step {
  position: relative;
  padding: 40px 0;
}

.step-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.step-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.step-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}

.step-info {
  flex: 1;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

/* Process Section Mobile */
@media (max-width: 900px) {
  .process-container {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 3rem;
  }

  .process-left {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    order: 1 !important;
    width: 100% !important;
    margin-bottom: 2rem;
    z-index: 1;
  }

  .process-right {
    order: 2 !important;
    width: 100% !important;
    z-index: 2;
  }

  .process-main-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
}

@media (max-width: 768px) {
  .process-container {
    padding: 0 1.5rem;
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
  }

  .process-left {
    order: 1 !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-bottom: 2rem;
  }

  .process-right {
    order: 2 !important;
    width: 100% !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUCCESS STORIES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.success-stories-section {
  padding: 2rem;
  background-color: #0a0a0a;
}

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

/* Base Card Styles */
.story-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  position: relative;
}

/* Card 1 - Title Card (White) */
.story-card-title {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
}

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

.story-brand {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: 0.05em;
}

.story-corner-accent {
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.story-card-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.story-main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.1;
  font-family: var(--font-display);
}

.story-tagline {
  font-size: 15px;
  line-height: 1.5;
  color: #666;
  margin-top: auto;
}

/* Card 2 - Image Card */
.story-card-image {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.story-person-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.story-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(232, 121, 102, 0.95) 0%, rgba(232, 121, 102, 0.85) 70%, transparent 100%);
  color: #fff;
}

.story-quote {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.story-divider {
  width: 40px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.story-author-simple {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.story-author-simple .author-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.story-author-simple .author-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* Card 3 - Dark Stats Card */
.story-card-dark {
  background-color: #0a0a0a;
  color: #fff;
}

.story-stars {
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.story-stars-red {
  color: var(--primary-color);
}

.story-stars-dark {
  color: #0a0a0a;
}

.story-quote-dark {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2rem;
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.story-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.stat-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.story-divider-dark {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 1.5rem;
}

.story-author-dark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.author-avatar-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.story-author-dark .author-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.story-author-dark .author-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* Card 4 - Light Stats Card */
.story-card-light {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  color: #0a0a0a;
}

.story-quote-light {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #0a0a0a;
  margin-bottom: 2rem;
}

.stat-number-dark {
  font-size: 2.5rem;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1;
}

.stat-text-dark {
  font-size: 13px;
  color: #666;
}

.story-divider-light {
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  margin-bottom: 1.5rem;
}

.story-author-light {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.author-name-dark {
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
}

.author-role-dark {
  font-size: 12px;
  color: #666;
}

/* Success Stories Responsive */
@media (max-width: 1200px) {
  .success-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .success-stories-section {
    padding: 1rem;
  }

  .success-stories-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    min-height: 400px;
  }

  /* Keep face visible on mobile - position image so head/face stays in frame */
  .story-card-image .story-person-image {
    object-fit: cover;
    object-position: center 25%;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LATEST INSIGHTS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.insights-section {
  padding: var(--section-padding);
  background-color: #0a0a0a;
}

.insights-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

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

/* Title Row */
.insights-title-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
  padding-left: 5vw;
  padding-right: 5vw;
}

.insights-main-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  font-family: var(--font-display);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.insights-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 350px;
  padding-top: 1rem;
}

.insights-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 16px;
  font-weight: 500;
  color: #0a0a0a;
  text-decoration: none;
  justify-self: end;
  padding-top: 1rem;
}

.insights-link .link-arrow {
  font-size: 18px;
}

/* Blog Posts Grid */
.insights-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  padding-left: 5vw;
  padding-right: 5vw;
}

.insight-post {
  display: flex;
  flex-direction: column;
}

.insight-image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.insight-featured .insight-image-wrapper {
  height: 400px;
}

.insight-small .insight-image-wrapper {
  height: 200px;
}

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

.insight-corner-accent {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.insight-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.insight-date {
  font-size: 13px;
  color: var(--text-tertiary);
}

.insight-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.insight-featured .insight-title {
  font-size: 28px;
}

.insight-read-more {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 0.5rem;
}

.insight-read-more:hover {
  background-color: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

.insights-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Insights Responsive */
@media (max-width: 1024px) {
  .insights-title-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .insights-link {
    justify-self: start;
  }

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

  .insights-side {
    flex-direction: row;
  }

  .insight-small {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .insights-header {
    padding-left: 0;
  }

  .insights-title-row {
    padding: 0;
  }

  .insights-grid {
    padding: 0;
  }

  .insights-side {
    flex-direction: column;
  }

  .insight-featured .insight-image-wrapper {
    height: 300px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ SECTION - NEW DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

.faq-section-new {
  padding: var(--section-padding);
  background-color: #141414;
}

.faq-container-new {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.faq-section-header {
  margin-bottom: 3rem;
}

/* Two Column Layout */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-left: 5vw;
  padding-right: 5vw;
}

.faq-left {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.faq-main-title-new {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  font-family: var(--font-display);
  color: #fff;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.faq-description-new {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 350px;
  margin-bottom: 3rem;
}

.faq-cta {
  margin-top: auto;
}

.faq-cta-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-cta-button:hover {
  background-color: var(--primary-color-hover);
  color: #ffffff;
}

.faq-cta-button .button-arrow {
  font-size: 16px;
}

/* FAQ Accordion */
.faq-right {
  padding-top: 0.5rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item-new {
  cursor: pointer;
}

.faq-item-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.faq-item-number {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  min-width: 50px;
}

.faq-item-number .slash {
  color: var(--primary-color);
}

.faq-item-question {
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.faq-toggle {
  font-size: 24px;
  color: var(--text-tertiary);
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-item-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-new.active .faq-item-answer {
  max-height: 200px;
  padding-bottom: 1rem;
}

.faq-item-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding-left: calc(50px + 1.5rem);
  max-width: 700px;
}

.faq-item-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* FAQ Responsive */
@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-left {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .faq-layout {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .faq-item-question {
    font-size: 17px;
  }

  .faq-item-answer p {
    padding-left: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION - NEW DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-section-new {
  padding: 6rem 0;
  background-color: var(--primary-color);
}

.contact-container-new {
  max-width: 100%;
  width: 100%;
  padding: 0 5vw;
}

.contact-main-title-new {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  font-family: var(--font-display);
  color: #fff;
  line-height: 1;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.contact-main-title-new .title-slash {
  font-style: italic;
}

/* Two Column Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-description-new {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 400px;
}

.contact-info-new {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  color: #0a0a0a;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info-label {
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0;
}

.contact-info-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
}

/* Contact Form */
.contact-right {
  padding-top: 0;
}

.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group-new {
  margin-bottom: 1.5rem;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  transition: border-color 0.3s ease;
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-bottom-color: #0a0a0a;
}

.form-textarea-new {
  resize: vertical;
  min-height: 100px;
}

/* Phone Input Wrapper */
.phone-input-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 1rem;
}

.phone-country-code {
  flex-shrink: 0;
  width: auto;
  min-width: 100px;
  max-width: 130px;
  padding: 0;
  border: none;
  border-bottom: none;
  background: transparent;
  font-size: 18px;
  color: #fff;
  font-family: var(--font-body);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

.phone-country-code:focus {
  outline: none;
}

.phone-country-code option {
  background-color: #1a1a1a;
  color: #fff;
}

.phone-number-input {
  flex: 1;
  border-bottom: none;
  padding-left: 0;
}

.phone-input-wrapper:focus-within {
  border-bottom-color: #0a0a0a;
}

@media (max-width: 768px) {
  .phone-country-code {
    min-width: 90px;
    max-width: 110px;
    font-size: 16px;
  }

  .phone-number-input {
    font-size: 16px;
  }
}

.form-submit-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: #fff;
  color: #0a0a0a;
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 1rem;
}

.form-submit-new:hover {
  transform: translateY(-2px);
}

.form-submit-new .button-arrow {
  font-size: 16px;
}

.form-disclaimer-new {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  margin-top: 1.5rem;
}

.form-disclaimer-new a {
  color: #0a0a0a;
  font-weight: 500;
  text-decoration: none;
}

.form-disclaimer-new a:hover {
  text-decoration: underline;
}

/* Form Popup Notification */
.form-popup-notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background-color: #0a0a0a;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 300px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .form-popup-notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    font-size: 13px;
    padding: 0.875rem 1.25rem;
  }
}

/* Contact Responsive */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-container-new {
    padding: 0 1.5rem;
  }

  .contact-main-title-new {
    font-size: clamp(3rem, 12vw, 5rem);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER - NEW DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

.footer-new {
  background-color: #0a0a0a;
}

/* Footer Top Section */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-intro-text {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  max-width: 350px;
}

.footer-email-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.footer-email-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  font-family: var(--font-body);
}

.footer-email-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-email-input:focus {
  outline: none;
}

.footer-email-submit {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.footer-email-submit:hover {
  background-color: var(--primary-color-hover);
}

.footer-terms {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-terms a {
  color: #fff;
  text-decoration: none;
}

.footer-terms a:hover {
  text-decoration: underline;
}

/* Footer Navigation */
.footer-top-nav {
  display: flex;
  gap: 6rem;
  justify-content: flex-end;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-link {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
  opacity: 0.7;
}

.footer-nav-link .nav-tag {
  font-size: 12px;
  color: var(--primary-color);
  vertical-align: super;
}

/* Footer Middle Section */
.footer-middle {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  padding: 4rem 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-large {
  display: flex;
  align-items: flex-start;
}

.footer-brand-large .brand-text {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  line-height: 0.85;
  letter-spacing: -0.02em;
}

.footer-brand-large .brand-reg {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  color: #fff;
  vertical-align: top;
  margin-left: 0.5rem;
}

.footer-social-new {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.social-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.social-label .label-slash {
  color: var(--primary-color);
}

.social-links-new {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.social-link-new {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}

.social-link-new:hover {
  opacity: 0.7;
}

.social-link-new span {
  font-size: 16px;
}


/* Footer Bottom Section */
.footer-bottom-new {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2rem;
  padding: 2rem 5vw;
  align-items: start;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-legal-links {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

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

.footer-copyright-new {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-center {
  text-align: center;
}

.footer-company-info {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
}

.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.credit-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.framer-icon {
  font-size: 16px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top-nav {
    justify-content: flex-start;
    gap: 4rem;
  }

  .footer-middle {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-social-new {
    align-items: flex-start;
  }

  .social-links-new {
    align-items: flex-start;
  }

  .footer-bottom-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-center {
    text-align: left;
  }

  .footer-bottom-right {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 3rem 1.5rem;
  }

  .footer-top-nav {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-nav-link {
    font-size: 18px;
  }

  .footer-middle {
    padding: 3rem 1.5rem;
  }

  .footer-brand-large .brand-text {
    font-size: clamp(4rem, 20vw, 8rem);
  }

  .footer-bottom-new {
    padding: 2rem 1.5rem;
  }

  .social-link-new {
    font-size: 18px;
  }
}

/* Scroll Indicator - Hidden */
.scroll-indicator {
  display: none;
  color: var(--text-secondary);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --section-padding: 6rem 2rem;
  }

  .nav-menu {
    gap: var(--spacing-md);
  }

  .nav-contact {
    display: none;
  }

  /* Why Choose Us - Tablet */
  .why-us-container {
    padding: 0 var(--spacing-lg);
  }

  .why-us-blocks {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }

  .project-thumbnails {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xs);
  }

  .thumbnail-label {
    font-size: 0.65rem;
  }

  .why-us-panels {
    grid-template-columns: 1fr 1fr;
    margin-left: calc(-1 * var(--spacing-lg));
    margin-right: calc(-1 * var(--spacing-lg));
    width: calc(100% + var(--spacing-lg) * 2);
  }

  .support-panel {
    grid-column: span 2;
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 1.5rem;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 100px 1.5rem 4rem;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .hero-left {
    padding-bottom: 0;
  }

  .hero-right {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .hero-services-list {
    align-items: flex-start;
  }

  .service-link-item {
    flex-direction: row;
  }

  .service-connector {
    width: 30px;
  }

  .hero-footer-right {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: var(--spacing-xl);
    align-items: flex-start;
  }

  .hero-copyright {
    writing-mode: horizontal-tb;
    transform: none;
  }

  /* Clients Section Mobile */
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-card {
    min-height: 250px;
    padding: var(--spacing-lg);
  }

  .clients-copyright {
    font-size: 2rem;
  }

  .section-accent-bar {
    height: 40px;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    flex-direction: column;
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions {
    gap: var(--spacing-sm);
  }

  .nav-social {
    display: none;
  }

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

  /* Why Choose Us - Mobile */
  .why-us-blocks {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .experience-block {
    padding: var(--spacing-lg);
  }

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

  .satisfaction-image-wrapper {
    min-height: 400px;
  }

  /* Three Panels - Mobile */
  .why-us-panels {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-left: calc(-1 * var(--spacing-md));
    margin-right: calc(-1 * var(--spacing-md));
    width: calc(100% + var(--spacing-md) * 2);
  }

  .panel {
    min-height: 500px;
  }

  .pricing-image-wrapper {
    min-height: 500px;
  }

  .pricing-overlay::before {
    top: 1.5rem;
    left: 1.5rem;
  }

  .features-panel {
    padding: var(--spacing-lg);
    min-height: 400px;
  }

  .feature-item {
    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .support-panel {
    padding: var(--spacing-lg);
    min-height: auto;
  }

  .chat-window {
    min-height: 300px;
  }

  .services-grid {
    gap: var(--spacing-xl);
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-number,
  .service-divider {
    display: none;
  }

  .service-title,
  .service-description,
  .service-cta {
    grid-column: 1;
  }

  .faq-item {
    grid-template-columns: 1fr;
  }

  .faq-number,
  .faq-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 3rem 1rem;
  }

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

  .client-card {
    min-height: 200px;
  }

  .pricing-features {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE FIXES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Global overflow prevention */
html,
body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ─── TABLET FIXES (768px - 1024px) ─── */
@media (max-width: 1024px) {

  /* Navigation */
  .nav-container {
    padding-left: 140px;
    padding-right: 1.5rem;
    justify-content: flex-end;
  }

  .nav-logo {
    left: 2rem;
  }

  .logo-img {
    height: 80px;
  }

  .nav-menu,
  .nav-actions,
  .nav-contact,
  .nav-social {
    display: none;
  }

  .nav-toggle-wrapper {
    display: flex;
    margin-left: auto;
  }

  /* Hero Section */
  .hero-section {
    padding: 120px 2rem 3rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }

  .hero-right {
    justify-content: flex-start;
    padding-top: 0;
  }

  .hero-services-list {
    align-items: flex-start;
  }

  .hero-caption {
    display: none;
  }

  /* Clients Section */
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-header {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .section-header-right {
    align-items: flex-start;
  }

  /* Why Us Section */
  .why-us-blocks {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-us-panels {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .support-panel {
    grid-column: span 1;
  }

  /* Services Section */
  .services-new-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-left {
    position: relative;
    top: 0;
    order: 2;
  }

  .services-right {
    order: 1;
  }

  .services-preview {
    max-width: 100%;
  }

  .services-preview-image {
    max-width: 100%;
    max-height: 300px;
  }

  .services-preview-image img {
    object-fit: cover;
    height: 100%;
  }

  .menu-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  /* Process Section */
  .process-container {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 3rem;
  }

  .process-left {
    order: 1 !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-bottom: 2rem;
  }

  .process-right {
    order: 2 !important;
    width: 100% !important;
  }

  /* Success Stories */
  .success-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-card {
    min-height: 400px;
  }

  /* Insights Section */
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .insights-title-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .insights-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* FAQ Section */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-left {
    position: relative;
    top: 0;
  }

  /* Contact Section */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
  }

  .footer-middle {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-social-new {
    align-items: flex-start;
  }

  .social-links-new {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .footer-bottom-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-center {
    text-align: left;
  }

  .footer-bottom-right {
    align-items: flex-start;
  }

  /* Our Works / Zoom Parallax */
  .works-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .works-item {
    min-height: 150px;
  }
}

/* ─── MOBILE FIXES (max-width: 768px) ─── */
@media (max-width: 768px) {

  /* Global Container Overrides */
  .clients-container,
  .why-us-container,
  .services-section-header,
  .process-section-header,
  .insights-container,
  .faq-container-new,
  .contact-container-new {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Navigation */
  .nav-container {
    padding: 1rem;
    padding-left: 90px;
    padding-right: 1rem;
    justify-content: flex-end;
  }

  .nav-logo {
    left: 1rem;
  }

  .logo-img {
    height: 70px;
  }

  .nav-toggle-wrapper {
    display: flex;
    margin-left: auto;
  }

  /* Fullscreen Menu */
  .fullscreen-menu-content {
    flex-direction: column;
    padding: 1rem;
    overflow-y: auto;
    gap: 2rem;
  }

  .fullscreen-nav-link {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .fullscreen-right {
    text-align: left;
    max-width: 100%;
  }

  .fullscreen-contact {
    align-items: flex-start;
  }

  .fullscreen-menu-footer {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .fullscreen-social {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .fullscreen-social-link {
    font-size: 0.9375rem;
    color: #ffffff !important;
  }

  .fullscreen-legal {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .fullscreen-legal-link {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .legal-divider {
    display: none;
  }

  /* Hero Section */
  .hero-section {
    padding: 100px 1rem 2rem;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-headline {
    font-size: clamp(2rem, 10vw, 3.5rem);
    word-break: break-word;
  }

  .hero-headline .headline-line2 {
    white-space: normal;
  }

  .hero-intro {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-right {
    padding-top: 0;
  }

  .hero-services-list {
    width: 100%;
    align-items: flex-start;
  }

  .service-link-item {
    justify-content: flex-start;
    flex-direction: row;
  }

  .service-number {
    width: auto;
    text-align: left;
  }

  .service-connector {
    width: 25px;
    flex-shrink: 1;
  }

  .hero-footer-right {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    align-items: flex-start;
    flex-direction: row;
  }

  .hero-copyright {
    writing-mode: horizontal-tb;
    transform: none;
  }

  /* Intro Section */
  .intro-section {
    margin-top: -50vh;
    transform: translateY(50vh);
  }

  .intro-section-spacer {
    height: 50vh;
    margin-top: -4rem;
  }

  .intro-tagline {
    font-size: clamp(1.25rem, 5vw, 2rem);
    padding: 0 0.5rem;
  }

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

  .intro-main-tagline {
    padding: 0 0.5rem;
  }

  .tagline-line1,
  .tagline-line2 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  /* Clients Section */
  .clients-section {
    min-height: auto;
    padding: 4rem 1rem;
  }

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

  .client-card {
    min-height: 180px;
    padding: 1.5rem;
  }

  .client-logo-wrapper {
    width: 60px;
    height: 60px;
  }

  .client-name {
    font-size: 0.9rem;
  }

  .client-identifier {
    font-size: 0.75rem;
    bottom: 1rem;
    right: 1rem;
  }

  .clients-copyright {
    font-size: 1.75rem;
  }

  .clients-brand {
    font-size: 0.75rem;
  }

  /* Why Choose Us Section */
  .why-us-section {
    padding: 4rem 0;
    overflow-x: hidden;
  }

  .why-us-main-title {
    font-size: clamp(2.5rem, 12vw, 5rem);
    padding: 0 1rem;
  }

  .why-us-description {
    padding: 0 1rem;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .why-us-blocks {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .experience-block {
    padding: 1.5rem;
  }

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

  .block-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  /* Testimonials - Mobile: single column, one card visible, scroll through multiple reviews */
  .testimonials-container {
    max-width: 100%;
    overflow: hidden;
    max-height: 200px;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  }

  .testimonials-columns {
    flex-direction: column;
    gap: 0.75rem;
  }

  .testimonials-column {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    animation: scrollUp 15s linear infinite;
  }

  .testimonials-column:nth-child(n + 2) {
    display: none;
  }

  .testimonials-column-third {
    display: none;
  }

  .testimonial-card {
    padding: 1rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .testimonial-avatar {
    width: 32px;
    height: 32px;
  }

  .testimonial-name {
    font-size: 0.8rem;
  }

  .testimonial-role {
    font-size: 0.7rem;
  }

  /* Satisfaction Block */
  .satisfaction-image-wrapper {
    min-height: 350px;
  }

  .satisfaction-overlay {
    padding: 1.5rem;
  }

  .satisfaction-value {
    font-size: 3rem;
  }

  /* Three Panels */
  .why-us-panels {
    grid-template-columns: 1fr;
    gap: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .panel {
    min-height: 400px;
  }

  .pricing-panel {
    min-height: 450px;
  }

  .pricing-image-wrapper {
    min-height: 450px;
  }

  .pricing-headline {
    font-size: 2.5rem;
  }

  .features-panel {
    padding: 1.5rem;
    min-height: auto;
  }

  .feature-item {
    padding: 1.5rem;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.85rem;
  }

  .support-panel {
    padding: 1.5rem;
    min-height: auto;
    grid-column: span 1;
  }

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

  .support-tagline {
    font-size: 0.9rem;
  }

  .chat-window {
    min-height: 280px;
  }

  .chat-bubble {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    max-width: 90%;
  }

  /* Our Works / Zoom Parallax */
  .our-works-section {
    overflow: hidden;
  }

  .our-works-header {
    padding: 0 1rem;
  }

  .our-works-title {
    font-size: clamp(2rem, 10vw, 4rem);
  }

  .zoom-parallax-container {
    height: 200vh;
    /* Match desktop height for consistent timing */
  }

  .works-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
    padding: 0.5rem;
  }

  .works-item {
    min-height: 120px;
  }

  .works-item-3.works-center {
    grid-column: span 2;
    min-height: 200px;
  }

  /* Services Section */
  .services-section-new {
    padding: 4rem 0;
    overflow: hidden;
    margin-top: -100vh;
    /* Overlap with zoom section - same as desktop */
    z-index: 5;
    /* Ensure it's below zoom section during fade */
  }

  .services-new-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .services-preview {
    max-width: 100%;
  }

  .services-preview-image {
    max-width: 100%;
    max-height: 250px;
    overflow: hidden;
  }

  .services-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .services-preview-content {
    padding: 1rem 0;
    min-height: 140px;
    /* Prevent layout shift below by locking a min height */
  }

  .preview-label {
    font-size: 0.75rem;
  }

  .preview-description {
    font-size: 0.9rem;
  }

  .services-menu {
    gap: 0.5rem;
  }

  .service-menu-item {
    padding: 0.75rem 0;
  }

  .menu-number {
    font-size: 0.8rem;
    min-width: 50px;
  }

  .menu-title {
    font-size: clamp(1.25rem, 7vw, 2rem);
  }

  .services-see-pricing {
    font-size: 0.9rem;
    padding-top: 1rem;
  }

  /* Process Section */
  .process-section {
    padding: 4rem 0;
  }

  .process-container {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 2rem;
    padding: 0 1rem;
  }

  .process-left {
    order: 1 !important;
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    margin-bottom: 2rem;
    z-index: 1;
  }

  .process-right {
    order: 2 !important;
    width: 100% !important;
    z-index: 2;
  }

  .process-main-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .process-description {
    font-size: 0.95rem;
  }

  .process-step {
    padding: 1.5rem 0;
  }

  .step-content {
    gap: 1rem;
  }

  .step-number-badge {
    width: 35px;
    height: 35px;
    font-size: 0.75rem;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-description {
    font-size: 0.85rem;
  }

  /* Success Stories */
  .success-stories-section {
    padding: 1rem;
    overflow: hidden;
  }

  .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-card {
    min-height: 350px;
    padding: 1.5rem;
  }

  .story-main-title {
    font-size: 2.5rem;
  }

  .story-quote,
  .story-quote-dark,
  .story-quote-light {
    font-size: 1rem;
    line-height: 1.5;
  }

  .stat-number,
  .stat-number-dark {
    font-size: 2rem;
  }

  .story-stats {
    flex-direction: row;
    gap: 2rem;
  }

  /* Insights Section */
  .insights-section {
    padding: 4rem 0;
    overflow: hidden;
  }

  .insights-container {
    padding: 0 1rem;
    max-width: 100%;
  }

  .insights-title-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
    margin-bottom: 2rem;
  }

  .insights-main-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .insights-description {
    font-size: 0.95rem;
  }

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

  .insights-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .insight-post {
    width: 100%;
  }

  .insight-featured .insight-image-wrapper {
    max-height: 250px;
  }

  .insight-small .insight-image-wrapper {
    max-height: 180px;
  }

  .insight-title {
    font-size: 1.1rem;
  }

  .insight-content {
    padding: 1rem 0;
  }

  /* FAQ Section */
  .faq-section-new {
    padding: 4rem 0;
    overflow: hidden;
  }

  .faq-container-new {
    max-width: 100%;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .faq-main-title-new {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .faq-description-new {
    font-size: 0.95rem;
  }

  .faq-cta-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .faq-item-header {
    gap: 1rem;
    padding: 1rem 0;
  }

  .faq-item-number {
    min-width: 40px;
    font-size: 0.8rem;
  }

  .faq-item-question {
    font-size: 1rem;
  }

  .faq-toggle {
    font-size: 1.25rem;
  }

  .faq-item-answer p {
    padding-left: 0;
    font-size: 0.9rem;
  }

  /* Contact Section */
  .contact-section-new {
    padding: 4rem 0;
    overflow: hidden;
  }

  .contact-container-new {
    padding: 0 1rem !important;
    max-width: 100%;
  }

  .contact-main-title-new {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
    margin-bottom: 2rem;
    word-break: break-word;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-description-new {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .contact-info-new {
    gap: 1.5rem;
  }

  .contact-info-item {
    gap: 0.75rem;
  }

  .contact-info-label {
    font-size: 0.9rem;
  }

  .contact-info-text {
    font-size: 0.85rem;
  }

  .form-input-new,
  .form-textarea-new {
    font-size: 1rem;
    padding: 0.875rem 0;
  }

  .form-submit-new {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-top {
    padding: 3rem 1rem;
    gap: 2.5rem;
  }

  .footer-intro-text {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .footer-email-form {
    flex-wrap: nowrap;
  }

  .footer-email-input {
    font-size: 0.9rem;
    min-width: 0;
    flex: 1;
  }

  .footer-top-nav {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-nav-column {
    gap: 0.75rem;
  }

  .footer-nav-link {
    font-size: 1rem;
  }

  .footer-middle {
    padding: 3rem 1rem;
  }

  .footer-brand-large .brand-text {
    font-size: clamp(3rem, 18vw, 6rem);
  }

  .footer-brand-large .brand-reg {
    font-size: clamp(1rem, 4vw, 2rem);
  }

  .social-links-new {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .social-link-new {
    font-size: 1rem;
  }

  .footer-bottom-new {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .footer-company-info {
    font-size: 0.8rem;
    text-align: left;
  }

  .footer-credit {
    font-size: 0.8rem;
  }

  /* Section Headers */
  .section-accent-bar {
    height: 35px;
    width: 3px;
  }

  .section-number {
    font-size: 0.9rem;
  }

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

/* ─── SMALL MOBILE FIXES (max-width: 480px) ─── */
@media (max-width: 480px) {

  /* Navigation */
  .nav-container {
    padding-left: 75px;
    padding-right: 0.75rem;
    justify-content: flex-end;
  }

  .nav-logo {
    left: 0.75rem;
  }

  .logo-img {
    height: 55px;
  }

  .menu-text {
    display: none;
  }

  .nav-toggle-wrapper {
    display: flex;
    margin-left: auto;
  }

  /* Hero */
  .hero-section {
    padding: 90px 0.75rem 1.5rem;
  }

  .hero-headline {
    font-size: clamp(1.75rem, 11vw, 2.5rem);
  }

  .hero-intro {
    font-size: 0.9rem;
  }

  .service-link-item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* Intro */
  .intro-services {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Clients */
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-card {
    min-height: 150px;
    padding: 1rem;
  }

  /* Why Us */
  .why-us-main-title {
    font-size: clamp(2rem, 14vw, 3.5rem);
  }

  .block-title {
    font-size: 1.25rem;
  }

  .testimonial-card {
    padding: 0.75rem;
  }

  .satisfaction-value {
    font-size: 2.5rem;
  }

  .pricing-headline {
    font-size: 2rem;
  }

  /* Works */
  .works-grid {
    grid-template-columns: 1fr;
  }

  .works-item {
    min-height: 150px;
  }

  .works-item-3.works-center {
    grid-column: span 1;
  }

  /* Services */
  .menu-title {
    font-size: clamp(1rem, 8vw, 1.5rem);
  }

  .menu-number {
    font-size: 0.7rem;
    min-width: 40px;
  }

  /* Process */
  .process-container {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
  }

  .process-left {
    order: 1 !important;
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    margin-bottom: 2rem;
  }

  .process-right {
    order: 2 !important;
    width: 100% !important;
  }

  .process-main-title {
    font-size: clamp(1.75rem, 12vw, 2.5rem);
  }

  .step-title {
    font-size: 1rem;
  }

  /* Success Stories */
  .story-card {
    min-height: 300px;
    padding: 1rem;
  }

  .story-main-title {
    font-size: 2rem;
  }

  .story-quote,
  .story-quote-dark,
  .story-quote-light {
    font-size: 0.9rem;
  }

  .stat-number,
  .stat-number-dark {
    font-size: 1.75rem;
  }

  .story-stats {
    flex-direction: column;
    gap: 1rem;
  }

  /* Insights */
  .insights-main-title {
    font-size: clamp(1.75rem, 12vw, 2.5rem);
  }

  .insight-title {
    font-size: 1rem;
  }

  /* FAQ */
  .faq-main-title-new {
    font-size: clamp(2rem, 14vw, 3rem);
  }

  .faq-item-question {
    font-size: 0.9rem;
  }

  .faq-item-number {
    display: none;
  }

  /* Contact */
  .contact-main-title-new {
    font-size: clamp(2rem, 14vw, 3.5rem);
  }

  /* Footer */
  .footer-brand-large .brand-text {
    font-size: clamp(2.5rem, 20vw, 4.5rem);
  }

  .footer-nav-link {
    font-size: 0.9rem;
  }
}

/* ─── LANDSCAPE MOBILE FIX ─── */
@media (max-width: 900px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 2rem;
  }

  .hero-headline {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .fullscreen-menu-content {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fullscreen-nav-link {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }
}

/* ─── FIX FOR HORIZONTAL SCROLL ON ALL SECTIONS ─── */
.clients-section,
.why-us-section,
.our-works-section,
.services-section-new,
.process-section,
.success-stories-section,
.insights-section,
.faq-section-new,
.contact-section-new,
.footer-new {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ─── SAFE AREA INSETS FOR NOTCHED DEVICES ─── */
@supports (padding: max(0px)) {
  .footer-bottom-new {
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
}

/* Page Hero Styles */
.page-hero {
  padding: 12rem 2rem 6rem;
  background-color: var(--bg-color);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  text-align: center;
}

.page-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
}

.page-hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* Team Section */
.team-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
}

.team-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  text-align: center;
}

.team-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: var(--spacing-sm);
  transition: transform 0.5s ease;
}

.team-member:hover .team-image {
  transform: scale(1.05);
}

.team-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.team-role {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Values Section */
.values-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

.values-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.values-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.value-number {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--primary-color);
  line-height: 1;
}

.value-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.value-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  text-align: center;
}

.cta-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.cta-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
}

.cta-button {
  display: inline-block;
  padding: 16px 48px;
  background-color: var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(174, 0, 121, 0.3);
}

/* Active Nav Link */
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  width: 100%;
}

/* Careers Section */
.careers-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

.careers-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.careers-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
}

.career-item {
  padding: var(--spacing-lg);
  background-color: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.career-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.career-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.career-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.career-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.career-details {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-size: 14px;
  color: var(--text-tertiary);
}

.career-apply {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.career-apply:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-2px);
}

/* Benefits Section */
.benefits-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
}

.benefits-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.benefits-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.benefit-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.benefit-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* New About Hero - Matching Reference */
.about-hero-new {
  padding: 150px 5vw 80px;
  background-color: #0a0a0a;
}

.about-hero-new-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-hero-new-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.about-hero-left {
  flex: 1;
}

.about-hero-big-title {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  line-height: 0.9;
  color: var(--text-color);
  letter-spacing: -0.03em;
  margin: 0;
}

.about-hero-big-title .title-dot {
  color: var(--primary-color);
}

.about-hero-right {
  flex: 0 0 400px;
  padding-top: 40px;
}

.about-hero-tagline {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.about-hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 80px;
}

/* Animated Tooltip Section */
.team-tooltip-section {
  display: flex;
  justify-content: center;
  margin: 50px 0 60px;
}

.team-tooltip-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.animated-tooltip-container {
  display: flex;
  align-items: center;
}

.tooltip-avatar {
  position: relative;
  margin-right: -16px;
  cursor: pointer;
  z-index: 1;
  transition: z-index 0s;
}

.tooltip-avatar:hover {
  z-index: 50;
}

.tooltip-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--bg-color);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
}

.tooltip-avatar:hover img {
  transform: scale(1.1);
}

/* Tooltip popup */
.avatar-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px) scale(0.6) rotate(0deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  margin-bottom: 12px;
  z-index: 100;
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tooltip-avatar:hover .avatar-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1) rotate(var(--tooltip-rotate, 0deg));
}

/* Gradient glows */
.tooltip-glow {
  position: absolute;
  bottom: -1px;
  height: 1px;
  z-index: 30;
}

.tooltip-glow.emerald {
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  background: linear-gradient(to right, transparent, #10b981, transparent);
}

.tooltip-glow.sky {
  left: 25%;
  width: 40%;
  background: linear-gradient(to right, transparent, #0ea5e9, transparent);
}

.tooltip-name {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  position: relative;
  z-index: 30;
}

.tooltip-designation {
  font-size: 11px;
  color: rgba(10, 10, 10, 0.6);
}

.team-label {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}

/* Responsive - Team Tooltip */
@media (max-width: 768px) {
  .tooltip-avatar img {
    width: 44px;
    height: 44px;
  }

  .tooltip-avatar {
    margin-right: -12px;
  }

  .avatar-tooltip {
    padding: 8px 14px;
  }

  .tooltip-name {
    font-size: 12px;
  }

  .tooltip-designation {
    font-size: 10px;
  }

  .team-tooltip-section {
    margin: 35px 0 45px;
  }
}

/* About Statement Section */
.about-statement-section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.about-statement-left {
  position: relative;
}

.section-label-block {
  display: flex;
  gap: 15px;
}

.label-accent-bar {
  width: 3px;
  height: 50px;
  background: var(--primary-color);
}

.label-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.label-number {
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 500;
}

.label-text {
  font-size: 0.95rem;
  color: var(--text-color);
}

.about-statement-right {
  max-width: 900px;
}

.about-statement-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-color);
  margin: 0 0 30px 0;
}

.about-statement-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 35px 0;
}

.about-projects-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.about-projects-link:hover {
  gap: 15px;
}

.about-projects-link .arrow {
  font-size: 1.1rem;
}

/* Old About Hero (keeping for backwards compatibility) */
.about-hero {
  padding: 150px 5vw 80px;
  background-color: var(--bg-color);
  min-height: 60vh;
}

.about-hero-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-hero-header {
  margin-bottom: 40px;
}

.about-hero-title {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 30px;
  color: var(--text-color);
}

.about-hero-title .title-highlight {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.about-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 700px;
}

.about-hero-subtitle em {
  font-style: normal;
  color: var(--primary-color);
}

/* Story Section */
.about-story {
  padding: 100px 5vw;
  background-color: var(--bg-secondary);
}

.about-story-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

.story-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.3) 0%, transparent 50%);
}

.story-right {
  padding: 40px 0;
}

.story-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  font-family: var(--font-display);
  margin-bottom: 30px;
  color: var(--text-color);
}

.title-italic {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.story-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* About Team Section */
.about-team {
  padding: 100px 5vw;
  background-color: var(--bg-color);
}

.about-team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-team-header {
  margin-bottom: 40px;
}

.team-main-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  font-family: var(--font-display);
  margin-bottom: 20px;
  color: var(--text-color);
}

.team-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 60px;
}

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

.team-member-card {
  position: relative;
}

.member-image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.member-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member-card:hover .member-image {
  transform: scale(1.05);
}

.member-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(174, 0, 121, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.team-member-card:hover .member-overlay {
  opacity: 1;
}

.member-social-link {
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
}

.member-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.member-role {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.member-location {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* About Values Section */
.about-values {
  padding: 100px 5vw;
  background-color: var(--bg-secondary);
}

.about-values-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-values-header {
  margin-bottom: 40px;
}

.values-main-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  font-family: var(--font-display);
  margin-bottom: 60px;
  color: var(--text-color);
}

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

.value-card {
  background: linear-gradient(145deg, #1a1a1f 0%, #0f0f12 100%);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.value-number-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-title-new {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
}

.value-description-new {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.value-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

/* Vision & Mission Section */
.about-vision-mission {
  padding: 100px 5vw;
  background-color: var(--bg-secondary);
}

.about-vision-mission-container {
  max-width: 1400px;
  margin: 0 auto;
}

.vision-mission-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.vision-mission-left {
  position: relative;
}

.vision-mission-right {
  max-width: 900px;
}

.vision-block,
.mission-block {
  margin-bottom: 60px;
}

.mission-block {
  margin-bottom: 0;
}

.vm-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 20px 0;
}

.vm-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-color);
  margin: 0 0 20px 0;
}

.vm-title em {
  font-style: italic;
}

.vm-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* About Achievements Section - New Design */
.about-achievements {
  padding: 100px 5vw;
  background-color: #0f0f0f;
}

.about-achievements-container {
  max-width: 1400px;
  margin: 0 auto;
}

.achievements-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.achievements-left {
  position: relative;
}

.achievements-right {
  max-width: 1000px;
}

.achievements-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-color);
  margin: 0 0 30px 0;
}

.achievements-title em {
  font-style: italic;
}

.achievements-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 50px 0;
  max-width: 850px;
}

.achievements-list {
  display: flex;
  flex-direction: column;
}

.achievement-row {
  display: grid;
  grid-template-columns: 280px 1fr 80px;
  gap: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: flex-start;
}

.achievement-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.achievement-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.achievement-year {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: right;
}

/* Old About Awards Section (keeping for backwards compatibility) */
.about-awards {
  padding: 100px 5vw;
  background-color: var(--bg-color);
}

.about-awards-container {
  max-width: 1400px;
  margin: 0 auto;
}

.awards-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  font-family: var(--font-display);
  margin-bottom: 60px;
  color: var(--text-color);
}

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

.award-item {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.award-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--primary-color);
  display: block;
  margin-bottom: 15px;
}

.award-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
}

.award-project {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* About CTA Section */
.about-cta {
  padding: 120px 5vw;
  background-color: var(--primary-color);
  text-align: center;
}

.about-cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 20px;
}

.title-slash {
  font-style: italic;
}

.about-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.about-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: #fff;
  color: #0a0a0a;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.about-cta-button:hover {
  transform: translateY(-3px);
  color: #0a0a0a;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROJECTS PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* New Projects Hero - Matching Reference */
.projects-hero-new {
  padding: 150px 5vw 60px;
  background-color: var(--bg-color);
}

.projects-hero-new-container {
  max-width: 1400px;
  margin: 0 auto;
}

.projects-hero-new-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.projects-hero-left {
  flex: 1;
}

.projects-hero-big-title {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  line-height: 0.9;
  color: var(--text-color);
  letter-spacing: -0.03em;
  margin: 0;
}

.projects-hero-big-title .title-dot {
  color: var(--primary-color);
}

.projects-hero-right {
  flex: 0 0 400px;
  padding-top: 20px;
}

.projects-year-badge {
  display: block;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.projects-hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.projects-hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 50px;
}

.projects-filter-bar {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.project-filter-btn {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.project-filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.project-filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* Old hero styles (keeping for backwards compatibility) */
.projects-hero {
  padding: 150px 5vw 80px;
  background-color: var(--bg-color);
}

.projects-hero-container {
  max-width: 1400px;
  margin: 0 auto;
}

.projects-hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.projects-count {
  text-align: right;
}

.count-number {
  display: block;
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--font-display);
}

.count-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.projects-hero-title {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 30px;
  color: var(--text-color);
}

.title-dot {
  color: var(--primary-color);
}

.projects-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 700px;
}

/* Projects Grid */
.projects-grid-section {
  padding: 60px 5vw 100px;
  background-color: var(--bg-secondary);
}

.projects-grid-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.project-card {
  position: relative;
}

.project-card-featured {
  grid-column: span 2;
}

.project-link {
  display: block;
  text-decoration: none;
  color: inherit;
  pointer-events: none;
  cursor: default;
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

.project-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card-featured .project-image {
  height: 550px;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-overlay {
  display: none;
}

.project-view-btn {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 24px;
  border: 1px solid #fff;
}

.project-info {
  padding: 0 10px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.project-category {
  font-size: 0.85rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.project-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-family: var(--font-display);
  color: var(--text-color);
  margin-bottom: 15px;
}

.project-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.project-results {
  display: flex;
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.result-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.result-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.projects-summary {
  grid-column: span 2;
  text-align: center;
  padding: 60px 0;
}

.summary-text {
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.summary-number {
  color: var(--primary-color);
  font-weight: 600;
}

/* Projects Clients */
.projects-clients {
  padding: 60px 5vw;
  background-color: var(--bg-color);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-clients-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.clients-label {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.clients-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.client-logo-item {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.client-logo-item:hover {
  opacity: 1;
}

/* Projects CTA */
.projects-cta {
  padding: 120px 5vw;
  background-color: var(--primary-color);
  text-align: center;
}

.projects-cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.projects-cta-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 20px;
}

.projects-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.projects-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: #fff;
  color: #0a0a0a;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.projects-cta-button:hover {
  transform: translateY(-3px);
  color: #0a0a0a;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* New Blog Hero - Matching Reference */
.blog-hero-new {
  padding: 150px 5vw 60px;
  background-color: #0a0a0a;
}

.blog-hero-new-container {
  max-width: 1400px;
  margin: 0 auto;
}

.blog-hero-new-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.blog-hero-left {
  flex: 1;
}

.blog-hero-big-title {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  line-height: 0.9;
  color: var(--text-color);
  letter-spacing: -0.03em;
  margin: 0;
}

.blog-hero-big-title .title-dot {
  color: transparent;
  position: relative;
}

.blog-hero-big-title .title-dot::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 0.18em;
  height: 0.18em;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.blog-hero-right {
  flex: 0 0 400px;
  padding-bottom: 10px;
}

.blog-hero-tagline-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-color);
  margin-bottom: 15px;
}

.blog-hero-tagline {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.blog-hero-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

/* View Toggle Buttons */
.blog-view-toggle {
  display: flex;
  gap: 10px;
}

.view-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-toggle-btn:hover {
  border-color: var(--primary-color);
  color: var(--text-color);
}

.view-toggle-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.view-toggle-btn svg {
  width: 16px;
  height: 16px;
}

/* Blog Posts Grid - New Design */
.blog-posts-new {
  padding: 60px 5vw 100px;
  background-color: #0a0a0a;
}

.blog-posts-new-container {
  max-width: 1400px;
  margin: 0 auto;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.blog-card-new {
  position: relative;
  display: block;
  height: 500px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.blog-card-new:hover {
  transform: scale(0.98);
}

.blog-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

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

.blog-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.blog-card-date {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.blog-card-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-card-author {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Blog Posts List View */
.blog-posts-list {
  padding: 60px 5vw 100px;
  background-color: #0a0a0a;
}

.blog-posts-list-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* New List Item with Hover Image */
.blog-list-item-new {
  position: relative;
  display: block;
  height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-list-item-new:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-list-bg-hover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.blog-list-item-new:hover .blog-list-bg-hover {
  opacity: 1;
  transform: scale(1);
}

.blog-list-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 60px;
  align-items: center;
  height: 100%;
  padding: 0 30px;
  background: transparent;
  transition: background 0.3s ease;
}

.blog-list-item-new:hover .blog-list-row {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.blog-list-date {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.blog-list-item-new:hover .blog-list-date {
  color: rgba(255, 255, 255, 0.9);
}

.blog-list-title {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.blog-list-item-new:hover .blog-list-title {
  color: #fff;
}

.blog-list-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.blog-list-item-new:hover .blog-list-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Old list item styles (kept for reference) */
.blog-list-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 60px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-list-item:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.blog-list-item:hover .blog-list-title {
  color: var(--primary-color);
}

/* Featured List Item */
.blog-list-item.featured {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 180px;
  padding: 0;
  margin-bottom: 20px;
  border-bottom: none;
  overflow: hidden;
}

.blog-list-item.featured:hover {
  background-color: transparent;
}

.blog-list-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.blog-list-item.featured:hover .blog-list-bg {
  transform: scale(1.03);
}

.blog-list-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 25px 30px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.blog-list-item.featured .blog-list-date {
  color: rgba(255, 255, 255, 0.8);
}

.blog-list-item.featured .blog-list-title {
  color: #fff;
}

/* Responsive styles for Blog Hero */
@media (max-width: 1024px) {
  .blog-hero-new-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .blog-hero-right {
    flex: 1;
    padding-bottom: 0;
  }

  .blog-hero-big-title {
    font-size: clamp(4rem, 12vw, 8rem);
  }

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

  .blog-card-new {
    height: 400px;
  }

  .blog-list-item {
    grid-template-columns: 120px 1fr;
    gap: 30px;
  }

  .blog-list-content {
    grid-template-columns: 120px 1fr auto;
    gap: 30px;
  }

  .blog-list-row {
    grid-template-columns: 120px 1fr auto;
    gap: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .blog-hero-new {
    padding: 120px 1rem 50px;
  }

  .blog-hero-big-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .blog-view-toggle {
    flex-wrap: wrap;
  }

  .view-toggle-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .blog-posts-new {
    padding: 40px 1rem 80px;
  }

  .blog-card-new {
    height: 350px;
  }

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

  .blog-card-title {
    font-size: 1.25rem;
  }

  /* List View Mobile */
  .blog-posts-list {
    padding: 40px 1rem 80px;
  }

  .blog-list-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .blog-list-item.featured {
    height: 150px;
  }

  .blog-list-content {
    grid-template-columns: 1fr auto;
    gap: 15px;
    padding: 20px;
  }

  .blog-list-content .blog-list-date {
    grid-column: 1 / -1;
  }

  .blog-list-title {
    font-size: 1rem;
  }

  .blog-list-arrow {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  /* New List Item Mobile */
  .blog-list-item-new {
    height: 80px;
  }

  .blog-list-row {
    grid-template-columns: 1fr auto;
    gap: 15px;
    padding: 0 15px;
  }

  .blog-list-row .blog-list-date {
    position: absolute;
    top: 12px;
    left: 15px;
    font-size: 0.8rem;
  }

  .blog-list-row .blog-list-title {
    padding-top: 20px;
    font-size: 0.95rem;
  }

  .blog-list-arrow {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Old Blog Hero (kept for reference) */
.blog-hero {
  padding: 150px 5vw 80px;
  background-color: var(--bg-color);
}

.blog-hero-container {
  max-width: 1400px;
  margin: 0 auto;
}

.blog-hero-header {
  margin-bottom: 40px;
}

.blog-hero-title {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 30px;
  color: var(--text-color);
}

.blog-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 700px;
}

/* Featured Post */
.blog-featured {
  padding: 0 5vw 80px;
  background-color: var(--bg-color);
}

.blog-featured-container {
  max-width: 1400px;
  margin: 0 auto;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-image-wrapper {
  position: relative;
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(10, 10, 10, 0.5) 100%);
}

.featured-content {
  padding: 20px 0;
}

.featured-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.featured-category {
  font-size: 0.85rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-date {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.featured-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.featured-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.featured-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-color);
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.featured-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.featured-read-more:hover {
  gap: 15px;
}

/* Blog Posts Grid */
.blog-posts-section {
  padding: 80px 5vw;
  background-color: var(--bg-secondary);
}

.blog-posts-container {
  max-width: 1400px;
  margin: 0 auto;
}

.blog-posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.posts-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.posts-filter {
  display: flex;
  gap: 10px;
}

.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

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

.blog-post-card {
  background: linear-gradient(145deg, #1a1a1f 0%, #0f0f12 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.post-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.post-image-wrapper {
  position: relative;
  overflow: hidden;
}

.post-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.post-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-content {
  padding: 25px;
}

.post-date {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  display: block;
  margin-bottom: 12px;
}

.post-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.post-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.post-author-mini {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* Load More */
.blog-load-more {
  text-align: center;
  margin-top: 60px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* Blog Newsletter */
.blog-newsletter {
  padding: 100px 5vw;
  background-color: var(--bg-color);
}

.blog-newsletter-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  font-family: var(--font-display);
  margin-bottom: 20px;
  color: var(--text-color);
}

.newsletter-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto 20px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  font-size: 1rem;
}

.newsletter-input::placeholder {
  color: var(--text-tertiary);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--primary-color);
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-submit:hover {
  background: var(--primary-color-hover);
}

.newsletter-disclaimer {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* New Contact Hero - Matching Reference */
.contact-hero-new {
  padding: 150px 5vw 100px;
  background-color: #0a0a0a;
}

.contact-hero-new-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-hero-big-title {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 0.9;
  color: var(--text-color);
  margin-bottom: 80px;
}

.contact-main-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

/* Contact Benefits */
.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact-benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
}

.benefit-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Contact Form - New Design */
.contact-form-wrapper {
  width: 100%;
}

.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group-new {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-input-new,
.form-select-new,
.form-textarea-new {
  width: 100%;
  padding: 20px 0;
  background: transparent;
  border: none;
  font-size: 1rem;
  color: var(--text-color);
  font-family: inherit;
  outline: none;
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
  color: var(--text-secondary);
}

.form-select-new {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.form-select-new option {
  background-color: #1a1a1a;
  color: var(--text-color);
}

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

.form-submit-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 18px 35px;
  background-color: var(--primary-color);
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.form-submit-new:hover {
  transform: translateY(-2px);
}

.form-submit-new .button-arrow {
  font-size: 1.2rem;
}

.form-disclaimer-new {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.form-disclaimer-new a {
  color: var(--text-color);
  text-decoration: underline;
}

.form-disclaimer-new a:hover {
  color: var(--primary-color);
}

/* Responsive styles for Contact Page */
@media (max-width: 1024px) {
  .contact-main-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-hero-big-title {
    font-size: clamp(4rem, 12vw, 8rem);
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .contact-hero-new {
    padding: 120px 1rem 80px;
  }

  .contact-hero-big-title {
    font-size: clamp(3rem, 14vw, 5rem);
    margin-bottom: 50px;
  }

  .contact-benefits {
    gap: 35px;
  }

  .contact-benefit-item {
    gap: 15px;
  }

  .benefit-icon {
    width: 30px;
    height: 30px;
  }

  .benefit-icon svg {
    width: 20px;
    height: 20px;
  }

  .form-input-new,
  .form-select-new,
  .form-textarea-new {
    padding: 18px 0;
    font-size: 0.95rem;
  }

  .form-submit-new {
    width: 100%;
    justify-content: center;
  }
}

/* Thank You Page */
.thank-you-section .thank-you-content {
  max-width: 560px;
  margin-top: 1.5rem;
}

.thank-you-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary, rgba(255, 255, 255, 0.85));
  margin-bottom: 1rem;
}

.thank-you-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary, rgba(255, 255, 255, 0.7));
  margin-bottom: 2rem;
}

.thank-you-desc a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thank-you-desc a:hover {
  opacity: 0.9;
}

.thank-you-cta {
  text-decoration: none;
  display: inline-flex;
}

@media (max-width: 768px) {
  .thank-you-lead {
    font-size: 1.1rem;
  }

  .thank-you-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

/* Old Contact Hero (kept for reference) */
.contact-hero {
  padding: 150px 5vw 80px;
  background-color: var(--bg-color);
}

.contact-hero-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-hero-header {
  margin-bottom: 40px;
}

.contact-hero-title {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 30px;
  color: var(--text-color);
}

.contact-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 700px;
}

/* Contact Main Section */
.contact-page-main {
  padding: 60px 5vw 100px;
  background-color: var(--bg-secondary);
}

.contact-page-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.contact-page-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-block {
  display: flex;
  gap: 20px;
}

.info-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

.info-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.info-text a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: var(--primary-color);
}

.contact-social-links {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
}

.social-links-row {
  display: flex;
  gap: 20px;
}

.contact-social-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-social-link:hover {
  color: var(--primary-color);
}

/* Contact Form Page */
.contact-form-new-page {
  background: linear-gradient(145deg, #1a1a1f 0%, #0f0f12 100%);
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group-page {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.form-row .form-group-page {
  margin-bottom: 0;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-input-page,
.form-select-page {
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  font-size: 1rem;
  font-family: var(--font-body);
}

.form-input-page::placeholder {
  color: var(--text-tertiary);
}

.form-input-page:focus,
.form-select-page:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
}

.form-select-page {
  cursor: pointer;
}

.form-select-page option {
  background: #1a1a1f;
  color: var(--text-color);
}

.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.checkbox-label input {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.checkbox-label input:checked+.checkbox-custom {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input:checked+.checkbox-custom::after {
  content: '✓';
  color: #fff;
  font-size: 0.8rem;
}

.form-textarea-page {
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  font-size: 1rem;
  font-family: var(--font-body);
  resize: vertical;
  min-height: 120px;
}

.form-textarea-page::placeholder {
  color: var(--text-tertiary);
}

.form-textarea-page:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
}

.form-submit-page {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--primary-color);
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.form-submit-page:hover {
  background: var(--primary-color-hover);
}

.form-disclaimer-page {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 20px;
}

.form-disclaimer-page a {
  color: var(--text-secondary);
  text-decoration: none;
}

.form-disclaimer-page a:hover {
  color: var(--primary-color);
}

/* New Contact Map - Premium Design */
.contact-map-new {
  padding: 0 5vw 100px;
  background-color: #0a0a0a;
}

.map-wrapper-new {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  line-height: 0;
}

.map-wrapper-new iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
  filter: grayscale(100%) invert(92%) contrast(83%);
  vertical-align: bottom;
}

.map-info-card {
  background: linear-gradient(135deg, #141414 0%, #0a0a0a 100%);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.map-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.map-info-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.map-info-address {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.map-info-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map-info-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.map-info-detail svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.map-info-detail a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.map-info-detail a:hover {
  color: var(--primary-color);
}

.map-info-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 18px 35px;
  background-color: var(--primary-color);
  border: none;
  color: #fff !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.map-info-link:hover {
  color: #fff !important;
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .map-wrapper-new {
    grid-template-columns: 1fr;
  }

  .map-info-card {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 768px) {
  .contact-map-new {
    padding: 0 1rem 80px;
  }

  .map-wrapper-new iframe {
    height: 300px;
  }

  .map-info-card {
    padding: 35px 25px;
  }

  .map-info-link {
    width: 100%;
    justify-content: center;
  }
}

/* Old Contact Map (kept for reference) */
.contact-map {
  position: relative;
}

.map-wrapper {
  position: relative;
}

.map-overlay-card {
  position: absolute;
  bottom: 40px;
  left: 5vw;
  background: #0a0a0a;
  padding: 30px;
  max-width: 300px;
}

.map-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

.map-card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.map-card-link {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.map-card-link:hover {
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CAREERS PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* New Careers Hero - Matching Reference */
.careers-hero-new {
  padding: 150px 5vw 80px;
  background-color: #0a0a0a;
}

.careers-hero-new-container {
  max-width: 1400px;
  margin: 0 auto;
}

.careers-hero-new-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.careers-hero-left {
  flex: 1;
}

.careers-hero-big-title {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  line-height: 0.9;
  color: var(--text-color);
  letter-spacing: -0.03em;
  margin: 0;
}

.careers-hero-big-title .title-dot {
  color: var(--primary-color);
}

.careers-hero-right {
  flex: 0 0 400px;
  padding-top: 40px;
}

.careers-hero-tagline {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.careers-hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 80px;
}

/* Careers Benefits Section in Hero */
.careers-benefits-section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.careers-benefits-left {
  position: relative;
}

.careers-benefits-right {
  max-width: 1000px;
}

.careers-benefits-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
  margin: 0 0 25px 0;
}

.careers-benefits-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 50px 0;
  max-width: 850px;
}

.benefits-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.benefit-card-new {
  padding: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card-new:first-child {
  border-left: none;
  padding-left: 0;
}

.benefit-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
  margin: 0;
}

/* Old Careers Hero (keeping for backwards compatibility) */
.careers-hero {
  padding: 150px 5vw 80px;
  background-color: var(--bg-color);
}

.careers-hero-container {
  max-width: 1400px;
  margin: 0 auto;
}

.careers-hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.hiring-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(174, 0, 121, 0.1);
  border: 1px solid rgba(174, 0, 121, 0.3);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.careers-hero-title {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 30px;
  color: var(--text-color);
}

.careers-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 700px;
}

/* Careers Culture */
.careers-culture {
  padding: 100px 5vw;
  background-color: var(--bg-secondary);
}

.careers-culture-container {
  max-width: 1400px;
  margin: 0 auto;
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.culture-image-wrapper {
  position: relative;
}

.culture-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.culture-image-accent {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-top: 3px solid var(--primary-color);
  border-right: 3px solid var(--primary-color);
}

.culture-content {
  padding: 20px 0;
}

.culture-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  font-family: var(--font-display);
  margin-bottom: 25px;
  color: var(--text-color);
}

.culture-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.culture-stats {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.culture-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.culture-stat .stat-value {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1;
}

.culture-stat .stat-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Careers Positions - New Design */
.careers-positions-new {
  padding: 100px 5vw;
  background-color: #0f0f0f;
}

.careers-positions-new-container {
  max-width: 1400px;
  margin: 0 auto;
}

.positions-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.positions-left {
  position: relative;
}

.positions-right {
  max-width: 1000px;
}

.positions-big-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-color);
  margin: 0 0 60px 0;
}

.positions-big-title em {
  font-style: italic;
}

.positions-list-new {
  display: flex;
  flex-direction: column;
}

.position-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
}

.position-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.position-row:hover {
  padding-left: 10px;
}

.position-row:hover .position-name {
  color: var(--primary-color);
}

.position-name {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.position-loc {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Old Careers Positions (keeping for backwards compatibility) */
.careers-positions {
  padding: 100px 5vw;
  background-color: var(--bg-color);
}

.careers-positions-container {
  max-width: 1400px;
  margin: 0 auto;
}

.positions-header {
  margin-bottom: 40px;
}

.positions-main-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  font-family: var(--font-display);
  margin-bottom: 60px;
  color: var(--text-color);
}

.positions-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.position-card {
  background: linear-gradient(145deg, #1a1a1f 0%, #0f0f12 100%);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: border-color 0.3s ease;
}

.position-card:hover {
  border-color: var(--primary-color);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.position-category {
  font-size: 0.85rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 10px;
}

.position-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-color);
}

.position-meta {
  display: flex;
  gap: 20px;
  text-align: right;
}

.position-location,
.position-type {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.position-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 25px;
  max-width: 800px;
}

.position-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.position-tags {
  display: flex;
  gap: 10px;
}

.tag {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.position-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.position-apply:hover {
  gap: 12px;
}

.position-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

/* Careers Benefits */
.careers-benefits {
  padding: 100px 5vw;
  background-color: var(--bg-secondary);
}

.careers-benefits-container {
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-header-new {
  margin-bottom: 40px;
}

.benefits-main-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  font-family: var(--font-display);
  margin-bottom: 60px;
  color: var(--text-color);
}

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

.benefit-card {
  background: linear-gradient(145deg, #1a1a1f 0%, #0f0f12 100%);
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 12px;
}

.benefit-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Careers CTA */
.careers-cta {
  padding: 120px 5vw;
  background-color: var(--primary-color);
  text-align: center;
}

.careers-cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.careers-cta-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 20px;
}

.careers-cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.careers-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: #fff;
  color: #0a0a0a;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.careers-cta-button:hover {
  transform: translateY(-3px);
  color: #0a0a0a;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE STYLES FOR ALL PAGES
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {

  .about-story-content,
  .culture-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

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

  /* Vision & Mission Section Responsive - Tablet */
  .vision-mission-layout {
    grid-template-columns: 150px 1fr;
    gap: 40px;
  }

  /* New Achievements Section Responsive - Tablet */
  .achievements-layout {
    grid-template-columns: 150px 1fr;
    gap: 40px;
  }

  .achievement-row {
    grid-template-columns: 200px 1fr 70px;
    gap: 30px;
  }

  /* New About Hero Responsive - Tablet */
  .about-hero-new-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-hero-right {
    flex: 1;
    padding-top: 0;
  }

  .about-hero-big-title {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .about-statement-section {
    grid-template-columns: 150px 1fr;
    gap: 40px;
  }

  /* New Careers Hero Responsive - Tablet */
  .careers-hero-new-content {
    flex-direction: column;
    gap: 40px;
  }

  .careers-hero-right {
    flex: 1;
    padding-top: 0;
  }

  .careers-hero-big-title {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .careers-benefits-section {
    grid-template-columns: 150px 1fr;
    gap: 40px;
  }

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

  /* New Positions Section Responsive - Tablet */
  .positions-layout {
    grid-template-columns: 150px 1fr;
    gap: 40px;
  }

  .positions-big-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 40px;
  }

  /* New Projects Hero Responsive */
  .projects-hero-new-content {
    flex-direction: column;
    gap: 40px;
  }

  .projects-hero-right {
    flex: 1;
    padding-top: 0;
  }

  .projects-hero-big-title {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .projects-grid-container {
    grid-template-columns: 1fr;
  }

  .project-card-featured {
    grid-column: span 1;
  }

  .projects-summary {
    grid-column: span 1;
  }

  .featured-post {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

@media (max-width: 768px) {

  .about-hero,
  .about-hero-new,
  .projects-hero,
  .projects-hero-new,
  .blog-hero,
  .contact-hero,
  .careers-hero,
  .careers-hero-new {
    padding: 120px 1rem 60px;
  }

  .about-hero-title,
  .about-hero-big-title,
  .projects-hero-title,
  .projects-hero-big-title,
  .blog-hero-title,
  .contact-hero-title,
  .careers-hero-title,
  .careers-hero-big-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  /* New Careers Hero Responsive - Mobile */
  .careers-hero-new-content {
    flex-direction: column;
    gap: 30px;
  }

  .careers-hero-right {
    flex: 1;
    padding-top: 0;
    max-width: 100%;
  }

  .careers-benefits-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .careers-benefits-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .benefits-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .benefit-card-new {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
  }

  .benefit-card-new:first-child,
  .benefit-card-new:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .benefit-card-title {
    font-size: 1.1rem;
  }

  /* New Positions Section Responsive - Mobile */
  .positions-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .positions-big-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 30px;
  }

  .position-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 0;
  }

  .position-name {
    font-size: 1.15rem;
  }

  .position-loc {
    font-size: 0.9rem;
    color: var(--primary-color);
  }

  /* New About Hero Responsive */
  .about-hero-new-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-hero-right {
    flex: 1;
    padding-top: 0;
    max-width: 100%;
  }

  .about-statement-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-statement-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .about-hero-divider {
    margin-bottom: 50px;
  }

  .projects-hero-new-content {
    flex-direction: column;
    gap: 30px;
  }

  .projects-hero-right {
    max-width: 100%;
  }

  .projects-filter-bar {
    gap: 10px;
  }

  .project-filter-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .about-story,
  .about-team,
  .about-values,
  .about-awards,
  .projects-grid-section,
  .blog-featured,
  .blog-posts-section,
  .contact-page-main,
  .careers-culture,
  .careers-positions,
  .careers-benefits {
    padding: 60px 1rem;
  }

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

  .member-image {
    height: 300px;
  }

  .values-grid-new {
    grid-template-columns: 1fr;
  }

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

  /* Vision & Mission Section Responsive - Mobile */
  .vision-mission-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vision-block,
  .mission-block {
    margin-bottom: 50px;
  }

  .vm-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  /* New Achievements Section Responsive - Mobile */
  .achievements-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .achievement-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 25px 0;
  }

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

  .achievement-year {
    text-align: left;
    color: var(--primary-color);
  }

  .achievements-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .story-stats,
  .culture-stats {
    flex-direction: column;
    gap: 20px;
  }

  .projects-hero-header,
  .careers-hero-header {
    flex-direction: column;
    gap: 20px;
  }

  .projects-count {
    text-align: left;
  }

  .project-image,
  .project-card-featured .project-image {
    height: 280px;
  }

  .featured-image {
    height: 300px;
  }

  .blog-posts-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .posts-filter {
    flex-wrap: wrap;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .contact-form-new-page {
    padding: 30px 20px;
  }

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

  .form-checkboxes {
    flex-direction: column;
    gap: 15px;
  }

  .map-overlay-card {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin: -50px 1rem 0;
  }

  .position-header {
    flex-direction: column;
    gap: 15px;
  }

  .position-meta {
    text-align: left;
  }

  .position-footer {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .benefits-grid-new {
    grid-template-columns: 1fr;
  }

  .about-cta,
  .projects-cta,
  .careers-cta {
    padding: 80px 1rem;
  }

  .about-cta-title,
  .projects-cta-title,
  .careers-cta-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
}

/* ===========================================
   Individual Blog Article Page Styles
   =========================================== */

/* Blog Article Hero */
.blog-article-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 150px 5vw 80px;
  overflow: hidden;
}

.blog-article-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blog-article-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.7) 40%, rgba(10, 10, 10, 0.3) 100%);
}

.blog-article-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.blog-article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.blog-article-back-link:hover {
  color: var(--primary-color);
}

.blog-article-back-link svg {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.blog-article-category {
  padding: 6px 14px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-article-date {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.blog-article-reading-time {
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.blog-article-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 30px;
}

.blog-article-author-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-article-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.blog-article-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.blog-article-author-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.blog-article-author-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Blog Article Content */
.blog-article-content {
  padding: 80px 5vw;
  background-color: var(--bg-color);
}

.blog-article-content-container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.blog-article-body h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 50px 0 25px;
  line-height: 1.3;
}

.blog-article-body h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 40px 0 20px;
  line-height: 1.4;
}

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

.blog-article-body strong {
  color: var(--text-color);
  font-weight: 600;
}

.blog-article-body em {
  font-style: italic;
  color: var(--text-color);
}

.blog-article-body a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.blog-article-body a:hover {
  border-bottom-color: var(--primary-color);
}

.blog-article-body ul,
.blog-article-body ol {
  margin: 25px 0;
  padding-left: 30px;
}

.blog-article-body li {
  margin-bottom: 12px;
  position: relative;
}

.blog-article-body ul li::marker {
  color: var(--primary-color);
}

.blog-article-body ol li::marker {
  color: var(--primary-color);
  font-weight: 600;
}

.blog-article-body blockquote {
  margin: 40px 0;
  padding: 30px 40px;
  border-left: 4px solid var(--primary-color);
  background-color: rgba(255, 255, 255, 0.03);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-color);
  line-height: 1.7;
}

.blog-article-body blockquote p {
  margin-bottom: 0;
}

.blog-article-body img {
  width: 100%;
  height: auto;
  margin: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-article-body figure {
  margin: 40px 0;
}

.blog-article-body figcaption {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 15px;
}

.blog-article-body code {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.9em;
  color: var(--primary-color);
}

.blog-article-body pre {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 25px;
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-article-body pre code {
  background: none;
  padding: 0;
  color: var(--text-color);
}

/* Blog Article Tags */
.blog-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-article-tag {
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-article-tag:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* Blog Article Share */
.blog-article-share {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.blog-article-share-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.blog-article-share-links {
  display: flex;
  gap: 10px;
}

.blog-article-share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-article-share-link:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.blog-article-share-link svg {
  width: 18px;
  height: 18px;
}

/* Blog Article Author Bio */
.blog-article-author-bio {
  margin-top: 60px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.author-bio-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.author-bio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.author-bio-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-bio-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.author-bio-role {
  font-size: 0.95rem;
  color: var(--primary-color);
}

.author-bio-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Related Posts Section */
.blog-related-posts {
  padding: 80px 5vw;
  background-color: var(--bg-secondary);
}

.blog-related-container {
  max-width: 1400px;
  margin: 0 auto;
}

.blog-related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.blog-related-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-color);
}

.blog-related-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.blog-related-view-all:hover {
  gap: 15px;
}

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

/* Related Post Card */
.related-post-card {
  position: relative;
  display: block;
  height: 400px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.related-post-card:hover {
  transform: scale(0.98);
}

.related-post-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.related-post-card:hover .related-post-bg {
  transform: scale(1.05);
}

.related-post-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.related-post-date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.related-post-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* Responsive Blog Article Styles */
@media (max-width: 1024px) {
  .blog-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-article-hero {
    min-height: 60vh;
    padding: 120px 1rem 60px;
  }

  .blog-article-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .blog-article-meta {
    gap: 15px;
  }

  .blog-article-content {
    padding: 60px 1rem;
  }

  .blog-article-body {
    font-size: 1rem;
  }

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

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

  .blog-article-body blockquote {
    padding: 20px 25px;
    font-size: 1.1rem;
  }

  .blog-article-author-bio {
    padding: 25px;
  }

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

  .blog-related-posts {
    padding: 60px 1rem;
  }

  .blog-related-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

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

  .related-post-card {
    height: 350px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LEGAL PAGES - Privacy Policy & Terms of Service
   ═══════════════════════════════════════════════════════════════════════════ */

/* Legal Hero Section */
.legal-hero {
  padding: 180px 5vw 60px;
  background-color: var(--bg-color);
}

.legal-hero-container {
  max-width: 1400px;
  margin: 0 auto;
}

.legal-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 40px;
}

.legal-hero-big-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 600;
  color: var(--text-color);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.legal-hero-tagline {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 500px;
}

.legal-hero-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--border-color) 50%, transparent 100%);
  margin-bottom: 30px;
}

.legal-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
}

.legal-meta-item {
  color: var(--text-tertiary);
}

.legal-meta-divider {
  color: var(--border-color);
}

/* Legal Content Section */
.legal-content-section {
  padding: 80px 5vw 120px;
  background-color: var(--bg-color);
}

.legal-content-container {
  max-width: 1400px;
  margin: 0 auto;
}

.legal-content-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
}

/* Table of Contents */
.legal-toc {
  position: relative;
}

.legal-toc-sticky {
  position: sticky;
  top: 120px;
}

.legal-toc-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.legal-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-toc-link {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 0;
  border-left: 2px solid transparent;
  padding-left: 15px;
  margin-left: -2px;
  transition: all 0.3s ease;
}

.legal-toc-link:hover,
.legal-toc-link.active {
  color: var(--primary-color);
  border-left-color: var(--primary-color);
}

/* Main Content */
.legal-main-content {
  min-width: 0;
}

.legal-article {
  max-width: 800px;
}

.legal-section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 30px;
}

.legal-section-number {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 0.05em;
}

.legal-section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-color);
}

.legal-section-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-section-content p {
  margin-bottom: 20px;
}

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

.legal-subsection-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 35px;
  margin-bottom: 15px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.legal-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background-color: var(--primary-color);
}

.legal-list li strong {
  color: var(--text-color);
  font-weight: 500;
}

/* Legal Contact Box */
.legal-contact-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 35px;
  margin-top: 30px;
  display: grid;
  gap: 25px;
}

.legal-contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.legal-contact-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-contact-value {
  font-size: 1rem;
  color: var(--text-color);
  text-decoration: none;
  line-height: 1.6;
}

.legal-contact-value:hover {
  color: var(--primary-color);
}

.legal-notice {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--text-tertiary);
  font-style: italic;
}

/* Legal Pages Responsive */
@media (max-width: 1024px) {
  .legal-content-layout {
    grid-template-columns: 220px 1fr;
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .legal-content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-toc {
    order: -1;
  }

  .legal-toc-sticky {
    position: relative;
    top: 0;
  }

  .legal-toc-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .legal-toc-link {
    font-size: 0.9rem;
    padding: 10px 12px;
    border-left: none;
    margin-left: 0;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    text-align: center;
  }

  .legal-toc-link:hover,
  .legal-toc-link.active {
    border-color: var(--primary-color);
    background-color: rgba(174, 0, 121, 0.1);
  }
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 140px 1rem 50px;
  }

  .legal-hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: flex-start;
  }

  .legal-hero-big-title {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
  }

  .legal-hero-tagline {
    font-size: 1rem;
  }

  .legal-meta {
    flex-wrap: wrap;
    font-size: 0.85rem;
  }

  .legal-content-section {
    padding: 50px 1rem 80px;
  }

  .legal-toc-nav {
    grid-template-columns: 1fr;
  }

  .legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .legal-section-header {
    flex-direction: column;
    gap: 10px;
  }

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

  .legal-contact-box {
    padding: 25px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE DETAIL PAGES - Individual Service Page Styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* Service Hero - Matching Careers Hero Style */
.service-hero-new {
  padding: 150px 5vw 80px;
  background-color: #0a0a0a;
}

.service-hero-new-container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-hero-new-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.service-hero-left {
  flex: 1;
}

.service-hero-big-title {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  line-height: 0.9;
  color: var(--text-color);
  letter-spacing: -0.02em;
}

.service-hero-big-title .title-dot {
  color: var(--primary-color);
}

.service-hero-right {
  flex: 0 0 400px;
  padding-top: 40px;
}

.service-hero-tagline {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.service-hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 60px;
  margin-bottom: 0;
}

/* Service Feature Image */
.service-feature-image {
  padding: 0 2rem;
  background-color: var(--bg-color);
}

.service-feature-image-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.service-feature-img-wrapper {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
  border-radius: 0;
}

.service-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-feature-img-wrapper:hover .service-feature-img {
  transform: scale(1.03);
}

.service-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 10, 10, 0.4) 100%);
  pointer-events: none;
}

/* Service Overview Section */
.service-overview {
  padding: 100px 2rem;
  background-color: var(--bg-color);
}

.service-overview-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.service-overview-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
}

.service-overview-right {
  max-width: 800px;
}

.service-overview-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.service-overview-title em {
  font-style: italic;
  color: var(--primary-color);
}

.service-overview-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-overview-desc:last-child {
  margin-bottom: 0;
}

/* Service Includes Section */
.service-includes {
  padding: 100px 2rem;
  background-color: var(--bg-secondary);
}

.service-includes-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.service-includes-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
}

.service-includes-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 3rem;
}

.service-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-include-card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-include-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.include-card-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.include-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

.include-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Service Process Section */
.service-process {
  padding: 100px 2rem;
  background-color: var(--bg-color);
}

.service-process-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.service-process-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
}

.service-process-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 3rem;
}

.service-process-title em {
  font-style: italic;
  color: var(--primary-color);
}

.service-process-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-process-step {
  border-left: 2px solid var(--border-color);
  padding-left: 2rem;
  transition: border-color 0.3s ease;
}

.service-process-step:hover {
  border-color: var(--primary-color);
}

.process-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.process-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--primary-color);
  letter-spacing: 0.1em;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.process-step-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  padding-left: 0;
}

/* Service Related Section */
.service-related {
  padding: 80px 2rem;
  background-color: var(--bg-secondary);
}

.service-related-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.service-related-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 2rem;
  text-align: center;
}

.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-related-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.service-related-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.related-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.related-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.related-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.25rem;
  color: var(--text-tertiary);
  transition: all 0.3s ease;
}

.service-related-card:hover .related-card-arrow {
  color: var(--primary-color);
  transform: translate(4px, -4px);
}

/* ===================================
   Services Cards Section (Blog-style)
   =================================== */
.services-cards-section {
  padding: 80px 1rem;
  background-color: #0a0a0a;
}

.services-cards-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  overflow: visible;
}

.service-card-large {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-color);
  transition: opacity 0.3s ease;
  will-change: opacity;
  isolation: isolate;
  border: none;
  outline: none;
  box-shadow: none;
  transform: translate3d(0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  contain: strict;
}

.service-card-large:hover {
  opacity: 0.98;
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: 110% 110%;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), background-size 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  will-change: transform, background-size;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.service-card-large:hover .service-card-bg {
  background-size: 115% 115%;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0.75) 100%);
  transition: background 0.3s ease;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.service-card-large:hover .service-card-overlay {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.35) 40%,
      rgba(0, 0, 0, 0.8) 100%);
}

.service-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 2;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.service-card-number {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

.service-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 16px 0;
  transition: color 0.3s ease;
}

.service-card-large:hover .service-card-title {
  color: var(--primary-color);
}

.service-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 16px;
}

.service-card-category {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

/* Services Cards Responsive */
@media (max-width: 1024px) {
  .services-cards-grid {
    gap: 12px;
  }

  .service-card-large {
    aspect-ratio: 3/2;
  }

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

  .service-card-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  }

  .service-card-excerpt {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

@media (max-width: 768px) {
  .services-cards-section {
    padding: 60px 1rem;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card-large {
    aspect-ratio: 16/10;
  }

  .service-card-content {
    padding: 20px;
  }

  .service-card-number {
    top: 18px;
    left: 18px;
    font-size: 0.85rem;
  }

  .service-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .service-card-excerpt {
    font-size: 0.85rem;
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .service-card-divider {
    margin-bottom: 12px;
  }

  .service-card-category {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .service-card-large {
    aspect-ratio: 4/3;
  }

  .service-card-content {
    padding: 16px;
  }

  .service-card-title {
    font-size: 1.2rem;
  }

  .service-card-excerpt {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

/* Service CTA Section */
.service-cta-section {
  padding: 120px 2rem;
  background-color: #B5007B;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.service-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.service-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}

.service-cta-title .title-slash {
  color: #fff;
  font-style: italic;
}

.service-cta-description {
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.service-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #fff;
  color: #000;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.service-cta-button .button-arrow {
  font-size: 18px;
}

/* Service Detail Pages - Responsive */
@media (max-width: 1024px) {
  .service-hero-new-content {
    flex-direction: column;
    gap: 40px;
  }

  .service-hero-right {
    flex: 1;
    padding-top: 0;
  }

  .service-hero-big-title {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .service-overview-layout,
  .service-includes-layout,
  .service-process-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

@media (max-width: 768px) {
  .service-hero-new {
    padding: 120px 1rem 60px;
  }

  .service-hero-new-content {
    flex-direction: column;
    gap: 30px;
  }

  .service-hero-right {
    flex: 1;
    padding-top: 0;
    max-width: 100%;
  }

  .service-hero-big-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .service-feature-image {
    padding: 0 1rem;
  }

  .service-feature-img-wrapper {
    height: 50vh;
    min-height: 300px;
  }

  .service-overview,
  .service-includes,
  .service-process {
    padding: 60px 1rem;
  }

  .service-includes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-include-card {
    padding: 1.5rem;
  }

  .service-process-step {
    padding-left: 1.5rem;
  }

  .service-related {
    padding: 60px 1rem;
  }

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

  .service-related-card {
    padding: 1.5rem;
  }

  .service-cta-section {
    padding: 80px 1rem;
    min-height: 50vh;
  }

  .service-cta-button {
    width: 100%;
    justify-content: center;
    padding: 1.25rem 2rem;
  }
}

@media (max-width: 480px) {
  .service-hero-new {
    padding: 110px 1rem 40px;
  }

  .service-hero-big-title {
    font-size: clamp(2.5rem, 16vw, 4rem);
  }

  .service-overview-title,
  .service-includes-title,
  .service-process-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .service-overview-desc {
    font-size: 1rem;
  }

  .service-cta-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* Pricing Modal Styles */
.pricing-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: manipulation;
}

.pricing-modal.active {
  opacity: 1;
  visibility: visible;
}

.pricing-modal-content {
  position: relative;
  max-width: 450px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  z-index: 10001;
}

.pricing-modal-close:hover {
  transform: rotate(90deg);
}

.pricing-modal-card {
  min-height: 300px;
  height: 600px;
  max-height: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  z-index: 1;
  background-color: var(--primary-color);
}

.pricing-modal-waves {
  position: absolute;
  top: -106px;
  z-index: 0;
  pointer-events: none;
}

.pricing-modal-waves-left {
  left: 1rem;
}

.pricing-modal-waves-right {
  right: 1rem;
}

@keyframes waves {
  0% {
    transform: translateY(-170px);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-170px);
  }
}

.pricing-modal-waves svg {
  animation: waves 3s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.pricing-modal-waves-right svg {
  animation-delay: 1.5s;
}

/* Ensure animations work on mobile */
@media (prefers-reduced-motion: no-preference) {
  .pricing-modal-waves svg {
    animation: waves 3s ease-in-out infinite;
  }
}

.pricing-modal-card-content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}

.pricing-modal-card-heading {
  font-size: clamp(1.7rem, 10vw, 3rem);
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.pricing-modal-card-price {
  font-size: clamp(1.7rem, 10vw, 3rem);
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.pricing-modal-card-description {
  font-size: clamp(0.1rem, 20vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-top: 2.5rem;
  font-family: 'Poppins', sans-serif;
}

.pricing-modal-card-button-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pricing-modal-card-button-wrapper .pricing-modal-card-button {
  width: 50%;
}

.pricing-modal-card-button {
  height: 3rem;
  width: 100%;
  background-color: #ffffff;
  border-radius: 0;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.pricing-modal-card-button:hover {
  transform: translateY(-2px);
  background-color: #f0f0f0;
}

/* Ensure cursor works on modal elements */
.pricing-modal a,
.pricing-modal button {
  cursor: pointer;
}

@media (min-width: 769px) and (pointer: fine) {

  .pricing-modal a:hover,
  .pricing-modal button:hover {
    cursor: none;
  }
}

@media (max-width: 768px) {
  .pricing-modal {
    padding: 1rem;
    align-items: center;
    justify-content: center;
  }

  .pricing-modal-content {
    max-width: 100%;
    width: 100%;
    max-height: calc(100vh - 2rem);
    margin: auto;
  }

  .pricing-modal-card {
    height: auto;
    min-height: 400px;
    max-height: calc(100vh - 4rem);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .pricing-modal-close {
    top: -2rem;
    right: 0.5rem;
    font-size: 2rem;
    color: #ffffff;
  }

  .pricing-modal-card-content {
    gap: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .pricing-modal-card-heading {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .pricing-modal-card-price {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .pricing-modal-card-description {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-top: 1.5rem;
  }

  .pricing-modal-card-button-wrapper {
    margin-top: auto;
    justify-content: center;
    align-items: center;
  }

  .pricing-modal-card-button-wrapper .pricing-modal-card-button {
    width: 50%;
  }

  .pricing-modal-card-button {
    height: 2.75rem;
    font-size: 0.95rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .pricing-modal-card-button:hover,
  .pricing-modal-card-button:active {
    transform: translateY(-2px);
    background-color: #f0f0f0;
  }

  .pricing-modal-waves {
    opacity: 1;
    display: block;
  }

  .pricing-modal-waves-left {
    left: 0.5rem;
  }

  .pricing-modal-waves-right {
    right: 0.5rem;
  }

  .pricing-modal-waves svg {
    animation: waves 3s ease-in-out infinite;
    will-change: transform;
  }
}

@media (max-width: 480px) {
  .pricing-modal {
    padding: 0.75rem;
    align-items: center;
    justify-content: center;
  }

  .pricing-modal-content {
    max-height: calc(100vh - 1.5rem);
    margin: auto;
  }

  .pricing-modal-card {
    min-height: 380px;
    padding: 1.25rem;
    max-height: calc(100vh - 3rem);
    display: flex;
    flex-direction: column;
  }

  .pricing-modal-close {
    top: -1.75rem;
    right: 0.25rem;
    font-size: 1.75rem;
    width: 35px;
    height: 35px;
  }

  .pricing-modal-card-content {
    gap: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .pricing-modal-card-heading {
    font-size: clamp(1.25rem, 7vw, 1.75rem);
  }

  .pricing-modal-card-price {
    font-size: clamp(1.25rem, 7vw, 1.75rem);
  }

  .pricing-modal-card-description {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    margin-top: 1rem;
    line-height: 1.5;
  }

  .pricing-modal-card-button-wrapper {
    margin-top: auto;
    justify-content: center;
    align-items: center;
  }

  .pricing-modal-card-button-wrapper .pricing-modal-card-button {
    width: 50%;
  }

  .pricing-modal-card-button {
    height: 2.5rem;
    font-size: 0.9rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .pricing-modal-card-button:hover,
  .pricing-modal-card-button:active {
    transform: translateY(-2px);
    background-color: #f0f0f0;
  }

  .pricing-modal-waves {
    opacity: 1;
    display: block;
  }

  .pricing-modal-waves svg {
    width: 80px;
    height: auto;
    animation: waves 3s ease-in-out infinite;
    will-change: transform;
  }
}

/* Ensure modal is accessible and works on all screen sizes */
@media (max-width: 360px) {
  .pricing-modal {
    align-items: center;
    justify-content: center;
  }

  .pricing-modal-card {
    min-height: 350px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
  }

  .pricing-modal-card-content {
    gap: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .pricing-modal-card-heading {
    font-size: 1.25rem;
  }

  .pricing-modal-card-price {
    font-size: 1.25rem;
  }

  .pricing-modal-card-description {
    font-size: 0.85rem;
  }

  .pricing-modal-card-button-wrapper {
    margin-top: auto;
    justify-content: center;
    align-items: center;
  }

  .pricing-modal-card-button-wrapper .pricing-modal-card-button {
    width: 50%;
  }

  .pricing-modal-card-button {
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .pricing-modal-card-button:hover,
  .pricing-modal-card-button:active {
    transform: translateY(-2px);
    background-color: #f0f0f0;
  }

  .pricing-modal-waves {
    opacity: 1;
  }
}

/* Prevent body scroll when modal is open on mobile */
body.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL CUSTOM CURSOR — Dot + Ring (all pages)
   ═══════════════════════════════════════════════════════════════ */
.vz-cursor-dot,
.vz-cursor-ring {
  display: none;
}

@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }

  body a,
  body button {
    cursor: none;
  }

  .vz-cursor-dot {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #ae0079;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100001;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  }

  .vz-cursor-ring {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(174, 0, 121, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
  }

  .vz-cursor-dot.hover {
    width: 14px;
    height: 14px;
  }

  .vz-cursor-ring.hover {
    width: 52px;
    height: 52px;
    border-color: rgba(174, 0, 121, 0.7);
  }
}

@media (hover: none),
(pointer: coarse) {

  .vz-cursor-dot,
  .vz-cursor-ring {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RISK ASSESSMENT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

/* Section Dividers */
.risk-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem var(--section-padding-x, 2rem);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.risk-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(174, 0, 121, 0.25), transparent);
}

.risk-divider-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(174, 0, 121, 0.5);
  white-space: nowrap;
}

.risk-section-divider-bottom {
  padding-bottom: 0;
  margin-bottom: -1rem;
}

.risk-assessment-section {
  padding: var(--section-padding);
  padding-top: 2rem;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.risk-assessment-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(174, 0, 121, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.risk-assessment-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.risk-social-proof {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  padding: 1rem 1.25rem;
  background: rgba(174, 0, 121, 0.04);
  border-left: 2px solid rgba(174, 0, 121, 0.3);
  border-radius: 0 10px 10px 0;
}

.risk-social-proof strong {
  color: #c7008f;
  font-weight: 600;
}

/* ── Two-column layout ─────────────────────────────────────────────── */

.risk-assessment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Left Column: Floating Dashboard Cards ─────────────────────────── */

.risk-assessment-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.risk-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}

/* ── Dashboard Card Base ────────────────────────────────────────────── */

.risk-dash-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.risk-dash-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.risk-dash-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(174, 0, 121, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.risk-dash-card--budget {
  grid-column: 1 / -1;
}

.risk-dash-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.risk-dash-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.risk-dash-icon svg {
  width: 16px;
  height: 16px;
}

.risk-dash-icon--green {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.risk-dash-icon--magenta {
  background: rgba(174, 0, 121, 0.12);
  color: #c7008f;
}

.risk-dash-icon--red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.risk-dash-card-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.risk-dash-card-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.risk-dash-unit {
  font-size: 0.5em;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 2px;
}

.risk-dash-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  margin: 10px 0 8px;
  overflow: hidden;
}

.risk-dash-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.risk-bar--orange {
  background: linear-gradient(90deg, #22c55e, #eab308, #f97316);
}

.risk-dash-card-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.4;
}

.risk-dash-card-sub em {
  color: #f97316;
  font-style: normal;
  font-weight: 600;
}

.risk-dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.risk-dash-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.risk-dash-tag--red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.risk-dash-chart {
  width: 100%;
  height: 55px;
  margin: 4px 0 6px;
}

.risk-mini-chart {
  width: 100%;
  height: 100%;
}

.risk-dash-score-ring {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 4px auto 10px;
}

.risk-ring-svg {
  width: 100%;
  height: 100%;
}

.risk-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

/* ── Floating Animations ────────────────────────────────────────────── */

@keyframes riskFloat1 {

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

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

@keyframes riskFloat2 {

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

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

@keyframes riskFloat3 {

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

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

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

.risk-float-2 {
  animation: riskFloat2 5s ease-in-out infinite 0.5s;
}

.risk-float-3 {
  animation: riskFloat3 4.5s ease-in-out infinite 1s;
}

/* ── Right Column: Copy + CTA ──────────────────────────────────────── */

.risk-assessment-right {
  padding-left: 1rem;
}

.risk-assessment-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(174, 0, 121, 0.1);
  border: 1px solid rgba(174, 0, 121, 0.25);
  border-radius: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #c7008f;
  margin-bottom: 1.5rem;
}

.risk-assessment-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.risk-title-gradient {
  background: linear-gradient(90deg, #ae0079, #e040a0, #ae0079);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: riskGradientShift 4s ease infinite;
}

@keyframes riskGradientShift {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 200% center;
  }
}

.risk-assessment-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.risk-assessment-desc strong {
  color: rgba(255, 255, 255, 0.85);
}

.risk-assessment-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}

.risk-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.risk-check-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #ae0079;
}

.risk-check-item span {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.risk-assessment-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #ae0079 0%, #c7008f 100%);
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(174, 0, 121, 0.3);
}

.risk-assessment-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c7008f 0%, #ae0079 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.risk-assessment-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(174, 0, 121, 0.45);
  color: #ffffff;
}

.risk-assessment-cta:hover::before {
  opacity: 1;
}

.risk-assessment-cta span,
.risk-assessment-cta svg {
  position: relative;
  z-index: 1;
}

.risk-assessment-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.risk-assessment-cta:hover svg {
  transform: translateX(4px);
}

.risk-assessment-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

/* ── Responsive ─────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .risk-assessment-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .risk-assessment-left {
    order: 2;
    align-items: center;
  }

  .risk-assessment-right {
    order: 1;
    padding-left: 0;
    text-align: left;
  }

  .risk-cards-grid {
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .risk-assessment-section {
    padding: 4rem 1.5rem;
  }

  .risk-assessment-title {
    font-size: 1.75rem;
  }

  .risk-assessment-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .risk-cards-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .risk-dash-card {
    padding: 16px;
  }

  .risk-dash-card-value {
    font-size: 1.5rem;
  }
}