/* ═══════════════════════════════════════════════════════════════
   PROMETHEAN DESIGNS LLC — Main Stylesheet
   Inspired by Designatives.com design language
   ═══════════════════════════════════════════════════════════════ */


/* ─── RESET & BASE ─────────────────────────────────────────── */

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

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}

ul, ol { list-style: none; }

/* Global text overflow safety */
h1, h2, h3, h4, p, blockquote, a, span {
  overflow-wrap: break-word;
  word-wrap: break-word;
}


/* ─── CUSTOM PROPERTIES ────────────────────────────────────── */

:root {
  /* Colors — warm, fire-inspired palette */
  --bg:             #faf8f5;
  --bg-dark:        #0c0c0c;
  --bg-alt:         #f0ebe3;
  --bg-cream:       #e8e0d4;
  --accent:         #c94b0c;
  --accent-light:   #e85d26;
  --accent-subtle:  rgba(201, 75, 12, 0.08);
  --text:           #1a1a1a;
  --text-light:     #f0ebe3;
  --text-muted:     #8a8a8a;
  --border:         #e0dbd3;
  --border-dark:    rgba(240, 235, 227, 0.12);

  /* Typography scale — fluid with clamp */
  --fs-display:     clamp(3.2rem, 8vw, 8.5rem);
  --fs-h1:          clamp(2.4rem, 5vw, 5rem);
  --fs-h2:          clamp(1.8rem, 3.5vw, 3.2rem);
  --fs-h3:          clamp(1.2rem, 2vw, 1.6rem);
  --fs-body:        clamp(0.95rem, 1.1vw, 1.1rem);
  --fs-body-lg:     clamp(1.05rem, 1.3vw, 1.25rem);
  --fs-small:       clamp(0.8rem, 0.9vw, 0.9rem);
  --fs-label:       0.75rem;

  /* Spacing scale */
  --space-xs:       0.5rem;
  --space-sm:       1rem;
  --space-md:       2rem;
  --space-lg:       4rem;
  --space-xl:       8rem;
  --space-2xl:      12rem;
  --space-section:  clamp(6rem, 12vw, 12rem);

  /* Layout */
  --container:      1400px;
  --gutter:         clamp(1.5rem, 4vw, 4rem);

  /* Motion */
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);
  --duration:       0.6s;
  --duration-fast:  0.3s;
  --duration-slow:  1s;
}


/* ─── TYPOGRAPHY UTILITIES ─────────────────────────────────── */

.text-accent {
  color: var(--accent);
  font-style: italic;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--accent);
}


/* ─── PRELOADER ────────────────────────────────────────────── */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.preloader__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(250, 248, 245, 0.95);
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
}

.preloader__logo-img {
  height: 42px;
  width: auto;
  mix-blend-mode: multiply;
  animation: flamePulse 1.5s ease-in-out infinite;
}

/* Legacy preloader elements */
.preloader__flame {
  width: 28px;
  height: auto;
  color: var(--accent);
  animation: flamePulse 1.5s ease-in-out infinite;
}

.preloader__text {
  font-size: clamp(0.95rem, 2.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.preloader__bar {
  width: 200px;
  height: 2px;
  background: rgba(240, 235, 227, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__progress {
  width: 0%;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

@keyframes flamePulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}


/* ─── HEADER ───────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  transition: background var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease,
              padding var(--duration-fast) ease;
}

.header.is-scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(0.8rem, 1.4vw, 1.05rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  z-index: 101;
}

.header__logo-img {
  height: 40px;
  width: auto;
  mix-blend-mode: multiply;
  transition: transform var(--duration-fast) var(--ease-out);
}

.header__logo:hover .header__logo-img {
  transform: scale(1.05);
}

/* (Legacy .header__logo-flame removed — using logo.png now) */

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.header__nav-link {
  font-size: var(--fs-small);
  font-weight: 400;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--duration-fast) ease;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--duration-fast) var(--ease-out);
}

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

.header__nav-link:hover,
.header__nav-link.is-active {
  color: var(--accent);
}

.header__nav-link.is-active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.4rem 0;
}

.lang-toggle__option {
  cursor: pointer;
  opacity: 0.4;
  transition: opacity var(--duration-fast) ease;
}

.lang-toggle__option--active {
  opacity: 1;
}

.lang-toggle__option:hover {
  opacity: 0.8;
}

.lang-toggle__divider {
  opacity: 0.2;
}

.lang-toggle--mobile {
  font-size: 1rem;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--text);
  border-radius: 100px;
  transition: background var(--duration-fast) ease,
              color var(--duration-fast) ease,
              border-color var(--duration-fast) ease;
}

.header__cta:hover {
  background: var(--text);
  color: var(--bg);
}

.header__cta svg {
  transition: transform var(--duration-fast) var(--ease-out);
}

.header__cta:hover svg {
  transform: translate(2px, -2px);
}

/* Mobile menu button */
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  z-index: 101;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--duration-fast) var(--ease-out),
              opacity var(--duration-fast) ease;
  transform-origin: center;
}

.header__menu-btn.is-active span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.header__menu-btn.is-active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}


/* ─── MOBILE MENU OVERLAY ──────────────────────────────────── */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration) var(--ease-out),
              visibility var(--duration);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu__link {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transform: translateY(30px);
  opacity: 0;
  transition: transform var(--duration) var(--ease-out),
              opacity var(--duration) ease,
              color var(--duration-fast) ease;
}

.mobile-menu.is-open .mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu__link:hover {
  color: var(--accent);
}

.mobile-menu__link--cta {
  color: var(--accent);
  border-bottom: none;
  margin-top: var(--space-sm);
}

.mobile-menu__footer {
  position: absolute;
  bottom: 3rem;
  left: var(--gutter);
  font-size: var(--fs-small);
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu__footer a {
  transition: color var(--duration-fast) ease;
}

.mobile-menu__footer a:hover {
  color: var(--accent);
}


/* ─── HERO ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Subtle warm gradient instead of flat white */
  background:
    radial-gradient(ellipse at 75% 20%, rgba(201, 75, 12, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 75, 12, 0.03) 0%, transparent 50%),
    var(--bg);
}

.hero__content {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.hero__label-line {
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-xl);
}

.hero__title-line {
  display: block;
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero__title-line--accent {
  color: var(--accent);
  font-style: italic;
  margin-left: clamp(2rem, 8vw, 10rem);
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: end;
  max-width: 1000px;
  margin-left: auto;
}

.hero__description {
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.hero__scroll-dot {
  width: 100%;
  height: 16px;
  background: var(--accent);
  position: absolute;
  top: -16px;
  animation: scrollDot 2s var(--ease-in-out) infinite;
}

@keyframes scrollDot {
  0% { top: -16px; }
  50% { top: 48px; }
  50.01% { top: -16px; }
  100% { top: -16px; }
}


/* ─── BUTTONS ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: inherit;
  font-size: var(--fs-small);
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
}

.btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 75, 12, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: var(--fs-body);
  white-space: normal;
  text-align: center;
}

.btn--large svg {
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn--large:hover svg {
  transform: translate(3px, -3px);
}

.btn--light {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--bg);
}

.btn--light:hover {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}


/* ─── MARQUEE ──────────────────────────────────────────────── */

.marquee {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ─── ABOUT / PHILOSOPHY ───────────────────────────────────── */

.about {
  padding: var(--space-section) var(--gutter);
  background: var(--bg);
}

.about__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about__left {
  position: sticky;
  top: 8rem;
}

.about__headline {
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.about__headline span,
.about__headline em {
  display: block;
}

.about__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-dark);
}

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

.about__image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__text p {
  font-size: var(--fs-body-lg);
  line-height: 1.75;
  color: var(--text-muted);
}

.about__text p:first-child {
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

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

.stat__value {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
}

.stat__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.stat__suffix {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
}

.stat__label {
  font-size: var(--fs-small);
  color: var(--text-muted);
}


/* ─── DIVIDER ──────────────────────────────────────────────── */

.divider {
  max-width: var(--container);
  margin: 0 auto;
  height: 0;
  border: none;
  border-top: 1px solid var(--border);
  margin-left: var(--gutter);
  margin-right: var(--gutter);
}

@media (min-width: 1400px) {
  .divider {
    margin-left: auto;
    margin-right: auto;
  }
}


/* ─── PROCESS ──────────────────────────────────────────────── */

.process {
  padding: var(--space-section) var(--gutter);
  background: var(--bg);
}

.process__header {
  max-width: var(--container);
  margin: 0 auto var(--space-xl);
  display: flex;
  flex-direction: column;
}

.process__title {
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  max-width: 700px;
}

.process__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.process__step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-lg);
  align-items: start;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--duration-fast) ease;
}

.process__step:first-child {
  border-top: 1px solid var(--border);
}

.process__step:hover {
  background: var(--accent-subtle);
}

.process__number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--border);
  transition: color var(--duration) var(--ease-out);
  min-width: clamp(60px, 8vw, 120px);
}

.process__step:hover .process__number {
  color: var(--accent);
}

.process__step-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 550px;
  padding-top: 0.75rem;
}

.process__step-content h3 {
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.process__step-content p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-muted);
}

.process__step-visual {
  padding-top: 0.5rem;
}

.process__step-icon {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  transition: color var(--duration-fast) ease;
}

.process__step:hover .process__step-icon {
  color: var(--accent);
}

.process__step-icon svg {
  width: 100%;
  height: 100%;
}


/* ─── SERVICES ─────────────────────────────────────────────── */

.services {
  padding: var(--space-section) 0;
  background: var(--bg-dark);
  color: var(--text-light);
}

.services__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.services .section-label {
  color: rgba(240, 235, 227, 0.4);
}

.services .section-label::before {
  background: var(--accent);
}

.services__header {
  margin-bottom: var(--space-xl);
}

.services__title {
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  max-width: 700px;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.service-item {
  padding: var(--space-lg);
  border: 1px solid var(--border-dark);
  margin-top: -1px;
  margin-left: -1px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background var(--duration) var(--ease-out);
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--duration) var(--ease-out);
}

.service-item:hover::before {
  width: 100%;
}

.service-item:hover {
  background: rgba(201, 75, 12, 0.06);
}

.service-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.service-item__number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(240, 235, 227, 0.1);
  transition: color var(--duration) var(--ease-out);
}

.service-item:hover .service-item__number {
  color: var(--accent);
}

.service-item__title {
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-align: right;
}

.service-item__desc {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: rgba(240, 235, 227, 0.5);
}

.service-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.service-item__tags span {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  color: rgba(240, 235, 227, 0.4);
  transition: border-color var(--duration-fast) ease,
              color var(--duration-fast) ease;
}

.service-item:hover .service-item__tags span {
  border-color: rgba(201, 75, 12, 0.3);
  color: rgba(240, 235, 227, 0.7);
}


/* ─── WORKS ────────────────────────────────────────────────── */

.works {
  padding: var(--space-section) var(--gutter);
  background: var(--bg);
}

.works__header {
  max-width: var(--container);
  margin: 0 auto var(--space-xl);
}

.works__title {
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.works__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  cursor: pointer;
}

.work-card--wide {
  grid-column: span 2;
}

.work-card__image {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  perspective: 1000px;
}

.work-card--wide .work-card__image {
  aspect-ratio: 21 / 9;
}

.work-card:not(.work-card--wide) .work-card__image {
  aspect-ratio: 4 / 3;
}

/* Real screenshot images in work cards */
.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(1) saturate(1);
  transition: filter 0.5s ease, transform var(--duration-slow) var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}

.work-card:hover .work-card__img {
  filter: brightness(1.08) saturate(1.1);
}

/* Legacy gradient placeholder (fallback) */
.work-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform var(--duration-slow) var(--ease-out);
}

.work-card:hover .work-card__placeholder {
  transform: scale(1.03);
}

.work-card__placeholder-text {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
}

.work-card__placeholder-sub {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.work-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 0.25rem;
}

.work-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.work-card__year {
  opacity: 0.5;
}

.work-card__info h3 {
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color var(--duration-fast) ease;
}

.work-card:hover .work-card__info h3 {
  color: var(--accent);
}

.work-card__info p {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 500px;
}


/* ─── TESTIMONIALS ─────────────────────────────────────────── */

.testimonials {
  padding: var(--space-section) var(--gutter);
  background: var(--bg-alt);
}

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

.testimonials__slider {
  position: relative;
  min-height: 320px;
  margin: var(--space-lg) 0;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--duration) var(--ease-out),
              visibility var(--duration),
              transform var(--duration) var(--ease-out);
}

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

.testimonial__quote {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 900px;
  margin-bottom: var(--space-lg);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.testimonial__name {
  display: block;
  font-size: var(--fs-body);
  font-weight: 600;
}

.testimonial__role {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--duration-fast) ease,
              background var(--duration-fast) ease;
}

.testimonials__btn:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--duration-fast) ease,
              transform var(--duration-fast) var(--ease-out);
}

.testimonials__dot--active {
  background: var(--accent);
  transform: scale(1.3);
}


/* ─── FAQ SECTION ──────────────────────────────────────────── */

.faq {
  padding: var(--space-section) var(--gutter);
  background: var(--bg);
}

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

.faq__header {
  margin-bottom: var(--space-xl);
}

.faq__title {
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  max-width: 600px;
}

.faq__list {
  max-width: 800px;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 0;
  font-size: var(--fs-h3);
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  transition: color var(--duration-fast) ease;
}

.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { display: none; content: ''; }

.faq__question:hover {
  color: var(--accent);
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--duration-fast) var(--ease-out);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text);
  transition: transform var(--duration-fast) var(--ease-out),
              background var(--duration-fast) ease;
}

.faq__icon::before {
  width: 16px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1.5px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__item[open] .faq__question {
  color: var(--accent);
}

.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
  background: var(--accent);
}

.faq__answer {
  padding: 0 0 1.75rem 0;
}

.faq__answer p {
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 650px;
}

/* ─── SKIP LINK (Accessibility) ───────────────────────────── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}


/* ─── CTA SECTION ──────────────────────────────────────────── */

.cta-section {
  padding: var(--space-section) var(--gutter);
  background: #000;
  color: var(--text-light);
  overflow: hidden;
  position: relative;
}

.cta-section__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.cta-section__title {
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-md);
}

.cta-section__title span,
.cta-section__title em {
  display: block;
}

.cta-section__desc {
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  color: rgba(240, 235, 227, 0.6);
  max-width: 540px;
  margin-bottom: var(--space-lg);
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-section .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.cta-section .btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  box-shadow: 0 8px 32px rgba(201, 75, 12, 0.35);
}

.cta-section .btn--ghost {
  border-color: var(--border-dark);
  color: var(--text-light);
}

.cta-section .btn--ghost:hover {
  border-color: var(--text-light);
}

.cta-section__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-section__spark {
  width: 100%;
  height: auto;
  border-radius: 0;
  opacity: 1;
}

/* (Legacy .cta-section__flame + ctaFlame keyframes removed — using chispa.png now) */


/* ─── FOOTER ───────────────────────────────────────────────── */

.footer {
  padding: var(--space-xl) var(--gutter) var(--space-md);
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid var(--border-dark);
}

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

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-dark);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  background: rgba(250, 248, 245, 0.95);
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  mix-blend-mode: multiply;
  transition: transform var(--duration-fast) var(--ease-out);
}

.footer__logo:hover .footer__logo-img {
  transform: scale(1.05);
}

.footer__tagline {
  font-size: var(--fs-body);
  color: rgba(240, 235, 227, 0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer__col h4 {
  font-size: var(--fs-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(240, 235, 227, 0.35);
  margin-bottom: 1.25rem;
}

.footer__col a,
.footer__col p {
  display: block;
  font-size: var(--fs-body);
  color: rgba(240, 235, 227, 0.6);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  transition: color var(--duration-fast) ease;
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  font-size: var(--fs-small);
  color: rgba(240, 235, 227, 0.3);
}

/* (Legacy .footer__social removed — no social media) */


/* ─── SCROLL ANIMATIONS ────────────────────────────────────── */

.anim-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.anim-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.anim-reveal:nth-child(2) { transition-delay: 0.08s; }
.anim-reveal:nth-child(3) { transition-delay: 0.16s; }
.anim-reveal:nth-child(4) { transition-delay: 0.24s; }
.anim-reveal:nth-child(5) { transition-delay: 0.32s; }
.anim-reveal:nth-child(6) { transition-delay: 0.4s; }


/* ─── RESPONSIVE ───────────────────────────────────────────── */

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__actions {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: 0;
  }

  .hero__ctas {
    justify-content: flex-start;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about__left {
    position: static;
  }

  .process__step {
    grid-template-columns: auto 1fr;
    gap: var(--space-md);
  }

  .process__step-visual {
    display: none;
  }

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

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

  .work-card--wide {
    grid-column: span 1;
  }

  .work-card--wide .work-card__image {
    aspect-ratio: 16 / 9;
  }

  .cta-section__container {
    grid-template-columns: 1fr;
  }

  .cta-section__deco {
    display: none;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .hero {
    padding-top: 7rem;
  }

  .hero__title-line--accent {
    margin-left: 1rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

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

  .hero__scroll-indicator {
    display: none;
  }

  .process__step {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .process__number {
    font-size: 2rem;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .service-item {
    padding: var(--space-md);
  }

  .testimonial__quote {
    font-size: 1.15rem;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cta-section__actions {
    flex-direction: column;
  }

  .cta-section__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-section__title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .cta-section__desc {
    font-size: var(--fs-body);
  }
}

/* ---- Extra small (≤380px) ---- */
@media (max-width: 380px) {
  :root {
    --gutter: 1.25rem;
  }

  .hero__title-line {
    font-size: clamp(2.5rem, 12vw, 3.2rem);
  }

  .hero__title-line--accent {
    margin-left: 0.75rem;
  }

  .cta-section__title {
    font-size: clamp(1.6rem, 7.5vw, 2rem);
  }

  .process__title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .about__headline {
    font-size: clamp(1.5rem, 6.5vw, 1.8rem);
  }

  .services__title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .works__title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .btn--large {
    padding: 0.85rem 1.5rem;
    font-size: var(--fs-small);
  }

  .header__logo-img {
    height: 32px;
  }

  .mobile-menu__link {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

/* ---- Scrollbar ---- */
/* ─── FOCUS STYLES ─────────────────────────────────────────── */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}


/* ─── SCROLLBAR ────────────────────────────────────────────── */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(201, 75, 12, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}


/* ═══════════════════════════════════════════════════════════════
   ADVANCED ANIMATIONS — Designatives-inspired micro-interactions
   ═══════════════════════════════════════════════════════════════ */


/* ─── CUSTOM CIRCLE CURSOR ────────────────────────────────── */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

.cursor__ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

/* Hover state — ring expands and accent color */
.cursor.is-hovering .cursor__ring {
  width: 52px;
  height: 52px;
  border-color: var(--accent);
}

.cursor.is-hovering .cursor__dot {
  transform: translate(-50%, -50%) scale(1.5);
  background: var(--accent);
}

/* Hide on touch devices */
@media (hover: none), (max-width: 1024px) {
  .cursor { display: none; }
}

@media (hover: hover) {
  body { cursor: none; }
  a, button, [data-magnetic] { cursor: none; }
}


/* ─── PARTICLES CANVAS ─────────────────────────────────────── */

.particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}


/* ─── TEXT SPLIT / CHAR ANIMATION ──────────────────────────── */

.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotate(5deg);
  transition: opacity 0.5s var(--ease-out),
              transform 0.5s var(--ease-out);
}

.split-char.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}


/* ─── HORIZONTAL REVEAL LINE ───────────────────────────────── */

.anim-line {
  position: relative;
  overflow: hidden;
}

.anim-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  transform: translateX(0);
  transition: transform 0.8s var(--ease-out);
}

.anim-line.is-visible::after {
  transform: translateX(101%);
}


/* ─── IMAGE PARALLAX WRAPPER ───────────────────────────────── */

.parallax-wrap {
  overflow: hidden;
  position: relative;
}

.parallax-wrap img,
.parallax-wrap .about__image-placeholder {
  transition: transform 0.1s linear;
  will-change: transform;
}


/* ─── WORK CARD — ENHANCED HOVER & ANIMATIONS ─────────────── */

.work-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.work-card:hover .work-card__image::before {
  opacity: 1;
}

/* Shine sweep on hover */
.work-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 42%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.08) 58%,
    transparent 70%
  );
  transform: translateX(-150%);
  pointer-events: none;
  transition: none;
}

.work-card:hover .work-card__image::after {
  transform: translateX(150%);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover shadow on image container (no transform — avoids GSAP conflict) */
.work-card__image {
  transition: box-shadow 0.5s ease;
}

.work-card:hover .work-card__image {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.work-card__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
  pointer-events: none;
}

.work-card:hover .work-card__badge {
  opacity: 1;
  transform: translateY(0);
}

/* Project number badge in meta */
.work-card__project-num {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* Technology tags under work cards */
.work-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.work-card__tags span {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.work-card:hover .work-card__tags span {
  border-color: var(--accent);
  color: var(--accent);
}


/* ─── STAGGERED GRID REVEAL ────────────────────────────────── */

.services__list .service-item:nth-child(1) .anim-reveal { transition-delay: 0s; }
.services__list .service-item:nth-child(2) .anim-reveal { transition-delay: 0.1s; }
.services__list .service-item:nth-child(3) .anim-reveal { transition-delay: 0.15s; }
.services__list .service-item:nth-child(4) .anim-reveal { transition-delay: 0.2s; }
.services__list .service-item:nth-child(5) .anim-reveal { transition-delay: 0.25s; }
.services__list .service-item:nth-child(6) .anim-reveal { transition-delay: 0.3s; }


/* ─── GRADIENT TEXT SHIMMER (for accent elements) ──────────── */

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero__title-line--accent.is-visible {
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    #e88a50 25%,
    var(--accent) 50%,
    #e88a50 75%,
    var(--accent) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}


/* ─── FLOATING BADGE ON HERO ───────────────────────────────── */

.hero__floating-badge {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(100px, 12vw, 160px);
  height: clamp(100px, 12vw, 160px);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatBadge 6s ease-in-out infinite;
}

.hero__floating-badge svg {
  width: 50%;
  height: auto;
  color: var(--accent);
  animation: rotateSlow 20s linear infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 15px)); }
}

@keyframes rotateSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .hero__floating-badge { display: none; }
}


/* ─── MARQUEE SPEED VARIATION ON HOVER ─────────────────────── */

.marquee:hover .marquee__track {
  animation-duration: 60s;
}

.marquee__track {
  transition: animation-duration 0.5s ease;
}


/* ─── SECTION TRANSITION OVERLAPS ──────────────────────────── */

.services {
  position: relative;
  z-index: 1;
  margin-top: -2rem;
  border-radius: 12px 12px 0 0;
}

.works {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  border-radius: 12px 12px 0 0;
}

.cta-section {
  position: relative;
  z-index: 3;
  border-radius: 12px 12px 0 0;
}
