/* ============================================
   RefractWeb Agency — Menu (exact design match)
   ============================================ */

:root {
  /* Gradient — warm accent (buttons) */
  --gradient-accent-start: #c94b2a;
  --gradient-accent-mid: #d4623a;
  --gradient-accent-end: #e07b4a;
  /* Background gradient */
  --bg-dark-left: #1a1525;
  --bg-dark-right: #251a1a;
  /* Glass pill */
  --glass-bg: rgba(45, 40, 48, 0.65);
  --glass-border: rgba(255, 255, 255, 0.06);
  --link-color: rgba(220, 218, 215, 0.9);
  --link-hover: #ffffff;
  /* Shadows */
  --pill-shadow: 0 4px 20px rgba(180, 70, 40, 0.25);
  --pill-shadow-hover: 0 6px 28px rgba(200, 80, 50, 0.35);
  /* Slider section */
  --slider-bg-left: #1a1828;
  --slider-bg-mid: #2a2028;
  --slider-bg-right: #0d0d0d;
  --slider-text-muted: rgba(200, 198, 195, 0.85);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  color: #fff;
  overflow-x: hidden;
}

/* ------------------------------------------
   Menu section — full-bleed dark gradient
   ------------------------------------------ */
.menu-section {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem 1.5rem 2rem;
}

.menu-section__bg {
  display: none;
  pointer-events: none;
}

/* Subtle reddish glow orbs */
.menu-section__glow {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(200, 80, 60, 0.5);
  filter: blur(6px);
  animation: glow-pulse 4s ease-in-out infinite;
}

.menu-section__glow--left {
  top: 18%;
  left: 12%;
}

.menu-section__glow--right {
  top: 16%;
  right: 14%;
  animation-delay: 1.2s;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ------------------------------------------
   Header & nav layout
   ------------------------------------------ */
.menu-header {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
}

.menu-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ------------------------------------------
   Pill buttons (RefractWeb + Work With Us)
   ------------------------------------------ */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(
    135deg,
    var(--gradient-accent-start) 0%,
    var(--gradient-accent-mid) 45%,
    var(--gradient-accent-end) 100%
  );
  box-shadow: var(--pill-shadow);
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, filter 0.2s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pill-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.pill-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(201, 75, 42, 0.4);
  filter: brightness(1.12);
}

.pill-btn:hover::before {
  width: 300px;
  height: 300px;
}

.pill-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* ------------------------------------------
   Center glassmorphism pill (Home, About, Works)
   ------------------------------------------ */
.glass-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.6rem 1.75rem;
  border-radius: 9999px;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.glass-pill:hover {
  border-color: rgba(201, 75, 42, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 75, 42, 0.15);
  background: linear-gradient(135deg, rgba(55, 50, 60, 0.7), rgba(35, 30, 45, 0.7));
}

.menu-nav__link {
  color: var(--link-color);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  transition: color 0.3s ease, background 0.3s ease, text-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-nav__link:hover {
  color: var(--link-hover);
  text-shadow: 0 0 10px rgba(201, 75, 42, 0.4);
}

.menu-nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-nav__link:focus-visible {
  outline: 2px solid var(--gradient-accent-mid);
  outline-offset: 4px;
}

.menu-nav__link.is-active {
  color: var(--link-hover);
  font-weight: 600;
}

/* ------------------------------------------
   Responsive: stack or simplify on small screens
   ------------------------------------------ */
@media (max-width: 768px) {
  .menu-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-nav__brand {
    align-self: flex-start;
  }

  .glass-pill {
    width: 100%;
    justify-content: space-around;
    gap: 1rem;
  }

  .menu-nav__cta {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .menu-section {
    padding: 1.25rem 1rem 3rem;
  }

  .pill-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
  }

  .glass-pill {
    padding: 0.5rem 1.25rem;
    gap: 1.25rem;
  }

  .menu-nav__link {
    font-size: 0.875rem;
  }
}

/* ============================================
   MOBILE MENU TOGGLE & RESPONSIVE NAVIGATION
   ============================================ */

/* Mobile Menu Toggle Button */
.menu-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 1.5rem;
  top: 0;
  z-index: 20;
  border-radius: 8px;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.menu-nav__toggle:hover {
  background: rgba(201, 75, 42, 0.1);
}

.menu-nav__toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 24px;
}

.menu-nav__toggle-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, #c94b2a, #e07b4a);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

/* Active/Open State for Toggle */
.menu-nav__toggle.is-open .menu-nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.menu-nav__toggle.is-open .menu-nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-nav__toggle.is-open .menu-nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

/* Mobile Menu Panel */
.menu-nav__center {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: top center;
}

.menu-nav__center.is-hidden {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.menu-nav__center.is-visible {
  display: flex;
}

/* Tablet Responsive (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .menu-section {
    padding: 1.25rem 1.5rem 1.75rem;
  }

  .menu-nav {
    gap: 1rem;
  }

  .glass-pill {
    gap: 1.5rem;
    padding: 0.55rem 1.5rem;
  }

  .menu-nav__link {
    font-size: 0.9rem;
  }

  .pill-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }
}

/* Mobile Tablet Landscape (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
  .menu-section {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .menu-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .menu-nav__brand {
    flex-shrink: 0;
  }

  .menu-nav__toggle {
    display: none;
  }

  .glass-pill {
    display: none;
  }

  .menu-nav__cta {
    flex-shrink: 0;
  }
}

/* Mobile Portrait (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
  .menu-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 1rem 0;
    z-index: 100;
  }

  .menu-header {
    width: 100%;
  }

  .menu-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  .menu-nav__brand {
    flex-shrink: 0;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .menu-nav__toggle {
    display: flex;
    order: 2;
  }

  .glass-pill {
    position: fixed;
    top: 60px;
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: calc(100% - 2rem);
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    z-index: 99;
    background: rgba(45, 40, 48, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform-origin: top center;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .glass-pill.is-visible {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }

  .menu-nav__link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
  }

  .menu-nav__link:hover {
    background: rgba(201, 75, 42, 0.15);
  }

  .menu-nav__cta {
    flex-shrink: 0;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* Ultra-Mobile (< 480px) */
@media (max-width: 479px) {
  .menu-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 0.75rem 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(26, 21, 37, 0.95), rgba(26, 21, 37, 0.85));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 75, 42, 0.1);
  }

  .menu-section__bg {
    display: none;
  }

  .menu-header {
    width: 100%;
  }

  .menu-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    flex-wrap: nowrap;
  }

  .menu-nav__brand {
    flex-shrink: 0;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    min-width: 70px;
  }

  .menu-nav__toggle {
    display: flex;
    order: 3;
    width: 40px;
    height: 40px;
    padding: 6px;
  }

  .menu-nav__toggle-line {
    height: 2px;
  }

  .glass-pill {
    position: fixed;
    top: 50px;
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 12px;
    z-index: 99;
    background: rgba(45, 40, 48, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 75, 42, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transform-origin: top center;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 0;
    overflow: hidden;
  }

  .glass-pill.is-visible {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    max-height: 300px;
  }

  .menu-nav__link {
    padding: 0.65rem 0.8rem;
    font-size: 0.95rem;
    border-radius: 6px;
    color: rgba(220, 218, 215, 0.9);
    transition: all 0.2s ease;
    display: block;
    text-align: center;
  }

  .menu-nav__link::after {
    display: none;
  }

  .menu-nav__link:active {
    background: rgba(201, 75, 42, 0.2);
  }

  .menu-nav__link.is-active {
    background: rgba(201, 75, 42, 0.15);
    color: #fff;
  }

  .menu-nav__cta {
    display: none;
  }

  .slider-section {
    margin-top: 60px;
  }
}

/* Ultra-small phones (< 360px) */
@media (max-width: 359px) {
  .menu-section {
    padding: 0.5rem 0.5rem 0;
  }

  .menu-nav__brand {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    min-width: 60px;
  }

  .menu-nav__toggle {
    width: 36px;
    height: 36px;
    padding: 4px;
  }

  .glass-pill {
    top: 45px;
    left: 0.5rem;
    right: 0.5rem;
    padding: 0.5rem;
  }

  .menu-nav__link {
    padding: 0.5rem 0.6rem;
    font-size: 0.85rem;
  }

  .slider-section {
    margin-top: 55px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .menu-nav__toggle {
    min-height: 48px;
    min-width: 48px;
  }

  .menu-nav__link {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pill-btn {
    min-height: 44px;
  }
}

/* ============================================
   REDESIGNED SLIDER SECTION — Premium Modern
   ============================================ */

.slider-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9rem 1.5rem 4rem;
  overflow: hidden;
}

.slider-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1a1525 0%,
    #2a1f35 25%,
    #1f1a2e 50%,
    #251525 75%,
    #0d0d0d 100%
  );
  pointer-events: none;
}

/* Premium gradient orbs */
.slider-section__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orb-float 8s ease-in-out infinite;
}

.slider-section__gradient-orb--1 {
  width: 400px;
  height: 400px;
  top: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(201, 75, 42, 0.25) 0%, transparent 70%);
  animation-delay: 0s;
}

.slider-section__gradient-orb--2 {
  width: 350px;
  height: 350px;
  top: 20%;
  right: -5%;
  background: radial-gradient(circle, rgba(224, 123, 74, 0.2) 0%, transparent 70%);
  animation-delay: 2s;
}

.slider-section__gradient-orb--3 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(150, 80, 60, 0.15) 0%, transparent 70%);
  animation-delay: 4s;
}

@keyframes orb-float {
  0%, 100% {
    opacity: 0.5;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.8;
    transform: translate(30px, -40px);
  }
}

.slider-section__grid {
  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: 60px 60px;
  mask-image: linear-gradient(to right, transparent 30%, black 60%, transparent 95%);
  -webkit-mask-image: linear-gradient(to right, transparent 30%, black 60%, transparent 95%);
  pointer-events: none;
  opacity: 0.4;
}

.slider-section__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Content side */
.slider-section__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Enhanced badge */
.slider-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  width: fit-content;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(201, 75, 42, 0.12), rgba(224, 123, 74, 0.06));
  border: 1.5px solid rgba(201, 75, 42, 0.35);
  backdrop-filter: blur(12px);
  animation: slider-fade-up 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0s both;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slider-section__badge:hover {
  background: linear-gradient(135deg, rgba(201, 75, 42, 0.18), rgba(224, 123, 74, 0.12));
  border-color: rgba(201, 75, 42, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 75, 42, 0.2);
}

.slider-section__badge-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c94b2a, #e07b4a);
  box-shadow: 0 0 16px rgba(220, 100, 60, 0.9);
  animation: pulse-expand 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-expand {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 16px rgba(220, 100, 60, 0.9);
  }
  50% {
    transform: scale(1.2);
    opacity: 0.85;
    box-shadow: 0 0 28px rgba(220, 100, 60, 1);
  }
}

.slider-section__badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
}

/* Headline wrapper */
.slider-section__headline-wrapper {
  line-height: 1;
  margin: 0.5rem 0;
}

.slider-section__title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5f3f1 12%,
    #e8e6e4 28%,
    #d9d7d5 50%,
    #c4c2c0 75%,
    #a8a6a4 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slider-fade-up 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both, gradient-subtle-shift 4s ease-in-out infinite 1.15s;
  position: relative;
}

/* Make hero headline static (no animations) */
.slider-section__headline-wrapper .slider-section__title,
.slider-section__headline-wrapper .slider-section__title-word,
.slider-section__headline-wrapper .slider-section__title-accent {
  animation: none !important;
}

.slider-section__headline-wrapper .slider-section__title-word::before {
  content: none;
}

.slider-section__title-word {
  display: block;
  position: relative;
  overflow: hidden;
}

.slider-section__title-word::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0.1) 55%, transparent 100%);
  animation: title-shine-sweep 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes title-shine-sweep {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.slider-section__title-break {
  display: none;
}

.slider-section__title-accent {
  background: linear-gradient(135deg, #e07b4a 0%, #f6aa63 50%, #e07b4a 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: accent-color-pulse 3s ease-in-out infinite;
}

@keyframes accent-color-pulse {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes gradient-subtle-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes slider-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Description */
.slider-section__description {
  font-size: 1.1rem;
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: rgba(200, 198, 195, 0.88);
  max-width: 520px;
  animation: slider-fade-up 0.8s ease-out 0.25s both;
  font-weight: 400;
}

/* CTA Group */
.slider-section__cta-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: slider-fade-up 0.8s ease-out 0.35s both;
  margin-top: 0.5rem;
}

/* Primary Button */
.slider-section__primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #c94b2a 0%, #d4623a 50%, #e07b4a 100%);
  background-size: 200% 200%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(201, 75, 42, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.slider-section__primary-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  opacity: 0;
  animation: btn-shine 2.5s ease-in-out infinite;
}

@keyframes btn-shine {
  0%, 100% {
    opacity: 0;
    left: -100%;
  }
  50% {
    opacity: 1;
  }
}

.slider-section__primary-btn:hover {
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 75, 42, 0.45), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.slider-section__primary-btn:active {
  transform: translateY(-1px);
}

.slider-section__btn-arrow {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.slider-section__primary-btn:hover .slider-section__btn-arrow {
  transform: translateX(4px);
}

/* Secondary Link */
.slider-section__secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(220, 218, 215, 0.85);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  padding: 0.5rem 0;
}

.slider-section__secondary-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e07b4a, transparent);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slider-section__secondary-link:hover {
  color: #ffffff;
  gap: 0.9rem;
}

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

.slider-section__link-arrow {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slider-section__secondary-link:hover .slider-section__link-arrow {
  transform: translateX(4px) translateY(-2px);
}

/* Media side */
.slider-section__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slider-fade-up 1s ease-out 0.3s both;
  perspective: 1200px;
}

.slider-section__image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  /* Let the image keep its natural aspect ratio so
     wide hero images (like your reference) don't get
     awkwardly cropped into a square */
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(40, 35, 50, 0.6), rgba(60, 50, 70, 0.4));
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  animation: image-subtle-lift 4s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes image-subtle-lift {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

.slider-section__image-frame:hover {
  transform: translateY(-16px) rotateX(3deg) rotateY(-3deg);
  box-shadow: 0 48px 96px rgba(201, 75, 42, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.slider-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slider-section__image-frame:hover .slider-section__image {
  transform: scale(1.05);
}

.slider-section__image-border {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Floating stat badge */
.slider-section__floating-badge {
  position: absolute;
  background: linear-gradient(135deg, rgba(40, 35, 50, 0.8), rgba(60, 50, 70, 0.6));
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: floating-bounce 4s ease-in-out infinite;
  z-index: 10;
}

@keyframes floating-bounce {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-8px) translateX(4px);
  }
  50% {
    transform: translateY(-12px) translateX(0);
  }
  75% {
    transform: translateY(-8px) translateX(-4px);
  }
}

.slider-section__floating-badge--stats {
  bottom: -20px;
  left: -40px;
  animation-delay: 0s;
}

.slider-section__floating-badge--tech {
  top: -20px;
  right: -50px;
  animation-delay: 1.5s;
}

.slider-section__stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slider-section__stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #e07b4a, #f6aa63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.slider-section__stat-label {
  font-size: 0.8rem;
  color: rgba(220, 218, 215, 0.75);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slider-section__tech-stack {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.slider-section__tech-tag {
  display: inline-flex;
  padding: 0.5rem 0.9rem;
  background: rgba(201, 75, 42, 0.15);
  border: 1px solid rgba(201, 75, 42, 0.3);
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f6aa63;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.slider-section__tech-tag:hover {
  background: rgba(201, 75, 42, 0.25);
  border-color: rgba(201, 75, 42, 0.5);
  transform: translateY(-2px);
}

/* Scroll hint */
.slider-section__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(220, 218, 215, 0.6);
  animation: scroll-pulse 2s ease-in-out infinite;
  transition: color 0.3s ease;
  z-index: 5;
}

@keyframes scroll-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
}

.slider-section__scroll-icon {
  animation: bounce-icon 1.5s ease-in-out infinite;
}

@keyframes bounce-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.slider-section__scroll-hint:hover {
  color: rgba(220, 218, 215, 0.9);
}

/* Responsive */
@media (max-width: 1200px) {
  .slider-section {
    padding: 8rem 1.5rem 4rem;
    min-height: 90vh;
  }

  .slider-section__container {
    gap: 3rem;
  }

  .slider-section__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  .slider-section__description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .slider-section {
    padding: 6rem 1.25rem 3rem;
    min-height: 85vh;
  }

  .slider-section__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .slider-section__media {
    order: -1;
  }

  .slider-section__image-frame {
    max-width: 100%;
    max-height: 400px;
  }

  .slider-section__floating-badge {
    padding: 1rem 1.5rem;
  }

  .slider-section__floating-badge--stats {
    bottom: 10px;
    left: 10px;
  }

  .slider-section__floating-badge--tech {
    top: 10px;
    right: 10px;
  }

  .slider-section__cta-group {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .slider-section__primary-btn {
    width: 100%;
    justify-content: center;
  }

  .slider-section__title-break {
    display: block;
  }

  .slider-section__scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .slider-section {
    padding: 5rem 1rem 2.5rem;
    min-height: 80vh;
  }

  .slider-section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }

  .slider-section__description {
    font-size: 0.95rem;
  }

  .slider-section__cta-group {
    gap: 0.8rem;
  }

  .slider-section__badge {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .slider-section {
    padding: 3rem 1rem 4rem;
  }

  .slider-section__badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  .slider-section__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .slider-section__link {
    justify-content: center;
  }

  .slider-section__chip-svg {
    transform: perspective(800px) rotateY(-6deg) rotateX(2deg);
  }
}
/* ============================================
   Partners section — scrolling tech stack
   ============================================ */
   .partners-section {
    position: relative;
    padding: 2rem 1.5rem 2rem;
    background: linear-gradient(
      90deg,
      var(--slider-bg-left) 0%,
      #2a1f33 35%,
      #1a1417 70%,
      #050505 100%
    );
  }
  
  .partners-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .partners-strip {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  }
  
  .partners-strip__inner {
    display: inline-flex;
    align-items: center;
    gap: 4.5rem;
    white-space: nowrap;
    animation: partners-marquee 16s linear infinite;
  }
  
  .partners-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0.9;
    transition: all 0.3s ease;
  }

  .partners-logo:hover {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgba(201, 75, 42, 0.3));
  }

  .partners-logo__img {
    display: block;
    height: 50px;
    width: auto;
    object-fit: contain;
  }
  
  .partners-logo--notion {
    color: rgba(200, 200, 200, 0.6);
  }
  
  /* Slight individual tweaks to feel more logo-like */
  .partners-logo--react {
    font-weight: 600;
    letter-spacing: 0.12em;
  }
  
  .partners-logo--gsap {
    font-weight: 700;
  }
  
  .partners-logo--hotjar {
    text-transform: lowercase;
  }
  
  @keyframes partners-marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Responsive tweak */
  @media (max-width: 600px) {
    .partners-section {
      padding: 2rem 1rem 2.5rem;
    }
  
    .partners-strip__inner {
      gap: 2.5rem;
      animation-duration: 22s;
    }
  
  .partners-logo {
    font-size: 0.85rem;
    }
  }

/* ============================================
   Services section — core capabilities
   ============================================ */
.services-section {
  position: relative;
  padding: 5rem 1.5rem 5.5rem;
  text-align: center;
  overflow: hidden;
}

.services-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
}

.services-section__glow {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200, 80, 60, 0.45);
  filter: blur(8px);
  animation: glow-pulse 4s ease-in-out infinite;
}

.services-section__glow--l {
  top: 20%;
  left: 10%;
}

.services-section__glow--r {
  top: 18%;
  right: 12%;
  animation-delay: 1.2s;
}

.services-section__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent 30%, black 50%, black 50%, transparent 70%);
  -webkit-mask-image: linear-gradient(to right, transparent 30%, black 50%, black 50%, transparent 70%);
  pointer-events: none;
}

.services-section__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.services-section__title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e8e6e4 50%, #b8b6b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slider-fade-up 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  position: relative;
  display: inline-block;
}

.services-section__desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slider-text-muted);
  margin-bottom: 2rem;
}

.services-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.services-section__btn {
  flex-shrink: 0;
}

.services-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.services-section__link:hover {
  color: #fff;
  gap: 0.75rem;
}

.services-section__arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.services-section__link:hover .services-section__arrow {
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .services-section {
    padding: 3.5rem 1rem 4rem;
  }

  .services-section__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ------------------------------------------
   Services cards grid
   ------------------------------------------ */
   .services-section__cards {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1.4fr 1.05fr 1.1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "web web branding"
      "software center animation";
    gap: 1.5rem;
  }
  
  /* Base card */
  .service-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(8, 6, 12, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    isolation: isolate;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 75, 42, 0.3);
    box-shadow: 0 40px 80px rgba(201, 75, 42, 0.2), 0 26px 60px rgba(0, 0, 0, 0.7);
  }
  
  .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(231, 120, 72, 0.22), transparent 55%);
    opacity: 0.9;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .service-card:hover::before {
    opacity: 1.1;
  }
  
  .service-card__top,
  .service-card__bottom {
    position: relative;
    padding: 1.5rem 1.6rem 1.3rem;
    z-index: 1;
  }
  
  .service-card__top--compact {
    padding-bottom: 1rem;
  }
  
  .service-card__footer {
    position: relative;
    padding: 0 1.6rem 1.4rem;
    z-index: 1;
  }
  
  .service-card__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(16, 14, 22, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  
  .service-card__icon-dot,
  .service-card__icon-circle {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gradient-accent-start), var(--gradient-accent-end));
    box-shadow: 0 0 10px rgba(224, 120, 72, 0.9);
  }
  
  .service-card__subtitle {
    margin-top: 1.1rem;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(219, 216, 213, 0.9);
  }
  
  .service-card__title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  
  /* Links */
  .service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gradient-accent-mid);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
  }

  .service-card__link::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent-mid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .service-card__link:hover {
    color: var(--gradient-accent-end);
    gap: 0.7rem;
  }

  .service-card__link:hover::before {
    transform: scaleX(1);
  }
  
  .service-card__arrow {
    display: inline-block;
    font-size: 0.8rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .service-card__link:hover {
    color: #fff;
    gap: 0.65rem;
  }
  
  .service-card__link:hover .service-card__arrow {
    transform: translateX(3px) translateY(-1px);
  }
  
  /* Media areas */
  .service-card__media {
    position: relative;
    z-index: 0;
    border-radius: 22px;
    margin: 0 1.2rem 1.2rem;
    overflow: hidden;
  }
  
  /* Web (top-left, wide) */
  .service-card--web {
    grid-area: web;
    min-height: 260px;
  }
  
  .service-card--web .service-card__media--web {
    height: 300px;
    background: linear-gradient(135deg, #20263b 0%, #2e3e64 40%, #1a1f33 100%);
    box-shadow: 0 18px 40px rgba(1, 10, 40, 0.9);
  }
  
  /* Branding (top-right) */
  .service-card--branding {
    grid-area: branding;
    min-height: 260px;
  }
  
  .service-card--branding .service-card__media--branding {
    height: 300px;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 55%),
                linear-gradient(135deg, #2a1722, #3a232b);
  }

  .service-card__media--web .service-card__media-img,
  .service-card__media--branding .service-card__media-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  
  /* Software / AI (bottom-left with code) */
  .service-card--software {
    grid-area: software;
  }
  
  .service-card__code {
    position: relative;
    padding: 1.3rem 1.4rem 0;
    z-index: 1;
  }
  
  .service-card__code pre {
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: radial-gradient(circle at top left, #1b2234, #090b14);
    font-size: 0.75rem;
    line-height: 1.5;
    color: #f2f3ff;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(1, 8, 32, 0.9);
  }
  
  /* Center tall card */
  .service-card--center {
    grid-area: center;
    background: radial-gradient(circle at center, rgba(229, 123, 76, 0.38), rgba(7, 6, 12, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-card--center::before {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 60%);
    opacity: 0.35;
  }
  
  .service-card__center-inner {
    text-align: center;
    padding: 2.2rem 1.8rem;
  }
  
  .service-card__center-tag {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
  }
  
  .service-card__center-title {
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }
  
  .service-card__center-sub {
    font-size: 0.95rem;
    color: rgba(232, 229, 226, 0.9);
  }
  
  /* 3D Animation (bottom-right) */
  .service-card--animation {
    grid-area: animation;
  }
  
  .service-card--animation .service-card__media--animation {
    height: 300px;
    background: linear-gradient(135deg, #191c32 0%, #222748 40%, #1d1b26 100%);
    box-shadow: 0 18px 38px rgba(5, 10, 45, 0.9);
  }

  .service-card__media--animation .service-card__media-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  
  .service-card__bottom--tight {
    padding-top: 1.2rem;
  }
  
  /* Hover lift */
  .service-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.95);
    border-color: rgba(255, 255, 255, 0.14);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .services-section__cards {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      grid-template-rows: auto auto auto;
      grid-template-areas:
        "web web"
        "software center"
        "branding animation";
    }
  }
  
  @media (max-width: 720px) {
    .services-section__cards {
      grid-template-columns: minmax(0, 1fr);
      grid-template-areas:
        "web"
        "branding"
        "center"
        "software"
        "animation";
    }
  
    .service-card {
      min-height: 0;
    }
  
    .service-card__media {
      margin: 0 1rem 1.1rem;
    }
  }

/* ============================================
   Portfolio section — Selected work slider
   ============================================ */
   .portfolio-section {
    position: relative;
    padding: 5.5rem 1.5rem 5rem;
    background: linear-gradient(
      90deg,
      var(--slider-bg-left) 0%,
      #221c2e 25%,
      var(--slider-bg-mid) 55%,
      #1a1518 80%,
      var(--slider-bg-right) 100%
    );
    color: #fff;
  }
  
  .portfolio-section__inner {
    max-width: 1160px;
    margin: 0 auto;
  }
  
  .portfolio-section__header {
    text-align: center;
    margin-bottom: 2.75rem;
  }
  
  .portfolio-section__title {
    font-size: clamp(1.875rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #e8e6e4 50%, #b8b6b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slider-fade-up 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    display: inline-block;
    position: relative;
  }
  
  .portfolio-section__subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(210, 208, 205, 0.9);
    max-width: 640px;
    margin: 0 auto 1.9rem;
  }
  
  .portfolio-section__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .portfolio-section__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
  }
  
  .portfolio-section__link:hover {
    color: #fff;
    gap: 0.65rem;
  }
  
  .portfolio-section__arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }
  
  .portfolio-section__link:hover .portfolio-section__arrow {
    transform: translateX(4px);
  }
  
  /* Slider layout */
  .portfolio-slider {
    margin-top: 2.5rem;
  }
  
  .portfolio-slider__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.75rem; /* space for custom track */
    scrollbar-width: none; /* Firefox: hide scrollbar */
    -ms-overflow-style: none; /* IE/Edge legacy */
    max-width: 1120px;
    margin: 0 auto;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }

  .portfolio-slider__viewport::-webkit-scrollbar {
    display: none; /* Chrome/Safari: hide scrollbar */
  }
  
  .portfolio-slider__track {
    display: flex;
    gap: 1.75rem;
    padding-bottom: 2.25rem;
  }
  
  .portfolio-card {
    flex: 0 0 min(400px, 90vw);
    scroll-snap-align: center;
    border-radius: 26px;
    background: radial-gradient(circle at top left, #222738, #050509);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 75, 42, 0.3);
    box-shadow: 0 32px 80px rgba(201, 75, 42, 0.2), 0 26px 60px rgba(0, 0, 0, 0.9);
  }

  .portfolio-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.4rem 0.4rem;
  }

  .portfolio-card__brand {
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: rgba(200, 206, 255, 0.9);
  }

  .portfolio-card__top-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }

  .portfolio-card__top-icon {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: radial-gradient(circle at 30% 20%, #5ae3ff, #1b2638);
    box-shadow: 0 0 10px rgba(90, 227, 255, 0.7);
    opacity: 0.9;
  }
  
  /* Aether card (light top) */
  .portfolio-card--aether .portfolio-card__mock-header {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.9rem;
    background: #f7f7f9;
  }
  
  .portfolio-card__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #d5d6dc;
  }
  
  .portfolio-card__hero--aether {
    position: relative;
    background: #fdfdfd;
    padding: 1.8rem 1.7rem 1.4rem;
  }
 
  .portfolio-card__hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .portfolio-card__hero-gradient {
    position: absolute;
    left: 1.7rem;
    right: 1.7rem;
    bottom: 1.1rem;
    height: 84px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffb7ea 0%, #f0a0ff 35%, #f2c3ff 100%);
    opacity: 0.9;
  }
  
  .portfolio-card__hero-text h3 {
    position: relative;
    z-index: 1;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111118;
  }
  
  /* Sentinel-style hero layout (used on all cards) */
  .portfolio-card__hero--sentinel {
    display: flex;
    padding: 0.9rem 1.4rem 1.4rem;
    gap: 1.2rem;
  }

  .portfolio-card__hero-chip-img {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  }
  
  .portfolio-card__hero-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(230, 230, 235, 0.92);
  }
  
  .portfolio-card__hero-chip {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 16px;
    background: radial-gradient(circle at center, #444, #111);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  }
  
  /* Cortex card */
  .portfolio-card--cortex .portfolio-card__hero--cortex {
    position: relative;
    height: 160px;
    background: radial-gradient(circle at center, #f69f3c, #f2663c, #3b1620);
  }
  
  .portfolio-card__hero-orbit {
    position: absolute;
    inset: 18px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.85);
  }

  /* Nova card */
  .portfolio-card--nova .portfolio-card__hero--nova {
    position: relative;
    height: 160px;
    background: radial-gradient(circle at 20% 0%, #5ae3ff, transparent 55%),
                radial-gradient(circle at 80% 100%, #ff7ce0, transparent 60%),
                linear-gradient(135deg, #131824, #15192b 45%, #0c0c12 100%);
    overflow: hidden;
  }

  .portfolio-card__hero-pulse {
    position: absolute;
    inset: 26px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.9);
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 65%);
  }
 
  /* Meta shared */
  .portfolio-card__meta {
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }
  
  .portfolio-card__name {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  
  .portfolio-card__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(210, 208, 205, 0.9);
  }
  
  .portfolio-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(211, 208, 205, 0.9);
  }
  
  /* Bottom bar: progress + arrows */
  .portfolio-slider__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 900px;
    margin: 0.25rem auto 0;
  }
  
  .portfolio-slider__progress {
    position: relative;
    flex: 1;
    height: 2px;
    background: transparent;
  }
  
  .portfolio-slider__track-line {
    position: absolute;
    inset: 0;
    margin-inline: 3rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.16));
    border-radius: 999px;
  }
  
  .portfolio-slider__thumb {
    position: absolute;
    top: -3px;
    left: 3rem;
    width: 70px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gradient-accent-start), var(--gradient-accent-end));
    box-shadow: 0 0 16px rgba(223, 120, 70, 0.8);
    transition: transform 0.3s ease;
  }
  
  .portfolio-slider__controls {
    display: flex;
    gap: 0.5rem;
  }
  
  .portfolio-slider__btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 9, 16, 0.9);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  }
  
  .portfolio-slider__btn:hover {
    background: rgba(24, 22, 32, 0.95);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
  }

/* On larger screens, show 3 cards at once with 4th overflowing for slider */
  @media (min-width: 900px) {
    .portfolio-slider__track {
      padding-inline: 1.5rem;
    }

    .portfolio-card {
      flex: 0 0 calc((100% - 3.5rem) / 3); /* 3 cards visible, 1.75rem gap between them */
      max-width: none;
    }

    .portfolio-card--aether {
      transform: translateY(-10px);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 1);
    }

    .portfolio-card--sentinel {
      transform: translateY(-4px);
    }

    .portfolio-card--cortex,
    .portfolio-card--nova {
      transform: translateY(2px);
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .portfolio-section {
      padding: 4.5rem 1rem 4rem;
    }
  
    .portfolio-slider__thumb {
      width: 56px;
    }
  }

/* ============================================
   Impact section — performance metrics
   ============================================ */
.impact-section {
  position: relative;
  padding: 5.5rem 1.5rem 5.5rem;
  overflow: hidden;
}

.impact-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
}

.impact-section__glow {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200, 80, 60, 0.45);
  filter: blur(8px);
  animation: glow-pulse 4s ease-in-out infinite;
}

.impact-section__glow--l {
  top: 18%;
  left: 12%;
}

.impact-section__glow--r {
  top: 16%;
  right: 14%;
  animation-delay: 1.2s;
}

.impact-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.impact-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.impact-section__title-wrap {
  max-width: 520px;
}

.impact-section__title {
  font-size: clamp(1.9rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  color: #f5f3f0;
  background: linear-gradient(135deg, #ffffff 0%, #e8e6e4 50%, #b8b6b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slider-fade-up 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  display: inline-block;
  position: relative;
}

.impact-section__subtitle {
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(211, 208, 205, 0.9);
}

.impact-section__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.impact-section__btn {
  flex-shrink: 0;
}

.impact-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(230, 227, 224, 0.9);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.impact-section__link:hover {
  color: #ffffff;
  gap: 0.75rem;
}

.impact-section__arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.impact-section__link:hover .impact-section__arrow {
  transform: translateX(4px);
}

/* Cards layout */
.impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "revenue assets"
    "dna dna";
  gap: 1.7rem;
}

.impact-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(6, 4, 10, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.9);
  color: #fff;
  isolation: isolate;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(231, 120, 72, 0.22), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 100px rgba(201, 75, 42, 0.3), 0 28px 72px rgba(0, 0, 0, 0.9);
  border-color: rgba(201, 75, 42, 0.3);
}

.impact-card:hover::before {
  opacity: 1.1;
}

.impact-card__inner {
  position: relative;
  z-index: 1;
  padding: 1.8rem 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.impact-card__inner--split {
  flex-direction: row;
  align-items: stretch;
  gap: 1.4rem;
}

.impact-card__inner--dna {
  flex-direction: row;
  align-items: flex-end;
  gap: 1.8rem;
}

.impact-card__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(230, 227, 224, 0.82);
}

.impact-card__value {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-top: 0.25rem;
}

.impact-card__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(214, 211, 208, 0.92);
  max-width: 320px;
}

.impact-card__desc span {
  color: #ffffff;
}

.impact-card--revenue {
  grid-area: revenue;
}

.impact-card--assets {
  grid-area: assets;
  background: linear-gradient(135deg, #1e2749 0%, #2a1f2e 40%, #3d2a24 70%, #4a3028 100%);
}

.impact-card--assets::before {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 60%);
}

.impact-card--assets .impact-card__value {
  background: linear-gradient(180deg, #ffffff 0%, #e8e6e3 40%, #c9c6c2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.15);
}

.impact-card--dna {
  grid-area: dna;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), rgba(4, 3, 9, 0.98));
}

/* Assets card bottom wave */
.impact-card__assets-line {
  position: relative;
  margin: 0 0.2rem 0.2rem;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a1420, #050509);
  overflow: hidden;
}

.impact-card__assets-wave {
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 0% 100%, rgba(246, 164, 107, 0.9), transparent 55%),
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 1), transparent 55%),
    radial-gradient(circle at 60% 100%, rgba(246, 164, 107, 0.9), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 1), transparent 55%);
  filter: blur(0.4px);
  box-shadow: 0 0 22px rgba(255, 213, 180, 0.9);
  transform: translateX(-15%);
  animation: impact-assets-line 5.5s ease-in-out infinite;
}

.impact-card__assets-dot {
  position: absolute;
  bottom: 7px;
  left: 14%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fff7ee, #f4a46b);
  box-shadow: 0 0 18px rgba(244, 164, 107, 0.95);
  animation: impact-assets-dot-follow 5.5s ease-in-out infinite;
}

@keyframes impact-assets-line {
  0% {
    transform: translateX(-15%) translateY(2px);
  }
  25% {
    transform: translateX(-8%) translateY(0);
  }
  50% {
    transform: translateX(0%) translateY(3px);
  }
  75% {
    transform: translateX(6%) translateY(1px);
  }
  100% {
    transform: translateX(-15%) translateY(2px);
  }
}

@keyframes impact-assets-dot-follow {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(30%) translateY(-3px);
  }
  50% {
    transform: translateX(70%) translateY(2px);
  }
  75% {
    transform: translateX(110%) translateY(-2px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

/* Revenue bars visual */
.impact-card__bars {
  position: relative;
  margin-top: 1.4rem;
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 90px;
}

.impact-card__bar {
  flex: 0 0 6px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(250, 177, 118, 0.95),
    rgba(230, 132, 80, 0.25),
    rgba(18, 8, 6, 0.1)
  );
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
  transform-origin: bottom;
  transform: scaleY(1);
  animation: impact-bars-wave 2.8s ease-in-out infinite;
}

.impact-card__bar--1 { height: 28%; animation-duration: 2.4s; animation-delay: -0.1s; }
.impact-card__bar--2 { height: 42%; animation-duration: 2.7s; animation-delay: -0.25s; }
.impact-card__bar--3 { height: 55%; animation-duration: 2.9s; animation-delay: -0.4s; }
.impact-card__bar--4 { height: 70%; animation-duration: 3.1s; animation-delay: -0.55s; }
.impact-card__bar--5 { height: 86%; animation-duration: 3.3s; animation-delay: -0.7s; }
.impact-card__bar--6 { height: 72%; animation-duration: 2.9s; animation-delay: -0.45s; }
.impact-card__bar--7 { height: 58%; animation-duration: 2.6s; animation-delay: -0.3s; }
.impact-card__bar--8 { height: 40%; animation-duration: 2.3s; animation-delay: -0.15s; }

@keyframes impact-bars-wave {
  0%,
  100% {
    transform: scaleY(1);
  }
  40% {
    transform: scaleY(1.25);
  }
  70% {
    transform: scaleY(0.9);
  }
}

/* Assets preview */
.impact-card__copy {
  flex: 1.2;
}

.impact-card__preview {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: stretch;
}

.impact-card__preview-window {
  position: relative;
  width: 100%;
  max-width: 210px;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  background: radial-gradient(circle at 0% 100%, #f4a46b 0%, #3a2834 45%, #050509 100%);
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.75);
}

/* Assets card – white preview mockup to match image design */
.impact-card__preview-window--assets {
  background: #f8f7f5;
  max-width: 240px;
  aspect-ratio: 4 / 3.2;
  border-radius: 16px;
  padding: 12px 16px 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  transform: rotate(-4deg);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.impact-card__preview-window--assets .impact-card__preview-pill {
  width: 48px;
  height: 8px;
  border-radius: 999px;
  background: #3d3d3d;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.impact-card__preview-window--assets .impact-card__preview-nav {
  font-size: 0.65rem;
  color: rgba(80, 80, 80, 0.7);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.impact-card__preview-window--assets .impact-card__preview-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  flex: 1;
}

.impact-card__preview-window--assets .impact-card__preview-cta {
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 12px;
}

.impact-card__preview-window--assets .impact-card__preview-block {
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8dce8 0%, #d4c4dc 100%);
  flex-shrink: 0;
}

.impact-card__preview-surface {
  position: absolute;
  inset: 45% -10% -6%;
  background: linear-gradient(180deg, rgba(244, 164, 107, 0.85), rgba(66, 47, 60, 0.95));
}

.impact-card__preview-wave {
  position: absolute;
  left: -20%;
  right: -20%;
  top: 40%;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0) 55%);
  box-shadow: 0 0 18px rgba(255, 220, 190, 0.9);
  filter: blur(0.2px);
  transform-origin: center;
  animation: impact-assets-wave 6s ease-in-out infinite;
}

.impact-card__preview-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffefe0, #f4a46b);
  box-shadow: 0 0 18px rgba(244, 164, 107, 0.95);
  bottom: 26%;
  left: 18%;
  animation: impact-assets-dot 6s ease-in-out infinite;
}

.impact-card__preview-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.18), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.75;
  pointer-events: none;
}

@keyframes impact-assets-wave {
  0% {
    transform: translateX(0) translateY(4px) scaleY(1);
  }
  25% {
    transform: translateX(4%) translateY(0) scaleY(1.05);
  }
  50% {
    transform: translateX(10%) translateY(6px) scaleY(0.95);
  }
  75% {
    transform: translateX(16%) translateY(2px) scaleY(1.03);
  }
  100% {
    transform: translateX(0) translateY(4px) scaleY(1);
  }
}

@keyframes impact-assets-dot {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(40%) translateY(-4px);
  }
  50% {
    transform: translateX(90%) translateY(2px);
  }
  75% {
    transform: translateX(130%) translateY(-3px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

/* DNA helix visual – Enterprise DNA card */
.impact-card__dna-copy {
  flex: 0 0 auto;
}

.impact-card__dna-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 100px;
}

.impact-card__dna-helix {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.impact-card__dna-strand {
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.impact-card__dna-strand--a {
  stroke: url(#dna-strand-a);
  animation: dna-strand-flow 4s ease-in-out infinite;
}

.impact-card__dna-strand--b {
  stroke: url(#dna-strand-b);
  animation: dna-strand-flow 4s ease-in-out infinite reverse;
}

.impact-card__dna-connector {
  stroke: rgba(246, 170, 99, 0.6);
  stroke-width: 1.5;
  stroke-linecap: round;
  animation: dna-connector-pulse 2s ease-in-out infinite;
}

.impact-card__dna-connector--1 { animation-delay: 0s; }
.impact-card__dna-connector--2 { animation-delay: 0.15s; }
.impact-card__dna-connector--3 { animation-delay: 0.3s; }
.impact-card__dna-connector--4 { animation-delay: 0.45s; }
.impact-card__dna-connector--5 { animation-delay: 0.6s; }
.impact-card__dna-connector--6 { animation-delay: 0.75s; }
.impact-card__dna-connector--7 { animation-delay: 0.9s; }

@keyframes dna-strand-flow {
  0%, 100% { opacity: 0.85; stroke-dashoffset: 0; }
  50% { opacity: 1; stroke-dashoffset: -20; }
}

.impact-card__dna-strand {
  stroke-dasharray: 8 6;
}

@keyframes dna-connector-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
  .impact-section {
    padding: 4.8rem 1.25rem 4.8rem;
  }

  .impact-section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .impact-section__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .impact-section {
    padding: 4.2rem 1rem 4.4rem;
  }

  .impact-section__inner {
    gap: 2.2rem;
  }

  .impact-section__header {
    align-items: flex-start;
  }

  .impact-section__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .impact-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "revenue"
      "assets"
      "dna";
  }

  .impact-card__inner--split,
  .impact-card__inner--dna {
    flex-direction: column;
    align-items: flex-start;
  }

  .impact-card__preview {
    width: 100%;
    justify-content: flex-start;
  }

  .impact-card__dna-visual {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ============================================
   Testimonials section — quote slider
   ============================================ */
.testimonials-section {
  position: relative;
  padding: 5.5rem 1.5rem 5.8rem;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
}

.testimonials-section__bg {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.testimonials-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 0 auto;
  padding-bottom: 3.2rem; /* space for bottom arrows */
  text-align: center;
}

.testimonials-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  min-height: 220px;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 820px;
}

.testimonial.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.testimonial__quote {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.9;
  color: rgba(238, 235, 232, 0.98);
  letter-spacing: 0.01em;
}

.testimonial__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 0.45rem 1.1rem 0.45rem 0.55rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(201, 75, 42, 0.1), rgba(10, 9, 15, 0.96));
  border: 1px solid rgba(201, 75, 42, 0.2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.85);
  transition: all 0.3s ease;
}

.testimonial.is-active .testimonial__meta:hover {
  border-color: rgba(201, 75, 42, 0.4);
  background: radial-gradient(circle at top left, rgba(201, 75, 42, 0.15), rgba(20, 18, 25, 0.96));
  box-shadow: 0 20px 50px rgba(201, 75, 42, 0.15);
}

.testimonial__avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff, #f4b07a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111118;
  font-weight: 600;
  font-size: 0.9rem;
  overflow: hidden;
}

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

.testimonial__author-text {
  text-align: left;
}

.testimonial__name {
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial__role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(220, 217, 214, 0.85);
}

.testimonials-nav {
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 7, 13, 0.9);
  color: rgba(240, 237, 234, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.testimonials-nav:hover {
  background: rgba(22, 20, 30, 0.96);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.testimonials-nav:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.testimonials-nav--prev {
  left: 0;
}

.testimonials-nav--next {
  right: 0;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 4.6rem 1.25rem 4.8rem;
  }

  .testimonials-section__inner {
    padding-bottom: 3rem;
  }
}

@media (max-width: 520px) {
  .testimonials-section {
    padding: 4rem 1rem 4.2rem;
  }

  .testimonial__quote {
    font-size: 1.05rem;
  }

  .testimonial__meta {
    margin-top: 2rem;
  }
}

/* ============================================
   CTA section — Ready for what's next?
   ============================================ */
.cta-section {
  position: relative;
  padding: 6.5rem 1.5rem 6.5rem;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0f0c0f 0%,
    #1a1520 20%,
    #1f171e 40%,
    #1a1320 60%,
    #0d0a0d 80%,
    #0f0c0f 100%
  );
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(201, 75, 42, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201, 75, 42, 0.06) 0%, transparent 45%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.cta-section__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(90deg, rgba(255,255,255,.01) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.cta-section__content {
  max-width: 500px;
}

.cta-section__title {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fdfbf9;
  margin-bottom: 1.2rem;
  animation: slider-fade-up 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
  text-shadow: 0 2px 12px rgba(201, 75, 42, 0.15);
}

.cta-section__title-accent {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b4a 0%, #d4623a 50%, #c94b2a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
  background-size: 200% 200%;
  position: relative;
}

.cta-section__subtitle {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(220, 216, 210, 0.95);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.cta-section__btn {
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(201, 75, 42, 0.35);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-section__btn:hover {
  box-shadow: 0 12px 40px rgba(201, 75, 42, 0.5);
  transform: translateY(-2px);
}

.cta-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(240, 236, 230, 0.95);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.01em;
}

.cta-section__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c94b2a, #d4623a);
  transition: width 0.3s ease;
}

.cta-section__link:hover {
  color: #ffffff;
  gap: 0.85rem;
}

.cta-section__link:hover::after {
  width: 100%;
}

.cta-section__arrow {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-section__link:hover .cta-section__arrow {
  transform: translateX(6px) rotate(0deg);
}

.cta-section__visual {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.cta-section__visual .slider-section__chip {
  max-width: 420px;
  filter: drop-shadow(0 20px 60px rgba(201, 75, 42, 0.2));
  animation: float-up 3s ease-in-out infinite;
}

@keyframes float-up {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .cta-section__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .cta-section__content {
    max-width: none;
  }

  .cta-section__visual {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .cta-section {
    padding: 4.2rem 1.1rem 4.4rem;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section__visual {
    margin-top: 0.5rem;
  }
}

/* ============================================
   Global footer
   ============================================ */
.site-footer {
  position: relative;
  padding: 2.75rem 1.5rem 2.5rem;
  background: radial-gradient(circle at 12% 0%, rgba(244, 170, 111, 0.16), transparent 60%),
    radial-gradient(circle at 85% 100%, rgba(72, 104, 210, 0.2), transparent 60%),
    #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  max-width: 1160px;
  margin: 0 auto 1.75rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: flex-start;
}

.site-footer__brand {
  max-width: 420px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--gradient-accent-start),
    var(--gradient-accent-mid),
    var(--gradient-accent-end)
  );
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  box-shadow: var(--pill-shadow);
}

.site-footer__tagline {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(216, 212, 208, 0.9);
}

.site-footer__nav {
  display: grid;
  grid-auto-flow: column;
  gap: 3rem;
}

.site-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer__nav-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(220, 216, 212, 0.75);
  margin-bottom: 0.35rem;
}

.site-footer__link {
  font-size: 0.9rem;
  color: rgba(232, 229, 226, 0.9);
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer__link:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.site-footer__bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.1rem;
  font-size: 0.8rem;
  color: rgba(198, 194, 190, 0.9);
}

.site-footer__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(210, 206, 202, 0.9);
}

.site-footer__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--gradient-accent-start),
    var(--gradient-accent-end)
  );
  box-shadow: 0 0 12px rgba(224, 120, 72, 0.9);
}

@media (max-width: 720px) {
  .site-footer {
    padding: 2.5rem 1.25rem 2.3rem;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }

  .site-footer__nav {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   About page — main hero
   ============================================ */
.about-main-section {
  position: relative;
  padding: 15rem 1.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* ============================================
   About page — zip-zag split card
   ============================================ */
.zip-zag-section {
  position: relative;
  padding: 4.8rem 1.5rem 4.8rem;
  overflow: hidden;
  color: #fff;
}

.zip-zag-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
}

.zip-zag-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.zip-zag-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.zip-zag {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06), rgba(6, 4, 10, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.92);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  min-height: 280px;
  isolation: isolate;
}

.zip-zag--reverse .zip-zag__media {
  order: 2;
}

.zip-zag--reverse .zip-zag__content {
  order: 1;
}

.zip-zag::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 55%, rgba(241, 141, 90, 0.25), transparent 50%),
    radial-gradient(circle at 75% 20%, rgba(62, 77, 128, 0.24), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.zip-zag__media {
  position: relative;
  z-index: 1;
  padding: 2rem 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zip-zag__img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 22px;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 22px 54px rgba(0, 0, 0, 0.5));
}

.zip-zag__content {
  position: relative;
  z-index: 1;
  padding: 2.4rem 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.zip-zag__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(228, 224, 220, 0.86);
  letter-spacing: 0.02em;
  font-weight: 500;
}

.zip-zag__icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.zip-zag__desc {
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(224, 220, 216, 0.85);
  max-width: 420px;
}

.zip-zag__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(235, 231, 227, 0.92);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.2s ease, color 0.2s ease;
}

.zip-zag__link:hover {
  color: #ffffff;
  gap: 0.65rem;
}

@media (max-width: 900px) {
  .zip-zag-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .zip-zag {
    grid-template-columns: minmax(0, 1fr);
  }

  .zip-zag__media {
    padding: 1.8rem 1.5rem 0.5rem;
  }

  .zip-zag__content {
    padding: 1.4rem 1.5rem 2rem;
  }
}

.about-main-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
}

.about-main-section__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent 20%, black 60%, transparent 95%);
  -webkit-mask-image: linear-gradient(to right, transparent 20%, black 60%, transparent 95%);
}

.about-main-section__inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
}

.about-main-section__header {
  margin-bottom: 3rem;
}

.about-main-section__title {
  font-size: clamp(2.4rem, 4.2vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}

.about-main-section__title-accent {
  display: inline-block;
}

.about-main-section__subtitle {
  font-size: 0.98rem;
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
  color: var(--slider-text-muted);
}

.about-main-section__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
}

.about-main-section__stat {
  min-width: 120px;
}

.about-main-section__stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.about-main-section__stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(220, 217, 214, 0.85);
}

@media (max-width: 720px) {
  .about-main-section {
    padding: 130px 1.25rem 4.5rem;
  }

  .about-main-section__stats {
    gap: 2.5rem;
  }
}

/* ============================================
   About page — team / leadership section
   ============================================ */
.about-team-section {
  position: relative;
  padding: 5.5rem 1.5rem 5.5rem;
  overflow: hidden;
  color: #fff;
}

.about-team-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
}

.about-team-section__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent 20%, black 60%, transparent 95%);
  -webkit-mask-image: linear-gradient(to right, transparent 20%, black 60%, transparent 95%);
}

.about-team-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.about-team-section__header {
  max-width: 540px;
  margin-bottom: 2.75rem;
}

.about-team-section__title {
  font-size: clamp(2.1rem, 3.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.about-team-section__subtitle {
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(215, 212, 209, 0.92);
}

.about-team-section__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-team-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(230, 226, 222, 0.9);
  text-decoration: none;
  transition: color 0.18s ease, gap 0.18s ease;
}

.about-team-section__link:hover {
  color: #ffffff;
  gap: 0.75rem;
}

.about-team-section__arrow {
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.about-team-section__link:hover .about-team-section__arrow {
  transform: translateX(4px);
}

.about-team-section__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3.25rem;
}

.team-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(6, 4, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.5rem 1.5rem;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(231, 120, 72, 0.22), transparent 60%);
  /* keep the glow behind photos/text (no washout) */
  z-index: 0;
  mix-blend-mode: normal;
  opacity: 0.4;
  pointer-events: none;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 1);
  border-color: rgba(255, 255, 255, 0.14);
}

.team-card__visual {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  margin: 0 -0.1rem 1.4rem;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #f28d5a 0%, #d45a3a 40%, #050509 100%);
}

.team-card__visual--center {
  background: linear-gradient(180deg, #3c4c8e 0%, #1f2758 45%, #050509 100%);
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.team-card__header {
  position: relative;
  z-index: 1;
  margin-bottom: 1.1rem;
}

.team-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-card__role {
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: rgba(220, 217, 214, 0.9);
}

.team-card__body {
  position: relative;
  z-index: 1;
  flex: 1;
}

.team-card__bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(222, 219, 216, 0.96);
}

.team-card__meta {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(220, 217, 214, 0.85);
}

.team-card__meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gradient-accent-start), var(--gradient-accent-end));
  box-shadow: 0 0 12px rgba(224, 120, 72, 0.9);
}

@media (max-width: 1024px) {
  .about-team-section {
    padding: 4.8rem 1.25rem 4.8rem;
  }

  .about-team-section__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-team-section {
    padding: 4rem 1.1rem 4.2rem;
  }

  .about-team-section__header {
    max-width: none;
  }

  .about-team-section__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-team-section__cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================================
   Works page — scrolling tile grids
   ============================================ */
.works-main-section {
  position: relative;
  padding: 5.5rem 1.5rem 5.5rem;
  overflow: hidden;
  color: #fff;
}

.works-main-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
}

.works-main-section__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent 20%, black 60%, transparent 95%);
  -webkit-mask-image: linear-gradient(to right, transparent 20%, black 60%, transparent 95%);
}

.works-main-section__glow {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200, 80, 60, 0.45);
  filter: blur(8px);
  animation: glow-pulse 4s ease-in-out infinite;
}

.works-main-section__glow--l {
  top: 20%;
  left: 10%;
}

.works-main-section__glow--r {
  top: 18%;
  right: 12%;
  animation-delay: 1.2s;
}

.works-main-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.works-main-section__title {
  font-size: clamp(1.9rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.works-main-section__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  color: rgba(220, 218, 215, 0.85);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.works-rows {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.works-row {
  position: relative;
  overflow: hidden;
  margin-inline: -3rem;
}

.works-row__track {
  display: inline-flex;
  align-items: stretch;
  gap: 2.25rem;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 60s;
}

.works-row--forward .works-row__track {
  animation-name: works-marquee-forward;
}

.works-row--reverse .works-row__track {
  animation-name: works-marquee-reverse;
}

@keyframes works-marquee-forward {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-520px * 4 - 2.25rem * 3));
  }
}

@keyframes works-marquee-reverse {
  0% {
    transform: translateX(calc(-520px * 4 - 2.25rem * 3));
  }
  100% {
    transform: translateX(0);
  }
}

.work-tile {
  flex: 0 0 520px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-tile:hover {
  transform: scale(1.02);
}

.work-tile__img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

/* Visual variations removed for clean full-size images */
.work-tile__thumb {
  display: none;
}

.work-tile__thumb--hero,
.work-tile__thumb--hero-alt,
.work-tile__thumb--palette,
.work-tile__thumb--palette-alt,
.work-tile__thumb--type,
.work-tile__thumb--type-alt,
.work-tile__thumb--layout,
.work-tile__thumb--layout-alt {
  display: none;
}

@media (max-width: 900px) {
  .works-main-section {
    padding: 4.6rem 1.25rem 4.8rem;
  }

  .works-row {
    margin-inline: -1.5rem;
  }
}

@media (max-width: 600px) {
  .works-main-section {
    padding: 4rem 1.1rem 4.2rem;
  }

  .works-row {
    margin-inline: -1.1rem;
  }

  .works-rows {
    gap: 2rem;
  }
}
/* ============================================
   About page — partners strip
   ============================================ */
.about-partners-section {
  position: relative;
  padding: 3.2rem 1.5rem 4rem;
  overflow: hidden;
  color: #fff;
}

.about-partners-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
}

.about-partners-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.about-partners-section__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(230, 227, 224, 0.8);
  margin-bottom: 1.4rem;
}

.about-partners-strip {
  margin-inline: -1.5rem;
}

@media (max-width: 720px) {
  .about-partners-section {
    padding: 2.8rem 1.1rem 3.4rem;
  }

  .about-partners-strip {
    margin-inline: -1.1rem;
  }
}
/* ============================================
   About page — Why choose section
   ============================================ */
.about-features-section {
  position: relative;
  padding: 5.2rem 1.5rem 5.5rem;
  overflow: hidden;
  color: #fff;
}

.about-features-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
}

.about-features-section__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent 15%, black 60%, transparent 90%);
  -webkit-mask-image: linear-gradient(to right, transparent 15%, black 60%, transparent 90%);
  pointer-events: none;
}

.about-features-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.about-features-section__header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-features-section__eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(230, 227, 224, 0.8);
  margin-bottom: 0.7rem;
}

.about-features-section__title {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.9rem;
}

.about-features-section__title-accent {
  display: inline-block;
}

.about-features-section__subtitle {
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(214, 210, 206, 0.9);
  max-width: 640px;
  margin: 0 auto;
}

.about-features-section__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 3.25rem;
}

/* ============================================
   About page — about details section
   ============================================ */
.about-details {
  position: relative;
  padding: 5.2rem 1.5rem 5.2rem;
  overflow: hidden;
  color: #fff;
}

.about-details__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
}

.about-details__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 40% 25%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 40% 25%, black 0%, transparent 70%);
  opacity: 0.7;
}

.about-details__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.about-details__header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: end;
}

.about-details__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(230, 226, 222, 0.78);
  margin-bottom: 0.9rem;
}

.about-details__title {
  font-size: clamp(2rem, 3.1vw, 2.6rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-details__title-accent {
  display: inline-block;
}

.about-details__subtitle {
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(214, 210, 206, 0.9);
  max-width: 520px;
  justify-self: end;
}

.about-details__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.6rem;
  align-items: stretch;
}

.about-details__story-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(6, 4, 10, 0.96));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.92);
  padding: 2rem 2.1rem;
}

.about-details__story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(231, 120, 72, 0.18), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.about-details__story-title,
.about-details__story-body,
.about-details__stats {
  position: relative;
  z-index: 1;
}

.about-details__story-title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.about-details__story-body {
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(224, 220, 216, 0.85);
  max-width: 620px;
}

.about-details__stats {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-details__stat {
  border-radius: 18px;
  padding: 0.9rem 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.about-details__stat-value {
  font-weight: 600;
  letter-spacing: 0.06em;
}

.about-details__stat-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(220, 217, 214, 0.82);
}

.about-details__values {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.about-details__value {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), rgba(6, 4, 10, 0.96));
  padding: 1.25rem 1.25rem 1.2rem;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.88);
}

.about-details__value-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
}

.about-details__value-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.about-details__value-body {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(224, 220, 216, 0.85);
}

@media (max-width: 900px) {
  .about-details__header {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .about-details__subtitle {
    justify-self: start;
  }

  .about-details__content {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .about-details {
    padding: 4.4rem 1rem 4.4rem;
  }

  .about-details__story-card {
    padding: 1.6rem 1.5rem;
  }

  .about-details__stats {
    grid-template-columns: minmax(0, 1fr);
  }
}

.about-feature-card {
  position: relative;
  border-radius: 24px;
  padding: 1.7rem 1.6rem 1.8rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(6, 4, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.88);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(231, 120, 72, 0.22), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}

.about-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 78px rgba(0, 0, 0, 1);
  border-color: rgba(255, 255, 255, 0.14);
}

.about-feature-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  background: radial-gradient(circle at 30% 20%, #ffffff, #f4b07a);
  color: #111118;
  font-size: 1.1rem;
  box-shadow: 0 0 22px rgba(224, 120, 72, 0.9);
}

.about-feature-card__icon-glyph {
  line-height: 1;
}

.about-feature-card__title {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.about-feature-card__body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(222, 219, 216, 0.96);
}

@media (max-width: 1024px) {
  .about-features-section {
    padding: 4.6rem 1.25rem 4.8rem;
  }

  .about-features-section__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-features-section {
    padding: 4rem 1.1rem 4.2rem;
  }

  .about-features-section__cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ============================================
   Contact page — Work With Us (reference match)
   ============================================ */
.contact-us-section {
  position: relative;
  padding: 9rem 1.5rem 5.75rem;
  overflow: hidden;
  color: #fff;
}

.contact-us-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
}

.contact-us-section__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, black 28%, black 82%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, black 28%, black 82%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.contact-us-section__glow {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200, 80, 60, 0.45);
  filter: blur(8px);
  animation: glow-pulse 4s ease-in-out infinite;
}

.contact-us-section__glow--l {
  top: 18%;
  left: 12%;
}

.contact-us-section__glow--r {
  top: 14%;
  right: 14%;
  animation-delay: 1.2s;
}

.contact-us-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.contact-us-section__content {
  max-width: 520px;
}

.contact-us-section__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
  background: linear-gradient(
    165deg,
    #e8e6e4 0%,
    #c4c2c0 35%,
    #a8a6a4 70%,
    #8a8886 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-us-section__subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--slider-text-muted);
  margin-bottom: 2.1rem;
  max-width: 420px;
}

.contact-us-section__cards {
  display: grid;
  gap: 0.85rem;
  max-width: 360px;
}

.contact-us-section__sr-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Contact card */
.contact-card {
  position: relative;
  border-radius: 16px;
  padding: 1.05rem 1.1rem 1.1rem;
  background: rgba(18, 16, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 0.4rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(231, 120, 72, 0.22), transparent 58%);
  opacity: 0.85;
  mix-blend-mode: screen;
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(18, 16, 24, 0.62);
}

.contact-card:focus-visible {
  outline: 2px solid var(--gradient-accent-mid);
  outline-offset: 4px;
}

.contact-card__label {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(230, 227, 224, 0.75);
}

.contact-card__value {
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(246, 244, 242, 0.92);
}

.contact-card__hint {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  color: rgba(210, 206, 202, 0.7);
}

.contact-card--copy {
  text-align: left;
  cursor: pointer;
}

.contact-card--copy.is-copied {
  border-color: rgba(224, 120, 72, 0.45);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.72), 0 0 0 1px rgba(224, 120, 72, 0.25);
}

.contact-card--copy,
.contact-card--action {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  width: 100%;
  margin-top: 0.35rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background: rgba(10, 9, 15, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.contact-card__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Right visual (chip) */
.contact-us-section__visual {
  display: flex;
  justify-content: flex-end;
}

.contact-chip {
  width: min(520px, 100%);
  aspect-ratio: 1.2 / 1;
  filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.85));
}

.contact-chip__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  background: radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(135deg, rgba(18, 18, 22, 0.96), rgba(6, 6, 9, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  transform: perspective(1100px) rotateY(-18deg) rotateX(12deg) translateY(4px);
  transition: transform 0.5s ease;
}

.contact-chip__frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(70, 70, 76, 0.55), rgba(22, 22, 26, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), inset 0 -18px 40px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.contact-chip:hover .contact-chip__frame {
  transform: perspective(1100px) rotateY(-14deg) rotateX(9deg) scale(1.01);
}

.contact-chip__face {
  position: absolute;
  inset: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(36, 36, 42, 0.92), rgba(14, 14, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.contact-chip__pins {
  position: absolute;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 186, 124, 0.95) 0 10px,
    rgba(172, 98, 52, 0.95) 10px 16px,
    rgba(255, 186, 124, 0.95) 16px 26px
  );
  filter: saturate(1.05) brightness(1.05);
  opacity: 0.95;
}

.contact-chip__pins--top,
.contact-chip__pins--bottom {
  left: 10%;
  right: 10%;
  height: 12px;
  border-radius: 999px;
}

.contact-chip__pins--top {
  top: 10px;
}

.contact-chip__pins--bottom {
  bottom: 10px;
  transform: rotate(180deg);
}

.contact-chip__pins--left,
.contact-chip__pins--right {
  top: 12%;
  bottom: 12%;
  width: 12px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 186, 124, 0.95) 0 10px,
    rgba(172, 98, 52, 0.95) 10px 16px,
    rgba(255, 186, 124, 0.95) 16px 26px
  );
}

.contact-chip__pins--left {
  left: 10px;
}

.contact-chip__pins--right {
  right: 10px;
}

.contact-chip__trace {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gradient-accent-start), var(--gradient-accent-end));
  box-shadow: 0 0 18px rgba(224, 120, 72, 0.55);
  opacity: 0.95;
}

.contact-chip__trace--top {
  left: 18%;
  right: 18%;
  top: 16px;
  height: 2px;
}

.contact-chip__trace--bottom {
  left: 18%;
  right: 18%;
  bottom: 18px;
  height: 2px;
}

.contact-chip__trace--left {
  top: 20%;
  bottom: 20%;
  left: 16px;
  width: 2px;
}

.contact-chip__trace--right {
  top: 20%;
  bottom: 20%;
  right: 16px;
  width: 2px;
}

.contact-chip__core {
  position: absolute;
  inset: 26%;
  border-radius: 22px;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(145deg, rgba(34, 34, 40, 0.96), rgba(8, 8, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-chip__logo {
  font-family: Georgia, serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
  color: rgba(120, 118, 124, 0.95);
  text-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.contact-chip__node {
  position: absolute;
  width: 28px;
  height: 18px;
  border-radius: 6px;
  background: rgba(8, 7, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 18px rgba(224, 120, 72, 0.25);
}

.contact-chip__node--a {
  top: 26%;
  left: 18%;
}

.contact-chip__node--b {
  top: 24%;
  right: 18%;
}

.contact-chip__node--c {
  bottom: 22%;
  left: 44%;
  width: 38px;
  height: 22px;
}

@media (max-width: 992px) {
  .contact-us-section {
    padding: 8.25rem 1.25rem 5.25rem;
  }

  .contact-us-section__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .contact-us-section__visual {
    justify-content: center;
    order: -1;
  }

  .contact-us-section__cards {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .contact-us-section {
    padding: 7.5rem 1.1rem 4.75rem;
  }

  .contact-us-section__cards {
    max-width: none;
  }

  .contact-chip__frame {
    transform: perspective(1100px) rotateY(-14deg) rotateX(10deg);
  }
}

/* ============================================
   Works Page — Additional Sections
   ============================================ */

/* Project Capabilities Section */
.project-capabilities-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  color: #fff;
}

.project-capabilities-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
}

.project-capabilities-section__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.5;
}

.project-capabilities-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.project-capabilities-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.project-capabilities-section__title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.project-capabilities-section__subtitle {
  font-size: 1.1rem;
  color: rgba(220, 218, 215, 0.85);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.capability-card {
  position: relative;
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45, 40, 48, 0.4), rgba(5, 4, 10, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.capability-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(50, 45, 55, 0.5), rgba(10, 8, 15, 0.7));
}

.capability-card__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  color: #fff;
}

.capability-card__icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 75, 42, 0.2), rgba(224, 123, 74, 0.1));
  border: 1px solid rgba(201, 75, 42, 0.3);
}

.capability-card__icon-svg {
  position: relative;
  z-index: 1;
}

.capability-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.capability-card__desc {
  font-size: 0.95rem;
  color: rgba(220, 218, 215, 0.8);
  line-height: 1.6;
}

/* Process Section */
.process-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  color: #fff;
}

.process-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  z-index: 0;
}

.process-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.process-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-section__title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.process-section__subtitle {
  font-size: 1.1rem;
  color: rgba(220, 218, 215, 0.85);
  max-width: 500px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  align-items: start;
}

.process-step__number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c94b2a, #e07b4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.process-step__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.process-step__description {
  font-size: 1rem;
  color: rgba(220, 218, 215, 0.85);
  line-height: 1.7;
}

.process-step__connector {
  position: absolute;
  left: 50px;
  top: 120px;
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, rgba(201, 75, 42, 0.5), rgba(201, 75, 42, 0.1));
}

.process-step:last-child .process-step__connector {
  display: none;
}

/* Case Study Section */
.case-study-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  color: #fff;
}

.case-study-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
}

.case-study-section__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.case-study-section__glow--l {
  top: -200px;
  left: -100px;
  background: rgba(201, 75, 42, 0.6);
}

.case-study-section__glow--r {
  bottom: -200px;
  right: -100px;
  background: rgba(224, 123, 74, 0.4);
}

.case-study-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.case-study-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(201, 75, 42, 0.2), rgba(224, 123, 74, 0.1));
  border: 1px solid rgba(201, 75, 42, 0.4);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.case-study-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.case-study-subtitle {
  font-size: 1.05rem;
  color: rgba(220, 218, 215, 0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.case-study-metric {
  display: flex;
  flex-direction: column;
}

.case-study-metric__value {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #c94b2a, #e07b4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-study-metric__label {
  font-size: 0.9rem;
  color: rgba(220, 218, 215, 0.75);
  margin-top: 0.5rem;
}

.case-study-content {
  animation: fadeInUp 0.8s ease-out;
}

.case-study-visual {
  position: relative;
  animation: floatImage 6s ease-in-out infinite;
}

.case-study-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(45, 40, 48, 0.5), rgba(5, 4, 10, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .project-capabilities-section__header {
    margin-bottom: 3rem;
  }

  .capabilities-grid {
    gap: 1.5rem;
  }

  .process-steps {
    gap: 2rem;
  }

  .case-study-section__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .case-study-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .case-study-metric__value {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .project-capabilities-section {
    padding: 4rem 1.25rem;
  }

  .process-section {
    padding: 4rem 1.25rem;
  }

  .case-study-section {
    padding: 4rem 1.25rem;
  }

  .process-step {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
  }

  .process-step__number {
    font-size: 2rem;
  }

  .process-step__title {
    font-size: 1.1rem;
  }

  .case-study-metrics {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .case-study-section__glow {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 600px) {
  .project-capabilities-section__title {
    font-size: 1.8rem;
  }

  .process-section__title {
    font-size: 1.8rem;
  }

  .case-study-title {
    font-size: 1.8rem;
  }

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

  .capability-card {
    padding: 1.5rem;
  }

  .case-study-metric__value {
    font-size: 1.3rem;
  }
}

/* ============================================
   About page — Story Section
   ============================================ */
.about-story-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  color: #fff;
}

.about-story-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.about-story-section__grid {
  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: 60px 60px;
  opacity: 0.5;
}

.about-story-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.about-story-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-story-section__title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-story-section__subtitle {
  font-size: 1.1rem;
  color: rgba(220, 218, 215, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-story-section__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.about-story-item {
  padding: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45, 40, 48, 0.4), rgba(5, 4, 10, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.about-story-item__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.about-story-item__body {
  font-size: 0.95rem;
  color: rgba(220, 218, 215, 0.85);
  line-height: 1.8;
}

/* ============================================
   About page — Values Section
   ============================================ */
.about-values-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  color: #fff;
}

.about-values-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  z-index: 0;
}

.about-values-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.about-values-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-values-section__title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-values-section__subtitle {
  font-size: 1.1rem;
  color: rgba(220, 218, 215, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 75, 42, 0.08), rgba(224, 123, 74, 0.04));
  border: 1px solid rgba(201, 75, 42, 0.2);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(201, 75, 42, 0.12), rgba(224, 123, 74, 0.08));
  border-color: rgba(201, 75, 42, 0.3);
}

.value-card__number {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #c94b2a, #e07b4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.value-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

.value-card__description {
  font-size: 0.95rem;
  color: rgba(220, 218, 215, 0.8);
  line-height: 1.6;
}

/* ============================================
   About page — Expertise Section
   ============================================ */
.about-expertise-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  color: #fff;
}

.about-expertise-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  z-index: 0;
}

.about-expertise-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.about-expertise-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-expertise-section__title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-expertise-section__subtitle {
  font-size: 1.1rem;
  color: rgba(220, 218, 215, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.expertise-card {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45, 40, 48, 0.5), rgba(5, 4, 10, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.expertise-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(50, 45, 55, 0.6), rgba(10, 8, 15, 0.6));
  border-color: rgba(255, 255, 255, 0.12);
}

.expertise-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #fff;
  opacity: 0.9;
}

.expertise-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

.expertise-card__description {
  font-size: 0.95rem;
  color: rgba(220, 218, 215, 0.8);
  line-height: 1.6;
}

/* ============================================
   About page — Partnership Section
   ============================================ */
.about-partnership-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  color: #fff;
}

.about-partnership-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  z-index: 0;
}

.about-partnership-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.about-partnership-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-partnership-section__title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-partnership-section__subtitle {
  font-size: 1.1rem;
  color: rgba(220, 218, 215, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.partnership-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.5rem;
}

.partnership-feature {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partnership-feature:last-child {
  border-bottom: none;
}

.partnership-feature__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

.partnership-feature__description {
  font-size: 0.95rem;
  color: rgba(220, 218, 215, 0.85);
  line-height: 1.7;
}

/* ============================================
   About page — Tech Stack Section
   ============================================ */
.about-tech-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  color: #fff;
}

.about-tech-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  z-index: 0;
}

.about-tech-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.about-tech-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-tech-section__title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-tech-section__subtitle {
  font-size: 1.1rem;
  color: rgba(220, 218, 215, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.tech-category {
  padding: 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(45, 40, 48, 0.4), rgba(5, 4, 10, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-category__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.tech-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tech-list li {
  font-size: 0.95rem;
  color: rgba(220, 218, 215, 0.85);
  padding-left: 1.2rem;
  position: relative;
}

.tech-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: rgba(201, 75, 42, 0.7);
  font-weight: 600;
}

/* Media queries for new sections */
@media (max-width: 900px) {
  .about-story-section__content {
    grid-template-columns: 1fr;
  }

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

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

  .partnership-features {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .about-story-section {
    padding: 4rem 1.1rem;
  }

  .about-values-section {
    padding: 4rem 1.1rem;
  }

  .about-expertise-section {
    padding: 4rem 1.1rem;
  }

  .about-partnership-section {
    padding: 4rem 1.1rem;
  }

  .about-tech-section {
    padding: 4rem 1.1rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-story-item {
    padding: 1.5rem;
  }
}

/* ============================================
   About page — Team Section
   ============================================ */
.about-team-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  color: #fff;
}

.about-team-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.about-team-section__grid {
  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: 60px 60px;
  opacity: 0.5;
}

.about-team-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.about-team-section__header {
  text-align: center;
  margin: 0 auto;
  padding-bottom: 70px;
}

.about-team-section__title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-team-section__subtitle {
  font-size: 1.1rem;
  color: rgba(220, 218, 215, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.team-member {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(45, 40, 48, 0.3), rgba(5, 4, 10, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-member:hover {
  transform: translateY(-12px);
  background: linear-gradient(135deg, rgba(50, 45, 55, 0.5), rgba(10, 8, 15, 0.5));
  border-color: rgba(201, 75, 42, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.team-member__image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(201, 75, 42, 0.1), rgba(224, 123, 74, 0.05));
}

.team-member__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-member:hover .team-member__img {
  transform: scale(1.05);
}

.team-member__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 21, 37, 0.4) 100%);
  z-index: 1;
}

.team-member__content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.team-member__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.team-member__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(201, 75, 42, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.team-member__bio {
  font-size: 0.95rem;
  color: rgba(220, 218, 215, 0.8);
  line-height: 1.6;
}

/* Team section responsive */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .about-team-section {
    padding: 5rem 1.25rem;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-team-section {
    padding: 4rem 1.1rem;
  }

  .team-member__image {
    height: 240px;
  }

  .team-member__content {
    padding: 1.5rem;
  }

  .team-member__name {
    font-size: 1.1rem;
  }
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gradient-accent-start), var(--gradient-accent-end));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(201, 75, 42, 0.3);
}

.back-to-top:hover {
  box-shadow: 0 8px 32px rgba(201, 75, 42, 0.5);
  transform: translateY(0) scale(1.1);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: arrow-up 1.5s ease-in-out infinite;
}

@keyframes arrow-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 600px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   ENHANCED RESPONSIVE DESIGN
   Mobile-First Responsive Improvements
   ============================================ */

/* Ultra-mobile (< 360px) */
@media (max-width: 359px) {
  html {
    font-size: 14px;
  }

  body {
    overflow-x: hidden;
  }

  .menu-nav {
    gap: 0.5rem;
  }

  .menu-nav__brand,
  .menu-nav__cta {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }

  .menu-nav__center {
    display: none;
  }

  .slider-section {
    padding: 4rem 0.75rem 2rem;
    min-height: 75vh;
  }

  .slider-section__title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
  }

  .slider-section__badge-text {
    font-size: 0.65rem;
  }

  .slider-section__description {
    font-size: 0.85rem;
  }

  .slider-section__primary-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }

  .slider-section__secondary-link {
    font-size: 0.85rem;
  }

  .slider-section__image-frame {
    max-height: 250px;
    border-radius: 16px;
  }

  .slider-section__floating-badge {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
  }

  .slider-section__stat-value {
    font-size: 1.25rem;
  }
}

/* Mobile portrait (360px - 480px) */
@media (min-width: 360px) and (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .menu-section {
    padding: 1rem 1rem 1.5rem;
  }

  .menu-nav {
    gap: 1rem;
  }

  .menu-nav__brand {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .menu-nav__center {
    display: none;
  }

  .menu-nav__cta {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }

  .slider-section {
    padding: 5rem 1rem 2.5rem;
    min-height: 80vh;
  }

  .slider-section__container {
    gap: 2rem;
  }

  .slider-section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
  }

  .slider-section__badge {
    padding: 0.5rem 1rem;
  }

  .slider-section__badge-text {
    font-size: 0.7rem;
  }

  .slider-section__description {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .slider-section__cta-group {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }

  .slider-section__primary-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
  }

  .slider-section__secondary-link {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
  }

  .slider-section__image-frame {
    max-height: 300px;
    border-radius: 16px;
  }

  .slider-section__floating-badge {
    padding: 0.85rem 1.25rem;
    font-size: 0.8rem;
  }

  .slider-section__stat-value {
    font-size: 1.35rem;
  }
}

/* Mobile landscape / Small tablet (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .menu-nav {
    gap: 1.2rem;
  }

  .menu-nav__center {
    display: none;
  }

  .slider-section {
    padding: 5.5rem 1.25rem 3rem;
    min-height: 85vh;
  }

  .slider-section__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .slider-section__media {
    order: -1;
  }

  .slider-section__title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .slider-section__description {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .slider-section__cta-group {
    width: 100%;
    flex-direction: row;
    gap: 1rem;
  }

  .slider-section__primary-btn {
    flex: 1;
    min-width: 120px;
  }

  .slider-section__secondary-link {
    flex: 1;
    justify-content: center;
  }

  .slider-section__image-frame {
    max-width: 100%;
    max-height: 350px;
  }

  .slider-section__floating-badge--stats {
    bottom: 15px;
    left: 15px;
  }

  .slider-section__floating-badge--tech {
    top: 15px;
    right: 15px;
  }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .slider-section {
    padding: 7rem 1.5rem 4rem;
    min-height: 88vh;
  }

  .slider-section__container {
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
  }

  .slider-section__title {
    font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  }

  .slider-section__description {
    font-size: 1rem;
    max-width: 450px;
  }

  .slider-section__cta-group {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .slider-section__image-frame {
    max-width: 420px;
    max-height: 400px;
  }

  .slider-section__floating-badge {
    padding: 1.1rem 1.5rem;
  }
}

/* Large tablet / Small laptop (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .slider-section {
    padding: 8rem 1.5rem 4rem;
    min-height: 92vh;
  }

  .slider-section__container {
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
    max-width: 1300px;
  }

  .slider-section__title {
    font-size: clamp(2.5rem, 5.2vw, 4rem);
  }

  .slider-section__description {
    font-size: 1.05rem;
    max-width: 500px;
  }

  .slider-section__image-frame {
    max-width: 450px;
  }
}

/* Desktop (1200px and above) */
@media (min-width: 1200px) {
  .slider-section {
    padding: 9rem 1.5rem 4rem;
    min-height: 95vh;
  }

  .slider-section__container {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
  }

  .slider-section__title {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }

  .slider-section__description {
    font-size: 1.1rem;
    max-width: 520px;
  }

  .slider-section__image-frame {
    max-width: 480px;
  }
}

/* Large desktop (1920px and above) */
@media (min-width: 1920px) {
  .slider-section {
    padding: 10rem 2rem 5rem;
  }

  .slider-section__container {
    gap: 5rem;
    max-width: 1600px;
  }

  .slider-section__title {
    font-size: 4.5rem;
  }

  .slider-section__description {
    font-size: 1.15rem;
    max-width: 560px;
  }

  .slider-section__image-frame {
    max-width: 520px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .slider-section__primary-btn {
    min-height: 48px;
    min-width: 48px;
  }

  .slider-section__secondary-link {
    padding: 1rem 0;
  }

  .slider-section__badge:hover {
    transform: none;
  }

  .slider-section__image-frame:hover {
    transform: none;
  }

  .slider-section__image-frame:hover .slider-section__image {
    transform: none;
  }
}

/* High DPI displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .slider-section__image {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Print styles */
@media print {
  .slider-section__scroll-hint,
  .back-to-top {
    display: none;
  }

  .slider-section {
    min-height: auto;
    page-break-inside: avoid;
  }

  .slider-section__container {
    display: block;
  }

  .slider-section__media {
    margin-top: 2rem;
  }
}

/* ============================================
   Terms of Service Page Styling
   ============================================ */
.terms-content-section {
  position: relative;
  padding: 5.5rem 1.5rem 5.5rem;
  overflow: hidden;
  color: #fff;
}

.terms-content-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.terms-content-section__grid {
  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: 60px 60px;
  mask-image: linear-gradient(to right, transparent 20%, black 60%, transparent 90%);
  -webkit-mask-image: linear-gradient(to right, transparent 20%, black 60%, transparent 90%);
  opacity: 0.5;
  pointer-events: none;
}

.terms-content-section__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.terms-article {
  margin-bottom: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terms-article:last-child {
  border-bottom: none;
  margin-bottom: 2rem;
}

.terms-article__title {
  font-size: clamp(1.9rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e8e6e4 50%, #b8b6b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slider-fade-up 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  display: inline-block;
  position: relative;
}

.terms-article__body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(220, 218, 215, 0.9);
  margin-bottom: 1.5rem;
  max-width: 850px;
}

.terms-article__body strong {
  color: #ffffff;
  font-weight: 600;
}

.terms-subsection {
  margin-top: 2.2rem;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.terms-subsection:hover {
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

.terms-subsection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  border-radius: 16px;
}

.terms-subsection__title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.terms-list {
  list-style: none;
  margin-top: 1.2rem;
  position: relative;
  z-index: 1;
}

.terms-list__item {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(220, 218, 215, 0.85);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.terms-list__item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: rgba(201, 75, 42, 0.75);
  font-weight: 600;
  font-size: 1.1rem;
}

.terms-list__item strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.terms-contact-section {
  margin-top: 2.5rem;
  padding: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 75, 42, 0.12), rgba(224, 123, 74, 0.06));
  border: 1.5px solid rgba(201, 75, 42, 0.3);
  text-align: center;
  position: relative;
  z-index: 1;
}

.terms-contact-section__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.terms-contact-section__text {
  font-size: 0.95rem;
  color: rgba(220, 218, 215, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.terms-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #c94b2a 0%, #d4623a 50%, #e07b4a 100%);
  background-size: 200% 200%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(201, 75, 42, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.terms-contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  opacity: 0;
  animation: btn-shine 2.5s ease-in-out infinite;
}

.terms-contact-btn:hover {
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 75, 42, 0.45), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.terms-contact-btn:active {
  transform: translateY(-1px);
}

.terms-footer-timestamp {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(210, 208, 205, 0.75);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-content-section {
    padding: 4.5rem 1.25rem 4.5rem;
  }

  .terms-article {
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
  }

  .terms-article__title {
    font-size: clamp(1.6rem, 3vw, 2rem);
  }

  .terms-article__body {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .terms-subsection {
    padding: 1.75rem;
    margin-top: 1.8rem;
  }

  .terms-subsection__title {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
  }

  .terms-list__item {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.65rem;
    padding-left: 1.4rem;
  }

  .terms-contact-section {
    padding: 2rem;
    margin-top: 2rem;
  }

  .terms-contact-btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .terms-content-section {
    padding: 4rem 1rem 4rem;
  }

  .terms-article {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
  }

  .terms-article__title {
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    margin-bottom: 1.2rem;
  }

  .terms-article__body {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .terms-subsection {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .terms-subsection__title {
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }

  .terms-list__item {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 0.6rem;
    padding-left: 1.3rem;
  }

  .terms-list__item::before {
    font-size: 1rem;
  }

  .terms-contact-section {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .terms-contact-section__title {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
  }

  .terms-contact-section__text {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .terms-contact-btn {
    padding: 0.85rem 1.6rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .terms-footer-timestamp {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .terms-content-section {
    padding: 3rem 0.9rem 3rem;
  }

  .terms-article {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
  }

  .terms-article__title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .terms-article__body {
    font-size: 0.85rem;
  }

  .terms-subsection {
    padding: 1.2rem;
    margin-top: 1.2rem;
  }

  .terms-subsection__title {
    font-size: 0.95rem;
  }

  .terms-list__item {
    font-size: 0.8rem;
    padding-left: 1.2rem;
  }

  .terms-contact-section {
    padding: 1.2rem;
  }

  .terms-contact-btn {
    padding: 0.75rem 1.4rem;
    font-size: 0.85rem;
  }
}

/* ============================================
   Privacy Policy Page Styling
   ============================================ */
.privacy-content-section {
  position: relative;
  padding: 5.5rem 1.5rem 5.5rem;
  overflow: hidden;
  color: #fff;
}

.privacy-content-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--slider-bg-left) 0%,
    #221c2e 25%,
    var(--slider-bg-mid) 55%,
    #1a1518 80%,
    var(--slider-bg-right) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.privacy-content-section__grid {
  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: 60px 60px;
  mask-image: linear-gradient(to right, transparent 20%, black 60%, transparent 90%);
  -webkit-mask-image: linear-gradient(to right, transparent 20%, black 60%, transparent 90%);
  opacity: 0.5;
  pointer-events: none;
}

.privacy-content-section__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-article {
  margin-bottom: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-article:last-child {
  border-bottom: none;
  margin-bottom: 2rem;
}

.privacy-article__title {
  font-size: clamp(1.9rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e8e6e4 50%, #b8b6b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slider-fade-up 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  display: inline-block;
  position: relative;
}

.privacy-article__body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(220, 218, 215, 0.9);
  margin-bottom: 1.5rem;
  max-width: 850px;
}

.privacy-article__body strong {
  color: #ffffff;
  font-weight: 600;
}

.privacy-subsection {
  margin-top: 2.2rem;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.privacy-subsection:hover {
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

.privacy-subsection__title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.privacy-list {
  list-style: none;
  margin-top: 1.2rem;
  position: relative;
  z-index: 1;
}

.privacy-list__item {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(220, 218, 215, 0.85);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-list__item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: rgba(201, 75, 42, 0.75);
  font-weight: 600;
  font-size: 1.1rem;
}

.privacy-list__item strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.privacy-contact-section {
  margin-top: 1.5rem;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.privacy-footer {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(210, 208, 205, 0.75);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-content-section {
    padding: 4.5rem 1.25rem 4.5rem;
  }

  .privacy-article {
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
  }

  .privacy-article__title {
    font-size: clamp(1.6rem, 3vw, 2rem);
  }

  .privacy-article__body {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .privacy-subsection {
    padding: 1.75rem;
    margin-top: 1.8rem;
  }

  .privacy-subsection__title {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
  }

  .privacy-list__item {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.65rem;
    padding-left: 1.4rem;
  }

  .privacy-contact-section {
    padding: 1.75rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 600px) {
  .privacy-content-section {
    padding: 4rem 1rem 4rem;
  }

  .privacy-article {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
  }

  .privacy-article__title {
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    margin-bottom: 1.2rem;
  }

  .privacy-article__body {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .privacy-subsection {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .privacy-subsection__title {
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }

  .privacy-list__item {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 0.6rem;
    padding-left: 1.3rem;
  }

  .privacy-list__item::before {
    font-size: 1rem;
  }

  .privacy-contact-section {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .privacy-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .privacy-content-section {
    padding: 3rem 0.9rem 3rem;
  }

  .privacy-article {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
  }

  .privacy-article__title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .privacy-article__body {
    font-size: 0.85rem;
  }

  .privacy-subsection {
    padding: 1.2rem;
    margin-top: 1.2rem;
  }

  .privacy-subsection__title {
    font-size: 0.95rem;
  }

  .privacy-list__item {
    font-size: 0.8rem;
    padding-left: 1.2rem;
  }

  .privacy-contact-section {
    padding: 1.2rem;
  }
}