/* ============================================================
   AKS PUBLICITY — HOME PAGE STYLES
   Light Premium Theme | Clean Modern | Scroll Animations
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties (Light Theme) --- */
:root {
  --bg-base:       #F8F7FF;
  --bg-surface:    #FFFFFF;
  --bg-card:       #FFFFFF;
  --bg-card-hover: #FFF5F0;
  --border:        rgba(0, 0, 0, 0.08);
  --border-hover:  rgba(243, 96, 0, 0.35);

  --orange:        #F36000;
  --orange-dark:   #D45200;
  --orange-light:  #FF7A2E;
  --pink:          #FA3DCC;
  --grad-main:     linear-gradient(135deg, #F36000 0%, #FA3DCC 100%);
  --grad-text:     linear-gradient(90deg, #F36000, #FA3DCC);
  --grad-subtle:   linear-gradient(135deg, rgba(243,96,0,0.07) 0%, rgba(250,61,204,0.05) 100%);

  --text-primary:  #13111A;
  --text-secondary:#4A4860;
  --text-muted:    #9896B0;

  --font-display:  'Urbanist', sans-serif;
  --font-body:     'Urbanist', sans-serif;

  --nav-h:         76px;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;

  --transition:    0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:     0 16px 56px rgba(0,0,0,0.13);
  --shadow-glow:   0 0 48px rgba(243,96,0,0.18);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.5s ease;
}
body.loaded { opacity: 1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

::selection { background: var(--orange); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--grad-main); border-radius: 99px; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-padding { padding: 110px 0; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(243,96,0,0.08);
  border: 1px solid rgba(243,96,0,0.18);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.78;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 4px 24px rgba(243,96,0,0.32);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(243,96,0,0.45); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(243,96,0,0.12);
  background: rgba(243,96,0,0.04);
}
.btn-outline:active { transform: translateY(-1px); }

.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 50%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 80px;
  filter: brightness(0) invert(1);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(0,0,0,0.05);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

/* ============================================================
   SERVICES DROPDOWN
   ============================================================ */

/* The <li> that holds the dropdown */
.nav-has-dropdown {
  position: relative;
}

/* Services wrap = flex row with the link + chevron */
.nav-services-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  cursor: default;
}

/* Chevron indicator */
.nav-chevron-wrap {
  display: inline-flex;
  align-items: center;
  padding: 0 2px;
  opacity: 0.65;
  pointer-events: none;
}
.nav-chevron-wrap .nav-chevron {
  display: inline-block;
  font-size: 0.6rem;
  transition: transform 0.28s ease;
  vertical-align: middle;
}
.nav-has-dropdown:hover .nav-chevron-wrap .nav-chevron {
  transform: rotate(180deg);
}
/* Legacy fallback (for any remaining direct-child a chevron) */
.nav-has-dropdown > a .nav-chevron {
  display: inline-block;
  font-size: 0.6rem;
  margin-left: 5px;
  transition: transform 0.28s ease;
  vertical-align: middle;
  opacity: 0.65;
}
.nav-has-dropdown:hover > a .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  padding: 10px;
  min-width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 2000;
}

/* Small top-arrow notch */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 7px;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-top: none;
}

/* Show on hover */
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Individual dropdown item */
.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.83rem;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.nav-dd-item:hover {
  background: rgba(243,96,0,0.06);
  color: var(--orange);
}

/* Icon bubble */
.nav-dd-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(243,96,0,0.08);
  border: 1px solid rgba(243,96,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
}
.nav-dd-item:hover .nav-dd-icon {
  background: var(--orange);
  color: #fff;
  border-color: transparent;
}

/* Divider "header" row spanning full width */
.nav-dd-header {
  grid-column: 1 / -1;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 12px 4px;
}

/* ── Mobile: services accordion inside mobile menu ── */
.nav-mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 10px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  font-family: var(--font-body);
  transition: var(--transition);
}
.nav-mobile-services-toggle:hover {
  color: var(--orange);
  background: rgba(243,96,0,0.06);
}
.nav-mobile-services-toggle .mob-chevron {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
  opacity: 0.6;
}
.nav-mobile-services-toggle.open .mob-chevron {
  transform: rotate(180deg);
}
.nav-mobile-services-list {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0 4px 14px;
}
.nav-mobile-services-list.open {
  display: flex;
}
.nav-mobile-services-list a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-mobile-services-list a:hover {
  color: var(--orange);
  background: rgba(243,96,0,0.05);
}
.nav-mobile-services-list .mob-dd-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(243,96,0,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--orange);
  flex-shrink: 0;
}

/* Mobile category header (non-clickable divider) */
.mob-cat-header {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--orange);
  padding: 10px 12px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.mob-cat-header i { font-size: 0.7rem; }

/* ── Mega Menu (desktop wide panel) ── */
.nav-mega-menu {
  /* override the old 2-col grid */
  display: flex !important;
  flex-direction: row;
  gap: 0;
  min-width: 880px;
  padding: 8px;
  left: 50%;
  transform: translateX(-45%) translateY(-6px);
}
.nav-has-dropdown:hover .nav-mega-menu {
  transform: translateX(-45%) translateY(0);
}

/* Each column in the mega menu */
.nav-mega-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 6px;
  border-right: 1px solid var(--border);
}
.nav-mega-col:last-child { border-right: none; }

/* Category header inside mega menu */
.nav-mega-cat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--orange);
  padding: 10px 8px 5px;
  margin-top: 10px;
}
.nav-mega-cat:first-child { margin-top: 0; }
.nav-mega-cat i { font-size: 0.72rem; opacity: 0.9; }

/* Sub-items inside each category */
.nav-mega-sub {
  display: block;
  padding: 4px 8px 4px 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
  line-height: 1.5;
  white-space: nowrap;
}
.nav-mega-sub:hover {
  color: var(--orange);
  background: rgba(243,96,0,0.05);
  padding-left: 14px;
}
.nav-mega-sub.is-linked {
  font-weight: 700;
  color: var(--text-primary);
}
.nav-mega-sub.is-linked:hover { color: var(--orange); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0;
  border-radius: 10px;
  transition: var(--transition);
}
.nav-hamburger:hover { background: #f4f4f8; }
.nav-hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color 0.2s, transform 0.2s;
  padding: 10px 0;
}
.nav-mobile a:hover { color: var(--orange); transform: translateX(6px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #FFFFFF 0%, #FFF5EE 50%, #FFF0F8 100%);
}

#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0;          /* Physics wall replaces the canvas */
  pointer-events: none;
  display: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(243,96,0,0.14) 0%, transparent 70%);
  top: -100px; right: -150px;
  animation: orb-drift 14s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(250,61,204,0.10) 0%, transparent 70%);
  bottom: -80px; left: -120px;
  animation: orb-drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(28px, 18px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
  padding: 88px 0 72px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  background: rgba(243,96,0,0.07);
  border: 1px solid rgba(243,96,0,0.18);
  border-radius: 99px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 30px; height: 30px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.hero-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 44px;
  max-width: 460px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.hero-stat-num span {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero Right Visual */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero-visual-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 12px 56px rgba(0,0,0,0.1), 0 2px 8px rgba(243,96,0,0.06);
  position: relative;
  overflow: hidden;
}
.hero-visual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
}
.hero-card-header { margin-bottom: 22px; }
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.hero-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.hero-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-media-item {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: var(--transition);
  cursor: default;
}
.hero-media-item:hover {
  border-color: rgba(243,96,0,0.3);
  background: rgba(243,96,0,0.04);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.hero-media-icon {
  width: 38px; height: 38px;
  background: rgba(243,96,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--orange);
  transition: var(--transition);
}
.hero-media-item:hover .hero-media-icon {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 4px 14px rgba(243,96,0,0.35);
}
.hero-media-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Floating badges */
.hero-float-badge {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: float-badge 3.5s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.hero-float-badge-1 {
  top: -20px; left: -30px;
  animation-delay: 0s;
}
.hero-float-badge-2 {
  bottom: 24px; right: -40px;
  animation-delay: 1.8s;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-badge-icon {
  width: 34px; height: 34px;
  background: var(--grad-main);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.float-badge-text { display: flex; flex-direction: column; gap: 2px; }
.float-badge-title { font-size: 0.75rem; font-weight: 800; color: var(--text-primary); }
.float-badge-sub { font-size: 0.63rem; color: var(--text-muted); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bounce-scroll 2.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker-wrap {
  background: #FFF8F4;
  border-top: 1px solid rgba(243,96,0,0.1);
  border-bottom: 1px solid rgba(243,96,0,0.1);
  overflow: hidden;
  padding: 14px 0;
}
.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.ticker-item i { color: var(--orange); font-size: 0.6rem; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(243,96,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.about::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(250,61,204,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 88px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}
.about-highlight-item {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about-highlight-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.about-highlight-item:hover::after { transform: scaleX(1); }
.about-highlight-item:hover {
  border-color: rgba(243,96,0,0.2);
  background: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-highlight-icon {
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.about-highlight-item:hover .about-highlight-icon { transform: scale(1.15); }
.about-highlight-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.about-highlight-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.about-right { position: relative; }
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-main);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.about-stat-card:hover::before { transform: scaleX(1); }
.about-stat-card:hover {
  border-color: rgba(243,96,0,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.about-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative; z-index: 1;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  position: relative;
  overflow: hidden;
  background: var(--bg-base);
}
.services::before {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(250,61,204,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Flip Card Custom Cursor ────────────────────────────── */
#flip-cursor {
  position: fixed;
  top: 0; left: 0;
  /* Compact pill shape */
  width: auto;
  padding: 7px 14px 7px 10px;
  background: linear-gradient(135deg, #F36000 0%, #FA3DCC 100%);
  border-radius: 100px;
  pointer-events: none;
  z-index: 9999;
  /* Centred on cursor tip */
  transform: translate(-50%, -50%);
  /* Layout */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  /* Depth */
  box-shadow: 0 4px 18px rgba(243,96,0,0.35), 0 1px 4px rgba(0,0,0,0.18);
  /* Smooth entrance / exit */
  opacity: 0;
  scale: 0.7;
  transition: opacity 0.18s ease, scale 0.18s cubic-bezier(0.34,1.56,0.64,1);
}
#flip-cursor.visible {
  opacity: 1;
  scale: 1;
}
#flip-cursor i {
  font-size: 0.8rem;
  animation: spinIcon 2.4s linear infinite;
}
#flip-cursor span {
  font-size: 0.65rem;
  line-height: 1;
}
@keyframes spinIcon {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


/* ── Flip Card Outer Shell ─────────────────────────────── */
.service-card {
  background: transparent;
  border: none;
  padding: 0;
  overflow: visible;
  cursor: pointer;
  position: relative;
}
.service-card.is-flipped {
  cursor: auto;
}
.service-card:hover { transform: none; box-shadow: none; }
.service-card::after { display: none; }

/* ── Perspective scene ──────────────────────────────────── */
.card-scene {
  width: 100%;
  height: 220px;
  perspective: 900px;
}

/* ── The rotating element ───────────────────────────────── */
.card-flipper {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: var(--radius-lg);
}
.service-card.is-flipped .card-flipper {
  transform: rotateY(180deg);
}

/* ── Shared face styles ─────────────────────────────────── */
.card-face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

/* ── FRONT face ─────────────────────────────────────────── */
.card-front {
  background: #FFFFFF;
  border: 1px solid var(--border);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Smooth spring-like transition for lift + shadow + border */
  transition:
    border-color 0.35s ease,
    box-shadow   0.35s ease,
    transform    0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.card-front::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  border-radius: 0 0 2px 2px;
}
.service-card:not(.is-flipped):hover .card-front {
  border-color: rgba(243,96,0,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13), 0 0 0 1px rgba(243,96,0,0.08);
  transform: translateY(-8px);
}
.service-card:not(.is-flipped):hover .card-front::after { transform: scaleX(1); }

/* ── Flip hint tag ──────────────────────────────────────── */
.flip-hint {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(243,96,0,0.08);
  border: 1px solid rgba(243,96,0,0.18);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  letter-spacing: 0.02em;
}
.service-card:not(.is-flipped):hover .flip-hint {
  opacity: 1;
  transform: translateY(0);
}

/* ── BACK face ──────────────────────────────────────────── */
.card-back {
  transform: rotateY(180deg);
  background: #111;
}
.card-back img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* ── Back label (frosted glass strip) ──────────────────── */
.card-back-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.card-back-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.08em;
}
.card-back-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

/* ── Services list on card back ─────────────────────────── */
.card-back-services {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: 60px; /* leave room for the label strip */
  background: linear-gradient(160deg, rgba(10,10,30,0.88) 0%, rgba(20,20,40,0.82) 100%);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: flex-start;
  padding: 44px 20px 16px;
  overflow: hidden;
}
.card-back-services ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.card-back-services ul li {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.35;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.card-back-services ul li:last-child {
  border-bottom: none;
}
.card-back-services ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── Close button on back ───────────────────────────────── */
.card-close-btn {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 5;
}
.card-close-btn:hover {
  background: rgba(243,96,0,0.7);
  transform: scale(1.12);
}

/* ── Arrow button (front, non-flip click target) ────────── */
.card-arrow-btn {
  margin-top: auto;
  width: 32px; height: 32px;
  min-width: 32px; min-height: 32px;
  flex-shrink: 0;
  box-sizing: border-box;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  transition:
    background   0.3s ease,
    border-color 0.3s ease,
    color        0.3s ease,
    transform    0.4s cubic-bezier(0.34, 1.5, 0.64, 1),
    box-shadow   0.3s ease;
  cursor: pointer;
  z-index: 3;
  position: relative;
  text-decoration: none;
}
.service-card:not(.is-flipped):hover .card-arrow-btn {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 4px 14px rgba(243,96,0,0.35);
}

/* ── Service text (unchanged) ───────────────────────────── */
.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(243,96,0,0.08);
  border: 1px solid rgba(243,96,0,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--orange);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.service-icon-wrap i {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25em;
  height: 1.25em;
}
.service-card:not(.is-flipped):hover .service-icon-wrap {
  background: var(--grad-main);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgba(243,96,0,0.35);
  transform: scale(1.1) rotate(-4deg);
}
.service-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.service-desc {
  font-size: 0.81rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* legacy .service-arrow still referenced elsewhere */
.service-arrow {
  margin-top: auto;
  width: 32px; height: 32px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: var(--transition);
}


/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  left: -80px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(243,96,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.why-us::after {
  content: '';
  position: absolute;
  right: -80px; top: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(250,61,204,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.why-us-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}
.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-feature:hover {
  border-color: rgba(243,96,0,0.2);
  background: #FFFFFF;
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.why-feature-icon {
  width: 44px; height: 44px;
  background: rgba(243,96,0,0.08);
  border: 1px solid rgba(243,96,0,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: var(--transition);
}
.why-feature:hover .why-feature-icon {
  background: var(--grad-main);
  border-color: transparent;
  color: #fff;
}
.why-feature-title {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.why-feature-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.why-us-visual { position: relative; }
.why-big-card {
  background: linear-gradient(145deg, #FFF8F4, #FFF4FB);
  border: 1px solid rgba(243,96,0,0.12);
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-big-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
}
.why-big-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(243,96,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.why-big-number {
  font-family: var(--font-display);
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 0.9;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.why-big-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.why-big-desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative; z-index: 1;
}
.why-tag {
  padding: 6px 14px;
  background: rgba(243,96,0,0.07);
  border: 1px solid rgba(243,96,0,0.15);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  transition: var(--transition);
}
.why-tag:hover {
  background: rgba(243,96,0,0.14);
  border-color: var(--orange);
}

/* ============================================================
   WORK PROCESS SECTION
   ============================================================ */
.process {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(243,96,0,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.process-header { text-align: center; margin-bottom: 72px; }
.process-header .section-desc { margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(100% / 6 + 50px);
  right: calc(100% / 6 + 50px);
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--orange));
  opacity: 0.3;
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.process-step-num-wrap {
  width: 104px; height: 104px;
  position: relative;
  margin-bottom: 32px;
}
.process-step-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(243,96,0,0.2);
  animation: ring-pulse 2.8s ease-in-out infinite;
}
.process-step:nth-child(2) .process-step-ring { animation-delay: 0.9s; }
.process-step:nth-child(3) .process-step-ring { animation-delay: 1.8s; }
@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.1; }
}
.process-step-num {
  width: 80px; height: 80px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 32px rgba(243,96,0,0.4);
  transition: var(--transition);
}
.process-step:hover .process-step-num {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 12px 44px rgba(243,96,0,0.55);
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.process-step-desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.faq::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(250,61,204,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 52px;
  align-items: start;
}

.faq-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 100px;
}
.faq-tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition);
  text-align: left;
}
.faq-tab-btn:hover {
  border-color: rgba(243,96,0,0.25);
  color: var(--text-primary);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}
.faq-tab-btn.active {
  background: rgba(243,96,0,0.07);
  border-color: rgba(243,96,0,0.4);
  color: var(--orange);
  box-shadow: 0 4px 16px rgba(243,96,0,0.1);
}
.faq-tab-icon { font-size: 0.72rem; transition: transform 0.3s ease; }
.faq-tab-btn.active .faq-tab-icon { transform: rotate(90deg); }

.faq-panel { display: none; }
.faq-panel.active { display: block; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-question.open { color: var(--orange); }
.faq-q-icon {
  width: 28px; height: 28px;
  background: rgba(243,96,0,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.35s ease;
}
.faq-question.open .faq-q-icon { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.48s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.82;
  padding-right: 48px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  right: -80px; bottom: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(250,61,204,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute;
  left: -80px; top: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(243,96,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-info-item:hover {
  border-color: rgba(243,96,0,0.25);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(243,96,0,0.08);
  border: 1px solid rgba(243,96,0,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-item:hover .contact-info-icon {
  background: var(--grad-main);
  border-color: transparent;
  color: #fff;
}
.contact-info-label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-info-value {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-primary);
}
.contact-info-value a { color: inherit; transition: color 0.2s; }
.contact-info-value a:hover { color: var(--orange); }

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.social-btn {
  width: 44px; height: 44px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.social-btn:hover {
  background: rgba(243,96,0,0.07);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(243,96,0,0.15);
}

/* Contact form */
.contact-form-wrap {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
}
.form-header { margin-bottom: 28px; }
.form-header-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-header-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  width: 100%;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(243,96,0,0.1);
}
.form-group select option { background: #FFFFFF; color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 6px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-md);
  color: #16a34a;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
}
.form-success.show { display: flex; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-inner {
  background: var(--grad-main);
  border-radius: var(--radius-xl);
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(243,96,0,0.3);
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 280px; height: 280px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  position: relative; z-index: 1;
}
.cta-title span { opacity: 0.82; display: block; font-size: 0.6em; font-weight: 500; margin-bottom: 10px; letter-spacing: 0.03em; }
.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.btn-white {
  background: #fff;
  color: var(--orange-dark);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}
.btn-ghost {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.32);
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #13111A;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 72px 0 36px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 2px;
  background: var(--grad-main);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-brand-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.78;
  margin-top: 18px;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.footer-links a:hover { color: var(--orange); transform: translateX(4px); }

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-contact-item i { color: var(--orange); margin-top: 3px; flex-shrink: 0; font-size: 0.85rem; }
.footer-contact-item a { color: inherit; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* Footer logo/social adjustments */
.footer .social-btn {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}
.footer .social-btn:hover {
  background: rgba(243,96,0,0.15);
  border-color: var(--orange);
  color: var(--orange);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pulse 3.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { gap: 56px; }
  .why-us-grid { gap: 56px; }
  .contact-grid { gap: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-inner { padding: 56px 48px; }
  .hero-float-badge-1 { top: -10px; left: -10px; }
  .hero-float-badge-2 { bottom: 16px; right: -10px; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-float-badge { display: none; }
  .why-big-number { font-size: 5.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-subtitle { text-align: center; max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-highlights { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-header .section-desc { text-align: left; max-width: 100%; }

  .why-us-grid { grid-template-columns: 1fr; }
  .why-big-card { padding: 32px; }
  .why-big-number { font-size: 5rem; }

  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .process-steps::before { display: none; }
  .process-step { padding: 0 16px; }

  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-tabs { flex-direction: row; overflow-x: auto; position: static; -webkit-overflow-scrolling: touch; }
  .faq-tab-btn { white-space: nowrap; flex-shrink: 0; }
  .faq-answer-inner { padding-right: 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 28px; }

  .cta-inner {
    grid-template-columns: 1fr;
    padding: 44px 32px;
    text-align: center;
    gap: 32px;
  }
  .cta-actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer::before { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .section-padding { padding: 80px 0; }
}

@media (max-width: 480px) {
  .section-padding { padding: 64px 0; }
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; justify-content: center; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .cta-inner { padding: 36px 24px; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* ============================================================
   PHYSICS STICKER WALL
   ============================================================ */
.hero-right {
  position: relative;
  display: flex;
  align-items: stretch;
}

.physics-wall {
  width: 100%;
  height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #FDFBFF 0%, #FFF8F4 50%, #FFF4FB 100%);
  border: 1px solid rgba(243,96,0,0.09);
  box-shadow: 0 16px 64px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.05);
}

.pw-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
  user-select: none;
}

/* Sticker card outer wrapper (physics-positioned) */
.sticker-outer {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
  z-index: 2;
}

/* Sticker card inner (visual + 3D tilt) */
.sticker-card {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 14px 16px;
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.10),
    0 1px 4px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: box-shadow 0.2s ease;
  transform-style: preserve-3d;
  transform: perspective(600px) rotateX(0) rotateY(0);
  transition: box-shadow 0.22s ease, transform 0.18s ease;
}

.sticker-card:active { cursor: grabbing; }

.sticker-outer.grabbed .sticker-card {
  box-shadow:
    0 20px 56px rgba(0,0,0,0.18),
    0 6px 18px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Colored top accent bar */
.sc-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c, #F36000);
  border-radius: 20px 20px 0 0;
}

/* Bottom shine gloss */
.sticker-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}

/* Icon circle */
.sc-icon {
  width: 52px;
  height: 52px;
  background: var(--a, #FFF5EE);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--c, #F36000);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}

.sticker-outer.grabbed .sc-icon {
  transform: scale(1.08);
}

/* Service label */
.sc-label {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  text-align: center;
  color: #13111A;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

/* Tiny "advertising" sub-label */
.sc-sub {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c, #F36000);
  opacity: 0.75;
  position: relative;
  z-index: 1;
}

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

/* ============================================================
   PIXALATE TALE HERO SECTION
   ============================================================ */

/* Full-viewport section */
.hero-px {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: #13111A;
  display: flex;
  align-items: stretch;
}

/* Canvas fills 100% of section */
.px-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  cursor: crosshair;
}
#px-main {
  display: block;
  width: 100%;
  height: 100%;
}

/* Overlay (sits above canvas, pointer-events: none on bg) */
.px-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--nav-h) + 36px) 52px 44px;
  pointer-events: none; /* let mouse events reach canvas */
}

/* Top copy block */
.px-copy {
  max-width: 780px;
}

.px-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.px-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}

.px-headline {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 5.6rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  text-shadow: 0 2px 40px rgba(0,0,0,0.45);
}
.px-headline .gradient-text {
  background: linear-gradient(90deg, #FF7A2E, #FA3DCC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Bottom bar */
.px-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: rgba(10,8,18,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 22px 32px;
  pointer-events: all;
}

.px-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.px-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
}
.px-stat-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}
.px-stat-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.px-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.px-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Ghost light button (white outlined — for dark hero bg) */
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

/* Cursor hint pill */
.px-hint {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.6s ease;
  animation: hint-fade 4s ease-in-out 2s forwards;
}
@keyframes hint-fade {
  0%   { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

/* Scroll indicator (reuse existing styles, override color) */
.hero-px .hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bounce-scroll 2.2s ease-in-out infinite;
  pointer-events: none;
}
.hero-px .hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-px .hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(243,96,0,0.9), transparent);
}

/* Reveal animation override for dark hero */
.hero-px .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-px .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .px-overlay {
    padding: calc(var(--nav-h) + 24px) 24px 36px;
  }
  .px-headline { font-size: clamp(2rem, 7.5vw, 3.2rem); }
  .px-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 20px;
  }
  .px-stats { gap: 16px; }
  .px-stat-divider { display: none; }
  .px-hint { bottom: 90px; font-size: 0.65rem; }
}

/* ============================================================
   HERO — PIXALATE REVEAL (Full-screen centered)
   ============================================================ */

/* Override previous hero styles for new full-width layout */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #FFFFFF 0%, #FFF8F2 45%, #FDF2FF 100%);
}

/* Third orb — top left */
.hero-orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(250,61,204,0.07) 0%, transparent 70%);
  top: 30%; left: -100px;
  animation: orb-drift 20s ease-in-out infinite;
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

/* ── Retro Grid ── */
.retro-grid-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  perspective: 600px;
  z-index: 0;
}

.retro-grid-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotateX(60deg);
  transform-origin: bottom center;
}

.retro-grid {
  position: absolute;
  left: -100%;
  right: -100%;
  bottom: 0;
  height: 300%;
  background-image: 
    linear-gradient(to right, rgba(243, 96, 0, 0.25) 1px, transparent 1px), 
    linear-gradient(to bottom, rgba(243, 96, 0, 0.25) 1px, transparent 1px);
  background-repeat: repeat;
  background-size: 60px 60px;
  animation: gridMoveVertical 3s linear infinite;
}

.retro-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #FFFFFF 0%, transparent 100%);
}

@keyframes gridMoveVertical {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 60px, 0 60px; }
}

/* ── Two-column hero layout ── */
.hero-center {
  display: grid;
  grid-template-columns: 45fr 55fr;
  align-items: center;
  gap: 48px;
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
}

/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

/* Right column */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  /* Bleed slightly past container for extra drama */
  margin-right: -32px;
}

/* ============================================================
   INTERACTIVE REVEAL — CIRCULAR SPOTLIGHT (Lorenzo-style)
   ============================================================ */

/* Tag above reveal widget */
.reveal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(243,96,0,0.08);
  border: 1px solid rgba(243,96,0,0.25);
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  animation: hintPulse 2.4s ease-in-out infinite;
  transition: opacity 0.5s ease;
  align-self: center;
}
.reveal-tag i { font-size: 0.82rem; }
.hero-right.interacted .reveal-tag { opacity: 0; }

/* ── Desktop widget ── */

.reveal-widget {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1 / 1.05;   /* taller than wide — shows the full city skyline */
  border-radius: 24px;
  overflow: hidden;
  cursor: none;
  user-select: none;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.35),
    0 0 0 1px rgba(0,0,0,0.10);
}

/* Base image — blank billboard, always fully visible */
.reveal-before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Branded image — starts invisible (circle radius = 0)
   JS lerps the clip-path circle around the cursor position */
.reveal-after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  clip-path: circle(0px at 50% 50%);
  /* NO CSS transition — requestAnimationFrame lerp is the animation */
  will-change: clip-path;
}

/* Glowing ring painted at the circle edge via an
   absolutely-positioned overlay div (injected by JS) */
.reveal-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 2.5px solid rgba(255,255,255,0.85);
  box-shadow:
    0 0 0 1px rgba(243,96,0,0.5),
    0 0 22px 4px rgba(243,96,0,0.3),
    inset 0 0 22px 4px rgba(243,96,0,0.15);
  transform: translate(-50%, -50%);
  z-index: 10;
  will-change: left, top, width, height;
}

/* Hint pill — visible at rest, fades out on first hover */
.reveal-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.reveal-hint-inner {
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 99px;
  padding: 10px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.14);
  animation: hintPulse 2.4s ease-in-out infinite;
}
.reveal-hint-inner i { color: var(--orange); }
@keyframes hintPulse {
  0%,100% { transform: scale(1);    box-shadow: 0 4px 24px rgba(0,0,0,0.14); }
  50%      { transform: scale(1.05); box-shadow: 0 8px 36px rgba(243,96,0,0.25); }
}
.reveal-widget.interacted .reveal-hint { opacity: 0; pointer-events: none; }

/* ── Mobile: horizontal drag split-reveal ── */
.reveal-mobile-slider {
  display: none;   /* hidden on desktop, shown via media query */
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1.05;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  cursor: ew-resize;
  margin: 0 auto;
}

/* Divider line (mobile only) */
.reveal-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 2.5px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Handle circle (mobile only) */
.reveal-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(243,96,0,0.65),
    0 6px 24px rgba(0,0,0,0.28);
  z-index: 12;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--orange);
  gap: 1px;
}

/* Floating labels (mobile only) */
.reveal-label {
  position: absolute;
  bottom: 14px;
  padding: 5px 13px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 11;
}
.reveal-label-before { left: 14px; }
.reveal-label-after  { right: 14px; background: rgba(243,96,0,0.82); }

/* Transparent range input over the mobile slider */
.reveal-mobile-slider input[type=range] {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 30;
  margin: 0; padding: 0;
  -webkit-appearance: none;
}


/* ── Entry animation states ── */
.hero-badge,
.hero-sub,
.hero-cta,
.hero-stats,
.hero-services-strip {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-anim-1 { transition-delay: 0.05s; }
.hero-anim-3 { transition-delay: 0.1s; }  /* set by JS after headline done */
.hero-anim-4 { transition-delay: 0.2s; }
.hero-anim-5 { transition-delay: 0.35s; }
.hero-anim-6 { transition-delay: 0.5s; }

.hero-badge.visible,
.hero-sub.visible,
.hero-cta.visible,
.hero-stats.visible,
.hero-services-strip.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 8px;
  background: rgba(243,96,0,0.07);
  border: 1px solid rgba(243,96,0,0.2);
  border-radius: 99px;
  margin-bottom: 36px;
}
.hero-badge-dot {
  width: 32px; height: 32px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.hero-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── Headline ── */
.hero-headline {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 28px;
  user-select: none;
  text-align: left;
}

/* ── Text Rotator Headline ── */
.hero-headline-line {
  display: inline;
  line-height: inherit;
}

.text-rotator {
  position: relative;
  display: inline-grid;
  vertical-align: middle;
  text-align: left;
  overflow: hidden;
}

.rotator-item {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
  white-space: nowrap;
  font-family: inherit;
  font-weight: inherit;
  
  /* Apply gradient to rotating words */
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rotator-item.active {
  opacity: 1;
  transform: translateY(0);
}

.rotator-item.exiting {
  opacity: 0;
  transform: translateY(-100%);
}

/* ── Sub-copy ── */
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.78;
  max-width: 520px;
  margin: 0 0 40px;
}

/* ── CTA ── */
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* ── Stats row ── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 48px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0 28px 0 0;
}
.hero-stat-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}
.hero-stat-num span {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 28px 0 0;
}

/* ── Service tags scrolling strip ── */
.hero-services-strip {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  padding: 14px 0;
  border-top: 1px solid rgba(243,96,0,0.1);
  border-bottom: 1px solid rgba(243,96,0,0.1);
  background: rgba(243,96,0,0.02);
}

.hss-inner {
  display: flex;
  white-space: nowrap;
  animation: hss-scroll 28s linear infinite;
  width: max-content;
}
.hero-services-strip:hover .hss-inner { animation-play-state: paused; }

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

.hss-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  border-right: 1px solid rgba(243,96,0,0.12);
  white-space: nowrap;
  transition: color 0.2s;
}
.hss-tag:hover { color: var(--orange); }
.hss-tag i { color: var(--orange); font-size: 0.8rem; }

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: bounce-scroll 2.2s ease-in-out infinite;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-center {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right {
    order: -1;
    margin-right: 0;        /* remove bleed on tablet */
    justify-content: center;
  }
  .reveal-widget { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .hero-headline { font-size: clamp(1.5rem, 7vw, 3.2rem); letter-spacing: -0.02em; text-align: left; }
  .hero-center { padding: 60px 0 40px; }
  .pxl-outline { -webkit-text-stroke: 2px var(--orange); }
  /* On mobile: hide the hover-widget, show the touch slider */
  .reveal-widget        { display: none; }
  .reveal-mobile-slider { display: block; }
  /* Stats → 2×2 grid on mobile */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }
  .hero-stat { padding: 0; align-items: flex-start; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-stat-divider { display: none; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(1.2rem, 8vw, 2.4rem); }
  .hero-stats { gap: 12px 16px; }
}


/* ============================================================
   SERVICES GALLERY — 3D Coverflow Carousel
   ============================================================ */

.gallery-section {
  background: linear-gradient(180deg, #f5f0ee 0%, #fff 40%, #f8f4ff 100%);
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 52px;
}
.gallery-header .section-desc {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

/* ── Viewport ── */
.glry-viewport {
  position: relative;
  width: 100%;
  height: 620px;
  perspective: 1400px;
  perspective-origin: 50% 50%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.glry-viewport:active { cursor: grabbing; }

/* ── Track: full viewport, perspective context ── */
.glry-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

/* ── Card: all stacked at center, JS offsets them ── */
.glry-card {
  position: absolute;
  width: 520px;
  height: 330px;
  left: 50%;
  top: 50%;
  margin-left: -260px;  /* half of width */
  margin-top:  -165px;  /* half of height */
  border-radius: 18px;
  overflow: visible;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity   0.55s ease,
              filter    0.55s ease;
  outline: none;
}
.glry-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.glry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  transition: transform 0.55s ease;
}

/* ── Glass edge (3D thickness illusion) ── */
.glry-glass-edge {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  z-index: 2;
  pointer-events: none;
  box-shadow:
    /* inner right highlight */
    inset -3px 0 12px rgba(255,255,255,0.22),
    /* inner top highlight */
    inset 0 2px 8px rgba(255,255,255,0.18),
    /* outer glow */
    0 8px 40px rgba(0,0,0,0.18),
    0 2px 12px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  background: linear-gradient(135deg,
    rgba(255,255,255,0.14) 0%,
    rgba(255,255,255,0.04) 50%,
    rgba(255,255,255,0.10) 100%);
  backdrop-filter: blur(0.5px);
}

/* Bottom-edge thickness bar (simulated depth) */
.glry-card::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 8px;
  right: 8px;
  height: 8px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.22), rgba(0,0,0,0.06));
  border-radius: 0 0 18px 18px;
  filter: blur(3px);
  transform: translateZ(-4px);
  z-index: 0;
}

/* ── Info overlay ── */
.glry-overlay {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(to top,
    rgba(15,10,30,0.82) 0%,
    rgba(15,10,30,0.30) 55%,
    rgba(15,10,30,0.04) 100%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.glry-card.active .glry-overlay,
.glry-card:hover   .glry-overlay {
  opacity: 1;
  transform: translateY(0);
}

.glry-tag {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 4px;
}
.glry-name {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.glry-sub {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

/* ── Controls ── */
.glry-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.glry-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(243,96,0,0.25);
  background: #fff;
  color: var(--orange);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.glry-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(243,96,0,0.30);
}

/* ── Dots ── */
.glry-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.glry-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.3s;
}
.glry-dot.active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
  transform: scaleY(1.1);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .glry-viewport { height: 420px; }
  .glry-card     { width: 340px; height: 215px; margin-left: -170px; margin-top: -107px; }
}
@media (max-width: 480px) {
  .glry-viewport { height: 320px; }
  .glry-card     { width: 260px; height: 165px; border-radius: 12px; margin-left: -130px; margin-top: -82px; }
  .glry-card img { border-radius: 12px; }
  .glry-glass-edge { border-radius: 12px; }
  .glry-name { font-size: 0.88rem; }
}

