/* ═══════════════════════════════════════════════════
   INNOHAND SOLUTIONS — Premium Parallax Website
   CSS Design System — Matching UWWA Reference
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;1,14..32,300&display=swap');

/* ── Design Tokens ── */
:root {
  --cream:       #EBEAE5;
  --cream-dark:  #DDDCD7;
  --dark:        #1C1C1C;
  --dark-2:      #111111;
  --gray:        #7A7A7A;
  --border:      #D4D3CE;
  --taupe:       #B0A89E;
  --white:       #FFFFFF;
  --coral:       #E57373;

  --font:        'Inter', sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── LOGO CINEMATIC INTRO ──────────────────────────────────────────── */
/*
  #logo-intro  : Fixed fullscreen overlay (cream bg)
  #logo-hero   : The logo image — starts BIG, scrolls into navbar
*/

#logo-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  /* pointer-events block scroll ONLY before animation completes */
  pointer-events: none;
  will-change: opacity;
}



/* Scroll hint */
#logo-intro-scroll-hint {
  position: fixed;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: hint-bounce 2s ease-in-out infinite;
  pointer-events: none;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--dark);
  border-radius: 13px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: var(--dark);
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

@keyframes hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* Once the logo has landed in the navbar, hide the overlay */
#logo-intro.intro-done {
  opacity: 0;
  pointer-events: none;
}

/* Prevent scroll during the initial moment (JS removes this) */
body.intro-locked {
  overflow: hidden;
}

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

html {
  font-family: var(--font);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  pointer-events: auto;
}

.nav-logo img {
  height: 48px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-oval {
  width: 36px;
  height: 14px;
  background: var(--dark);
  border-radius: 99px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-pill {
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.nav-pill:hover { opacity: 0.75; }

.nav-pill-light {
  background: var(--white);
  color: var(--dark);
}

.nav-pill-dark {
  background: var(--dark);
  color: var(--white);
}

.nav-lang {
  font-family: var(--font);
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding: 10rem 2.5rem 0;
  display: flex;
  flex-direction: column;
}

.hero-inner {
  flex: 1;
}

/* Hero Title */
.hero-title {
  font-size: clamp(3.5rem, 7.5vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 3rem;
}

.hero-line-1 {
  display: block;
  margin-bottom: 0.05em;
}

.hero-line-2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.04em 1.5rem;
}

.hero-arrow {
  width: clamp(60px, 8vw, 110px);
  height: auto;
  flex-shrink: 0;
  margin-bottom: -0.1em;
}

/* Gear Badges — replaces old star/circle badges */
.gear-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  will-change: transform;
}

.gear-badge svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Hero gear (next to the wavy arrow) */
.gear-badge--hero {
  vertical-align: middle;
}

/* Gear pair: interlocking gears */
.gear-pair {
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.gear-pair .gear-small {
  width: clamp(50px, 5.5vw, 80px);
  height: clamp(50px, 5.5vw, 80px);
  z-index: 2;
}

.gear-pair .gear-big {
  width: clamp(72px, 8vw, 120px);
  height: clamp(72px, 8vw, 120px);
  margin-left: clamp(-18px, -2vw, -28px);
  margin-top: clamp(20px, 2.5vw, 40px);
  z-index: 1;
}

/* Marquee section gears (large) */
.gear-badge--mq {
  width: clamp(5rem, 10vw, 12rem);
  height: clamp(5rem, 10vw, 12rem);
  align-self: center;
}

/* Hero Meta Row */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.hero-meta-item {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  font-weight: 400;
}

/* ── Featured Project Showcase ── */
.featured-project {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  position: relative;
  padding: 3.5rem 2.5rem 3rem;
  border-radius: 1.5rem;
  background-color: #1C1C1C;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s ease;
}

.featured-project:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 80px -20px rgba(229, 115, 115, 0.2),
    inset 0 0 60px -30px rgba(229, 115, 115, 0.08);
  border-color: rgba(229, 115, 115, 0.3);
}

/* Subtle ambient glow div - sits behind content but inside the card */
.featured-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 80%, rgba(229, 115, 115, 0.06) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.featured-project:hover .featured-glow {
  opacity: 1;
}

.featured-badge {
  display: inline-block;
  background: rgba(229, 115, 115, 0.12);
  padding: 0.45rem 1.2rem;
  border-radius: 99px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  color: var(--coral);
  border: 1px solid rgba(229, 115, 115, 0.2);
  font-weight: 500;
  position: relative;
}

.featured-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.featured-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--ease-out), filter 0.5s ease;
  filter: brightness(0.85);
}

.featured-project:hover .featured-logo {
  transform: scale(1.08);
  filter: brightness(1);
}

.featured-title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
}

.featured-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  position: relative;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--coral);
  margin-top: 2rem;
  padding: 0.65rem 1.5rem;
  border-radius: 99px;
  border: 1px solid rgba(229, 115, 115, 0.25);
  background: rgba(229, 115, 115, 0.06);
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.featured-project:hover .featured-link {
  background: rgba(229, 115, 115, 0.15);
  border-color: rgba(229, 115, 115, 0.4);
}

.featured-link svg {
  transition: transform 0.3s var(--ease-out);
}

.featured-project:hover .featured-link svg {
  transform: translate(3px, -3px);
}

/* Hero Ticker */
.hero-ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  margin-top: 2.5rem;
  white-space: nowrap;
}

.hero-ticker {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  will-change: transform;
}

.ticker-dot {
  color: var(--taupe);
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════
   HORIZONTAL PARALLAX MARQUEE
   (Pinned by GSAP ScrollTrigger)
═══════════════════════════════════════════════════ */
#marquee-section {
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
}

.marquee-track {
  width: 100%;
  will-change: transform;
}

.marquee-text-row {
  display: flex;
  align-items: center;
  gap: 3vw;
  padding: 0 3vw;
  /* Start positioned off screen to the right — JS handles this */
}

.mq-word {
  font-size: clamp(7rem, 18vw, 22rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.mq-light {
  color: #CCCAC5;  /* light grey */
}

.mq-dark {
  color: var(--dark);
}

.mq-arrow {
  height: clamp(4rem, 9vw, 11rem);
  width: auto;
  flex-shrink: 0;
  color: #CCCAC5;
}

.marquee-star-badge,
.mq-star-badge {
  width: clamp(5rem, 10vw, 12rem);
  height: clamp(5rem, 10vw, 12rem);
  background: var(--taupe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18%;
  flex-shrink: 0;
  align-self: center;
}

.marquee-star-badge svg,
.mq-star-badge svg {
  width: 100%;
  height: 100%;
  color: var(--cream);
}

/* ═══════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════ */
#services {
  padding: 6rem 2.5rem;
}

.services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.services-title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.services-rotating-icon {
  width: clamp(70px, 8vw, 110px);
  height: clamp(70px, 8vw, 110px);
  flex-shrink: 0;
}

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

/* Service Rows */
.services-list {
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 3rem 3rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: padding-left 0.35s var(--ease-out), background 0.25s ease;
  will-change: padding-left;
}

.service-row:hover {
  padding-left: 1.5rem;
}



.srv-num {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.srv-plus {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0;
}

.srv-name {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

/* ═══════════════════════════════════════════════════
   ABOUT / CASE STUDY SECTION
═══════════════════════════════════════════════════ */
#about {
  padding: 6rem 2.5rem;
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.about-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.about-arrow {
  width: 80px;
  height: auto;
  display: block;
}

.about-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 2rem;
}

.about-cta-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}
.about-cta-link:hover { opacity: 0.5; }

/* Project Showcase Card */
.project-showcase {
  background: var(--cream-dark);
  border-radius: 1.5rem;
  padding: 3rem;
  overflow: hidden;
}

.project-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.project-showcase-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.project-progress-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.progress-track {
  width: 120px;
  height: 4px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 35%;
  background: var(--dark);
  border-radius: 99px;
}

.project-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.psc-tag {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

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

.psc-option {
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  background: rgba(0,0,0,0.04);
  color: var(--gray);
}

.psc-option--checked {
  background: var(--dark);
  color: var(--white);
}

.psc-btn {
  padding: 0.9rem 2rem;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
  width: fit-content;
}
.psc-btn:hover { opacity: 0.8; }

/* Abstract Illustration */
.psc-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.psc-illustration {
  width: 100%;
  height: 200px;
  background: var(--dark);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.psc-ill-arm {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
}

.psc-ill-screen {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  padding: 1.5rem;
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.psc-ill-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
}

.psc-ill-bar--short { width: 60%; }

.psc-ill-price {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════
   CTA / DARK FOOTER SECTION
═══════════════════════════════════════════════════ */
#cta {
  background: var(--dark-2);
  color: var(--white);
  padding: 8rem 2.5rem 4rem;
  border-radius: 2.5rem 2.5rem 0 0;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.cta-path-svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: auto;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(3.5rem, 9vw, 11rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 5rem;
}

.cta-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.cta-text-col p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #888;
  margin-bottom: 2.5rem;
}

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

.cta-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cta-contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
}

.cta-contact-item a {
  font-size: 1rem;
  color: #AAA;
  transition: color 0.2s;
}

.cta-contact-item a:hover { color: var(--white); }

/* CTA Form */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-field {
  border-bottom: 1px solid #2A2A2A;
  padding: 1.5rem 0;
}

.cta-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: -0.01em;
  caret-color: var(--white);
}

.cta-input::placeholder {
  color: #444;
}

.cta-submit-btn {
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.cta-submit-btn:hover { opacity: 0.8; }

/* CTA Footer Bar */
.cta-footer-bar {
  margin-top: 6rem;
  padding-top: 2rem;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #555;
  position: relative;
  z-index: 2;
}

.cta-footer-links {
  display: flex;
  gap: 2rem;
}

.cta-footer-links a {
  color: #555;
  transition: color 0.2s;
}
.cta-footer-links a:hover { color: var(--white); }

/* Floating pill nav */
.footer-pill-nav {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #0A0A0A;
  border: 1px solid #2A2A2A;
  border-radius: 99px;
  padding: 0.4rem;
  display: flex;
  gap: 0.25rem;
  z-index: 10;
}

.fpn-link {
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-size: 0.8rem;
  color: #666;
  transition: all 0.2s;
  white-space: nowrap;
}

.fpn-link:hover {
  color: var(--white);
}

.fpn-active {
  background: #2A2A2A;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   REVEAL UTILITY
═══════════════════════════════════════════════════ */
.gsap-reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 900px) {
  .about-top,
  .project-showcase-card,
  .cta-body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
  }

  .service-row {
    grid-template-columns: 2.5rem 2.5rem 1fr;
  }

  #navbar {
    padding: 1rem 1.5rem;
  }

  .nav-pill {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
  }

  .nav-center { display: none; }

  .project-showcase-title {
    font-size: 1.5rem;
  }
}

/* ── Mobile ── */
@media (max-width: 640px) {

  /* ── Prevent horizontal overflow globally ── */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* ── Navbar: simple row, no wrapping issues ── */
  #navbar {
    padding: 0.8rem 1rem;
    gap: 0.5rem;
  }

  .nav-logo img {
    height: 30px;
  }

  .nav-center { display: none; }

  .nav-right {
    gap: 0.4rem;
  }

  .nav-pill {
    padding: 0.45rem 0.75rem;
    font-size: 0.72rem;
  }

  /* ── Hero Section ── */
  #hero {
    padding: 7rem 1.25rem 0;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3.5rem);
    text-align: center;
    margin-bottom: 2rem;
  }

  .hero-line-2 {
    justify-content: center;
  }

  .hero-arrow {
    width: 40px;
  }

  .gear-pair .gear-small {
    width: 35px;
    height: 35px;
  }

  .gear-pair .gear-big {
    width: 50px;
    height: 50px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .hero-meta-item {
    font-size: 0.72rem;
  }

  /* ── Featured Project Card ── */
  .featured-project {
    padding: 2rem 1.25rem 1.75rem;
  }

  .featured-logo {
    max-width: 160px;
  }

  .featured-logo-wrap {
    margin-bottom: 1.5rem;
  }

  .featured-title {
    font-size: 1.2rem;
  }

  .featured-desc {
    font-size: 0.8rem;
  }

  .featured-link {
    font-size: 0.78rem;
    padding: 0.5rem 1rem;
  }

  .featured-badge {
    font-size: 0.62rem;
    margin-bottom: 1.25rem;
  }

  /* ── Ticker ── */
  .hero-ticker-wrap {
    margin-top: 1.5rem;
  }

  /* ── Marquee — must not cause overflow ── */
  #marquee-section {
    max-width: 100vw;
  }

  .mq-word {
    font-size: clamp(3rem, 14vw, 6rem);
  }

  .gear-badge--mq {
    width: 3.5rem;
    height: 3.5rem;
  }

  .marquee-star-badge,
  .mq-star-badge {
    width: 3.5rem;
    height: 3.5rem;
  }

  .mq-arrow {
    height: 2.5rem;
  }

  /* ── Services ── */
  #services,
  #about,
  #cta {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  #services {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .services-rotating-icon {
    width: 50px;
    height: 50px;
  }

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

  .service-row {
    padding: 1.5rem 0;
    grid-template-columns: 2rem 2rem 1fr;
    gap: 0.5rem;
  }

  /* ── About ── */
  .about-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-title {
    font-size: 1.8rem;
  }

  /* ── Project Showcase ── */
  .project-showcase {
    padding: 2rem 1.25rem;
  }

  .project-showcase-title {
    font-size: 1.2rem;
  }

  .project-showcase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* ── CTA / Footer ── */
  #cta {
    padding-top: 5rem;
    padding-bottom: 3rem;
    margin-top: 2rem;
  }

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

  .cta-body {
    gap: 3rem;
  }

  .cta-footer-bar {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    margin-top: 3rem;
    padding-bottom: 1rem;
  }

  .cta-footer-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* ── Hide floating pill nav on mobile — it overlaps content ── */
  .footer-pill-nav {
    display: none;
  }
}

