/* =============================================
   SHREEL MARKETING — style.css
   Premium Dark Luxury Theme + Inner Pages
   ============================================= */

/* === CSS VARIABLES === */
:root {
 --primary: #000000; /* Base black */
  --primary-gradient-end: #414141; /* Your secondary grey */
  --secondary: #F5E6D0;
  --accent: #FF6B00;
  --accent-2: #E8B800;
  --accent-3: #C8003A;
  --white: #FFF4E8;
  --muted: rgba(245, 230, 208, 0.45);
  --muted-2: rgba(245, 230, 208, 0.07);
  --border: rgba(255, 107, 0, 0.15);
  --border-hover: rgba(255, 107, 0, 0.5);
  --gradient-fire: linear-gradient(135deg, #E8B800 0%, #FF6B00 45%, #C8003A 100%);

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --nav-h: 72px;
  --ann-h: 36px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-gradient-end) 100%);
  background-attachment: fixed; /* Keeps the gradient still while you scroll */
  color: var(--secondary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === SECTION COMMON === */
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.label-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5); }
  50%       { box-shadow: 0 0 0 7px rgba(255, 107, 0, 0); }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--secondary);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* === FIRE GRADIENT TEXT UTILITY === */
.fire-text {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   SECTION 1: ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--ann-h);
  background: rgba(35, 31, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-content {
  display: flex;
  gap: 0;
  animation: marquee-scroll 35s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-content span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--secondary);
  opacity: 0.8;
  padding: 0 48px;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION 2: NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: var(--ann-h);
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(35, 31, 32, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-left {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.3s var(--ease-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.35s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-center {
  display: flex;
  justify-content: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-img-full {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.35));
  transition: filter 0.3s, transform 0.3s var(--ease-bounce);
}

.nav-logo:hover .logo-img-full {
  filter: drop-shadow(0 0 16px rgba(255, 107, 0, 0.65));
  transform: scale(1.04);
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 107, 0, 0.5));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-dot {
  color: var(--accent);
  font-size: 0.5rem;
  margin-top: 2px;
}

.mobile-overlay-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.4));
}

.nav-right {
  display: flex;
  justify-content: flex-end;
}

/* Nav CTA Button */
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gradient-fire);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-nav:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.4);
}

.btn-nav:hover::before { opacity: 1; }
.btn-nav svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  z-index: 10001;
  position: fixed; /* Change to fixed */
  top: calc(var(--ann-h) + 14px); /* Align below announcement bar */
  right: 20px;
  background: rgba(35, 31, 32, 0.8); /* Add background for visibility */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--muted);
  transition: color 0.3s, transform 0.3s var(--ease-bounce);
  display: block;
  padding: 6px 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--secondary);
  transform: translateX(8px);
}

.mobile-nav-link.active {
  color: var(--accent);
}

.btn-mobile-cta {
  margin-top: 24px;
  padding: 14px 36px;
  background: var(--gradient-fire);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.3s var(--ease-bounce);
}

.btn-mobile-cta:hover { transform: scale(1.04); }

.mobile-overlay-footer {
  position: absolute;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   SECTION 3: HERO
   ============================================= */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--ann-h) + var(--nav-h) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Floating Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.18;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #FF6B00, transparent 70%);
  top: -100px;
  right: -100px;
  animation: blob-float-1 12s ease-in-out infinite;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #C8003A, transparent 70%);
  bottom: 0;
  left: -80px;
  animation: blob-float-2 15s ease-in-out infinite;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #E8B800, transparent 70%);
  top: 40%;
  left: 45%;
  animation: blob-float-3 10s ease-in-out infinite;
  opacity: 0.08;
}

@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, 40px) scale(1.08); }
}

@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, -30px) scale(1.06); }
}

@keyframes blob-float-3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-20px, 20px); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-brand-stamp {
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-in-up 0.8s var(--ease-out) 0.1s forwards;
}

.hero-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.4));
  transition: filter 0.4s var(--ease-out), transform 0.4s var(--ease-bounce);
}

.hero-logo:hover {
  filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.7));
  transform: scale(1.04);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  overflow: hidden;
}

.hero-headline .line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: reveal-line 0.8s var(--ease-out) forwards;
}

.hero-headline .line:nth-child(1) { animation-delay: 0.15s; }
.hero-headline .line:nth-child(2) { animation-delay: 0.30s; }
.hero-headline .line:nth-child(3) { animation-delay: 0.45s; }

.accent-line {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

@keyframes reveal-line {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-in-up 0.8s var(--ease-out) 0.6s forwards;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-in-up 0.8s var(--ease-out) 0.75s forwards;
}

/* Primary Button */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--gradient-fire);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease-out);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.45);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.5s var(--ease-out);
}

.btn-primary:hover .btn-shine { left: 150%; }

/* Ghost Button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--secondary);
  opacity: 0.7;
  transition: opacity 0.3s, gap 0.3s var(--ease-bounce);
}

.btn-ghost:hover {
  opacity: 1;
  gap: 12px;
}

/* Hero Badges */
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fade-in-up 0.8s var(--ease-out) 0.9s forwards;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-label {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Right */
.hero-media-frame { position: relative; }

.hero-media-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-gif-placeholder {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--muted-2);
  aspect-ratio: 10/7;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 107, 0, 0.15), 0 24px 80px rgba(255, 107, 0, 0.1);
}

.hero-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(35, 31, 32, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.card-1 {
  bottom: -20px;
  left: -30px;
  animation: float-card-1 5s ease-in-out infinite;
}

.card-2 {
  top: -20px;
  right: -24px;
  animation: float-card-2 6s ease-in-out infinite;
}

@keyframes float-card-1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes float-card-2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

.fc-icon { font-size: 1.4rem; }

.fc-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fc-label {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fade-in-up 0.8s var(--ease-out) 1.2s forwards;
}

.scroll-wheel {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--muted);
  border-radius: 100px;
  position: relative;
}

.scroll-wheel::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-wheel-anim 2s ease-in-out infinite;
}

@keyframes scroll-wheel-anim {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  80%       { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Reveal Animations */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  opacity: 1;
  transform: none;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SECTION 4: FUN FACTS / COUNTERS
   ============================================= */
.fun-facts {
  padding: 120px 0;
  position: relative;
}

.fun-facts::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 107, 0, 0.07), transparent);
  pointer-events: none;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.counter-card {
  padding: 44px 28px;
  background: var(--muted-2);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), background 0.3s;
  cursor: default;
}

.counter-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.counter-card:hover {
  border-color: var(--border-hover);
  background: rgba(232, 230, 218, 0.05);
}

.counter-card:hover::before { transform: scaleX(1); }

.counter-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  color: var(--accent);
  opacity: 0.8;
}

.counter-icon svg {
  width: 100%;
  height: 100%;
}

.counter-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.counter-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =============================================
   SECTION 5: SERVICES
   ============================================= */
.services {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.services-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.service-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  text-align: left;
}

.service-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--muted-2);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-btn:hover::before,
.service-btn.active::before { opacity: 1; }

.service-btn.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 107, 0, 0.2), 0 4px 24px rgba(255, 107, 0, 0.12);
}

.service-btn:hover {
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.08);
}

.sb-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  min-width: 24px;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}

.service-btn.active .sb-num { color: var(--accent); }

.sb-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  flex: 1;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}

.service-btn.active .sb-name,
.service-btn:hover .sb-name { color: var(--secondary); }

.sb-arrow {
  font-size: 1rem;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out), color 0.3s;
  position: relative;
  z-index: 1;
}

.service-btn.active .sb-arrow,
.service-btn:hover .sb-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--accent);
}

/* Service Panels */
.services-content {
  position: relative;
  min-height: 420px;
}

.service-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  visibility: hidden;
}

.service-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  position: absolute;
}

.sp-header h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--secondary);
}

.sp-header p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.sp-clients-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.sp-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.sp-logo-item {
  background: var(--muted-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.sp-logo-item:hover {
  border-color: rgba(255, 107, 0, 0.4);
  color: var(--accent);
  background: rgba(255, 107, 0, 0.05);
}

.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-tags span {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.sp-tags span:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 107, 0, 0.08);
}

/* === UPDATED CLIENT LIST STYLING === */
.client-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.client-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--muted-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 20px;
    transition: all 0.3s var(--ease-out);
}

.client-row:hover {
    border-color: var(--accent);
    background: rgba(255, 107, 0, 0.05);
    transform: translateX(5px);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-logo-small {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.2);
    transition: filter 0.3s ease;
}

.client-row:hover .client-logo-small {
    filter: grayscale(0) /*drop-shadow(0 0 5px rgba(255, 107, 0, 0.5))*/;
}

.client-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
}

.view-profile {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.client-row:hover .view-profile {
    opacity: 1;
    transform: translateX(3px);
}

/* Responsive adjustment for small mobiles */
@media (max-width: 480px) {
    .client-row {
        padding: 10px 15px;
    }
    .client-name {
        font-size: 0.85rem;
    }
    .view-profile {
        font-size: 0.65rem;
    }
}









/* =============================================
   SECTION 6: EXPERTISE ACCORDION
   ============================================= */
.expertise {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.accordion {
  margin-top: 60px;
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  transition: opacity 0.3s;
}

.accordion-trigger:hover { opacity: 0.8; }

.acc-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  min-width: 28px;
}

.acc-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--secondary);
  flex: 1;
  transition: color 0.3s;
}

.accordion-item.open .acc-title {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.acc-icon {
  color: var(--muted);
  transition: transform 0.4s var(--ease-out), color 0.3s;
  flex-shrink: 0;
}

.accordion-item.open .acc-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.accordion-item.open .accordion-body { max-height: 400px; }

.accordion-body > * { padding-bottom: 28px; }

.acc-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
  padding-left: 52px;
}

.acc-why {
  padding-left: 52px;
  padding-top: 0;
}

.acc-why h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.acc-why p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}

/* =============================================
   SECTION 7: CLIENTS MARQUEE
   ============================================= */
.clients {
  padding: 120px 0 60px;
  border-top: 1px solid var(--border);
}

.clients-marquee-wrapper {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}

.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--primary), transparent);
}

.clients-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--primary), transparent);
}

.marquee-logos {
  display: flex;
  gap: 0;
  animation: logos-scroll 30s linear infinite;
  will-change: transform;
}

.clients-marquee:hover .marquee-logos { animation-play-state: paused; }

@keyframes logos-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 56px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--muted);
  filter: grayscale(1) opacity(0.4);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  transition: filter 0.4s var(--ease-out), color 0.4s;
  min-width: 160px;
}

.client-logo:hover {
  filter: grayscale(0) opacity(1) drop-shadow(0 0 8px rgba(255, 107, 0, 0.3));
  color: var(--accent);
}

/* =============================================
   SECTION 8: CONTACT FORM
   ============================================= */
.contact {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact .section-title span {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-desc {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.ci-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  opacity: 0.8;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
  margin-bottom: 28px;
}

.form-group.floating input,
.form-group.floating select,
.form-group.floating textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 20px 0 10px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}

.form-group.floating select option {
  background: #2a2526;
  color: var(--secondary);
}

.form-group.floating label {
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 0.88rem;
  color: var(--muted);
  pointer-events: none;
  transition: top 0.3s var(--ease-out), font-size 0.3s, color 0.3s;
}

.form-group.floating input:focus ~ label,
.form-group.floating input:not(:placeholder-shown) ~ label,
.form-group.floating select:focus ~ label,
.form-group.floating textarea:focus ~ label,
.form-group.floating textarea:not(:placeholder-shown) ~ label,
.form-group.floating select.has-value ~ label {
  top: 2px;
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s var(--ease-out);
}

.form-group.floating input:focus ~ .form-line,
.form-group.floating select:focus ~ .form-line,
.form-group.floating textarea:focus ~ .form-line {
  width: 100%;
}

.form-group.floating input::placeholder,
.form-group.floating textarea::placeholder { color: transparent; }

.form-group.full-width { grid-column: 1 / -1; }

/* Submit Button */
.btn-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--gradient-fire);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease-out);
  align-self: flex-start;
  margin-top: 12px;
}

.btn-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.45);
}

.btn-submit-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s var(--ease-out);
}

.btn-submit:hover .btn-submit-shine { left: 150%; }

.btn-arrow { transition: transform 0.3s var(--ease-bounce); }
.btn-submit:hover .btn-arrow { transform: translateX(4px); }

/* Success Message */
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 10px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 16px;
  animation: fade-in-up 0.5s var(--ease-out) forwards;
}

.form-success.show { display: flex; }

/* Field Error */
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: rgba(220, 80, 80, 0.6); }

.form-error-msg {
  font-size: 0.68rem;
  color: rgba(220, 80, 80, 0.8);
  position: absolute;
  bottom: -18px;
  left: 0;
}

/* =============================================
   SECTION 9: FOOTER
   ============================================= */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  background: rgba(20, 18, 18, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo { margin-bottom: 20px; }

.footer-logo-full {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255, 107, 0, 0.3));
  transition: filter 0.3s var(--ease-out), transform 0.3s var(--ease-bounce);
}

.footer-logo-full:hover {
  filter: drop-shadow(0 0 14px rgba(255, 107, 0, 0.6));
  transform: scale(1.02);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-address svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  opacity: 0.7;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.3s, padding-left 0.3s var(--ease-out);
}

.footer-nav a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-bounce), background 0.3s, box-shadow 0.3s;
}

.social-icon svg {
  width: 17px;
  height: 17px;
}

.social-icon:hover {
  border-color: rgba(255, 107, 0, 0.5);
  color: var(--accent);
  background: rgba(255, 107, 0, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.15);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.6;
}

/* =============================================
   REVEAL DELAYS
   ============================================= */
[data-delay="50"]  { transition-delay: 0.05s; }
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="400"] { transition-delay: 0.40s; }

/* =============================================
   GRAIN TEXTURE OVERLAY
   ============================================= */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* =============================================
   SELECTION COLOUR
   ============================================= */
::selection {
  background: rgba(255, 107, 0, 0.3);
  color: var(--secondary);
}

/* =============================================
   ACCESSIBILITY — REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-content, .marquee-logos { animation: none; }
}

/* =============================================
   INNER PAGES — PAGE HERO
   ============================================= */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--ann-h) + var(--nav-h) + 80px);
  padding-bottom: 80px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(255, 107, 0, 0.07) 0%, transparent 70%),
              radial-gradient(ellipse 40% 50% at 20% 80%, rgba(200, 0, 58, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 2; }

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-in-up 0.6s var(--ease-out) 0.1s forwards;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--secondary);
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-in-up 0.7s var(--ease-out) 0.15s forwards;
}

.page-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  opacity: 0;
  animation: fade-in-up 0.7s var(--ease-out) 0.3s forwards;
}

/* =============================================
   ABOUT — Story Section
   ============================================= */
.about-story {
  padding: 100px 0 80px;
  border-top: 1px solid var(--border);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.about-story-left {
  position: sticky;
  top: calc(var(--ann-h) + var(--nav-h) + 40px);
}

.about-story-text {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-story-line {
  width: 48px;
  height: 1.5px;
  background: var(--gradient-fire);
  margin: 32px 0;
}

.about-story-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  line-height: 1.6;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 12px;
}

.about-story-author {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-left: 20px;
}

/* =============================================
   ABOUT — Values Grid
   ============================================= */
.about-values {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}

.value-card {
  background: var(--primary);
  padding: 40px 32px;
  transition: background 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.value-card:hover::before { opacity: 1; }

.value-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================
   ABOUT — Team Grid
   ============================================= */
.about-team {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.team-card {
  background: var(--muted-2);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.team-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.team-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =============================================
   SERVICES PAGE — Process Steps
   ============================================= */
.services-process {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.process-steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}

.process-step:first-child { border-top: 1px solid var(--border); }

.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-fire);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-out);
}

.process-step:hover::before { transform: scaleY(1); }

.process-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--border-hover);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 4px;
  transition: color 0.3s;
}

.process-step:hover .process-num {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.process-content p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* =============================================
   CTA STRIP — shared inner page element
   ============================================= */
.page-cta-strip {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--muted-2);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.cta-strip-inner:hover { border-color: var(--border-hover); }

.cta-strip-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cta-strip-text p {
  font-size: 1rem;
  color: var(--muted);
}

.cta-strip-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* =============================================
   CONTACT PAGE — Trust Badges
   ============================================= */
.contact-trust {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  background: var(--muted-2);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  text-align: center;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.trust-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* =============================================
   RESPONSIVE — TABLET 1024px
   ============================================= */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .hero-inner { gap: 40px; }
  .hero-headline { font-size: clamp(2.4rem, 5vw, 3.5rem); }
  .counters-grid { grid-template-columns: repeat(3, 1fr); }
  .services-layout { grid-template-columns: 280px 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }

  /* About page */
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-left { position: static; }
}

/* =============================================
   RESPONSIVE — TABLET 900px
   ============================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-left { text-align: center; }
  .hero-cta-row { justify-content: center; }
  .hero-badge-row { justify-content: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-brand-stamp { display: flex; justify-content: center; }

  .services-layout { grid-template-columns: 1fr; gap: 0; }

  .services-nav {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
    margin-bottom: 28px;
    flex-shrink: 0;
  }
  .services-nav::-webkit-scrollbar { display: none; }

  .service-btn {
    flex-shrink: 0;
    width: auto;
    padding: 12px 20px;
    border-radius: 100px;
    margin-bottom: 0;
    gap: 8px;
    white-space: nowrap;
  }

  .sb-num  { display: none; }
  .sb-arrow { display: none; }

  .services-content { min-height: 0 !important; height: auto !important; }

  .service-panel {
    position: static !important;
    inset: auto;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none !important;
    visibility: visible !important;
    transition: opacity 0.35s var(--ease-out), max-height 0.45s var(--ease-out);
    pointer-events: none;
  }

  .service-panel.active {
    opacity: 1;
    max-height: 900px;
    pointer-events: auto;
    position: static !important;
    visibility: visible !important;
    transform: none !important;
  }

  .sp-header h3 { font-size: 1.5rem; }
  .sp-header p  { max-width: 100%; margin-bottom: 24px; }
  .sp-logo-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .sp-logo-item { padding: 12px 8px; font-size: 0.68rem; }
}

/* =============================================
   RESPONSIVE — MOBILE 680px
   ============================================= */
@media (max-width: 680px) {
  :root { --ann-h: 30px; --nav-h: 60px; }

  .container  { padding: 0 20px; }
  .nav-inner  { padding: 0 20px; }
  .nav-left, .nav-right { display: none !important; }
  .hamburger  { display: flex; }
  .nav-inner  { grid-template-columns: 1fr auto auto; }
  .nav-center { justify-content: flex-start; }

  .logo-img-full    { height: 34px; }
  .hero-logo        { height: 40px; }
  .footer-logo-full { height: 40px; }

  .hero         { padding-top: calc(var(--ann-h) + var(--nav-h) + 40px); padding-bottom: 60px; }
  .hero-inner   { padding: 0 20px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-badge-row { gap: 16px; flex-wrap: wrap; }
  .hero-cta-row { flex-direction: column; align-items: center; gap: 14px; }
  .floating-card { display: none; }

  .fun-facts, .services, .expertise, .clients, .contact { padding: 72px 0; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .counters-grid .counter-card:last-child { grid-column: 1 / -1; }

  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-title { font-size: 1.8rem; }

  .services-layout { grid-template-columns: 1fr; gap: 0; margin-top: 32px; }

  .services-nav {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 0 4px 0;
    margin-bottom: 24px;
    flex-shrink: 0;
  }
  .services-nav::-webkit-scrollbar { display: none; }

  .service-btn {
    flex-shrink: 0;
    width: auto;
    padding: 10px 18px;
    border-radius: 100px;
    margin-bottom: 0;
    gap: 6px;
    white-space: nowrap;
  }

  .sb-num   { display: none; }
  .sb-arrow { display: none; }

  .service-panel {
    position: static !important;
    inset: auto;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none !important;
    visibility: visible !important;
    transition: opacity 0.35s var(--ease-out), max-height 0.45s var(--ease-out);
    pointer-events: none;
  }

  .service-panel.active {
    opacity: 1;
    max-height: 1000px;
    pointer-events: auto;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
  }

  .services-content { min-height: 0 !important; height: auto !important; }

  .sp-header h3 { font-size: 1.35rem; margin-bottom: 10px; }
  .sp-header p  { font-size: 0.9rem; max-width: 100%; margin-bottom: 20px; line-height: 1.65; }
  .sp-clients-label { margin-bottom: 12px; }
  .sp-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 20px; }
  .sp-logo-item { padding: 14px 10px; font-size: 0.68rem; border-radius: 8px; }
  .sp-tags { gap: 6px; }
  .sp-tags span { font-size: 0.72rem; padding: 5px 12px; }

  /* Page hero mobile */
  .page-hero { min-height: 44vh; padding-bottom: 52px; }
  .page-hero-title { font-size: 2rem; }

  /* About page mobile */
  .values-grid { grid-template-columns: 1fr; }
  .value-card  { padding: 28px 24px; }
  .team-grid   { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* CTA strip mobile */
  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 28px;
  }
  .cta-strip-actions { flex-direction: column; width: 100%; }
  .cta-strip-actions .btn-primary,
  .cta-strip-actions .btn-ghost { width: 100%; justify-content: center; text-align: center; }

  /* Process steps mobile */
  .process-step { grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; }
  .process-num  { font-size: 1.8rem; }

  /* Trust badges mobile */
  .trust-item { padding: 16px 10px; }
  .trust-num  { font-size: 1.2rem; }
}

@media (max-width: 420px) {
  .hero-headline { font-size: 2rem; }
  .service-btn { padding: 9px 14px; font-size: 0.82rem; }
  .sb-name     { font-size: 0.82rem; }
  .team-grid   { grid-template-columns: 1fr; }
}

/* =============================================
   COUNTER GRID — tablet 3-col fix
   ============================================= */
@media (min-width: 681px) and (max-width: 1024px) {
  .counters-grid { grid-template-columns: repeat(3, 1fr); }
}


/* =============================================
   CUSTOM BUTTERFLY CURSOR
   ============================================= */
#butterfly-container { 
    position: fixed; /* Changed to fixed to stay in viewport */
    top: 0;
    left: 0;
    width: 60px; /* Slightly smaller for better UX */
    pointer-events: none; 
    z-index: 10000;
    will-change: transform;
    display: none; /* Hidden by default, shown via JS on desktop */
}

#butterfly-container img {
    width: 100%;
    animation: flap 0.3s infinite ease-in-out alternate;
}

@keyframes flap {
    from { transform: scaleX(1); }
    to { transform: scaleX(0.5); }
}

/* Hide the default cursor on desktop only */
@media (min-width: 1025px) {
    body {
        cursor: none;
    }
    a, button, .nav-link, .btn-primary, .btn-ghost {
        cursor: none;
    }
    #butterfly-container {
        display: block;
    }
}


/* === BRAND SCROLLER REDESIGN === */
.brand-scroller {
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    background: transparent;
}

.scroller-container {
    max-width: 100%;
    position: relative;
    display: flex;
    /* This creates the elegant edge-fade effect */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.scroller-track {
    display: flex;
    width: max-content;
    flex-wrap: nowrap;
    animation: marquee-linear 40s linear infinite;
    gap: 100px; /* Spacing between logos */
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    height: 80px; /* Fixed height for consistency */
    width: auto;
    filter: grayscale(1) brightness(1.8); /* Matches luxury dark theme */
    opacity: 0.5;
    transition: all 0.4s var(--ease-out);
}

.brand-item:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

/* THE ANIMATION: Smooth constant motion */
/*@keyframes marquee-linear {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 50px)); } 
}*/

/* === MOBILE & TABLET OPTIMIZATION === */
/*@media (max-width: 1024px) {
    .brand-scroller { padding: 60px 0; }
    .scroller-track { gap: 60px; animation-duration: 10s; }
    .brand-item img { height: 60px; }
}

@media (max-width: 768px) {
    .brand-scroller { padding: 40px 0; }
    .scroller-track { gap: 40px; animation-duration: 10s; }
    .brand-item img { height: 52px; }
    .scroller-container {
        mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    }
}*/



.brand-scroller {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.scroller-container {
    display: flex;
    width: 100%;
    position: relative;
}

.scroller-track {
    display: flex;
    width: max-content;
    gap: 80px;     
    animation: marquee-linear 24s linear infinite; 
}

.scroller-track:hover {
    animation-play-state: paused;
}

.brand-item {
    flex-shrink: 0;
}

.brand-item img {
    height: 90px; /* Desktop logo size */
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.6;
    transition: 0.3s var(--ease-out);
}

.brand-item:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}


.scroller-fade {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.scroller-fade.left {
    left: 0;
    background: linear-gradient(to right, var(--primary) 0%, transparent 100%);
}
.scroller-fade.right {
    right: 0;
    background: linear-gradient(to left, var(--primary) 0%, transparent 100%);
}

@keyframes marquee-linear {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); } 
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .scroller-track {
        gap: 40px;
        animation-duration: 24s; 
    }
    .brand-item img {
        height: 35px;
    }
    .scroller-fade {
        width: 60px;
    }
}
