/* ========================================================
   VIEWGRAM PRIVATE LIMITED — OFFICIAL BRAND DESIGN SYSTEM
   Signature Spectrum: Orange -> Coral -> Hot Pink -> Violet
   ======================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Palette */
  --brand-orange: #FF7A00;
  --brand-coral: #FF4D30;
  --brand-pink: #E6007A;
  --brand-magenta: #C21880;
  --brand-purple: #8A2BE2;
  --brand-violet: #6C1CE0;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #FF7A00 0%, #FF3D57 32%, #E6007A 68%, #7928CA 100%);
  --gradient-brand-h: linear-gradient(90deg, #FF7A00 0%, #FF3D57 32%, #E6007A 68%, #7928CA 100%);
  --gradient-brand-reverse: linear-gradient(90deg, #7928CA 0%, #E6007A 32%, #FF3D57 68%, #FF7A00 100%);
  
  --gradient-orange: linear-gradient(135deg, #FF9E00, #FF5500);
  --gradient-coral: linear-gradient(135deg, #FF5722, #FF1744);
  --gradient-pink: linear-gradient(135deg, #FF2A85, #C21880);
  --gradient-purple: linear-gradient(135deg, #9C27B0, #673AB7);
  --gradient-violet: linear-gradient(135deg, #7E57C2, #4A148C);

  /* Dark UI Backgrounds */
  --bg-black: #090A0E;
  --bg-dark: #0F1015;
  --bg-card: #14151C;
  --bg-card-hover: #191B24;
  --border: rgba(255, 255, 255, 0.08);
  --border-brand: rgba(230, 0, 122, 0.25);
  
  /* Text */
  --white: #FFFFFF;
  --off-white: #EEEEF2;
  --muted: #8E90A6;
  
  /* Accents */
  --whatsapp: #25D366;
  
  /* Glows */
  --glow-brand: 0 8px 32px rgba(230, 0, 122, 0.35), 0 0 15px rgba(255, 122, 0, 0.2);
  --glow-orange: 0 0 25px rgba(255, 122, 0, 0.35);
  --glow-coral: 0 0 25px rgba(255, 61, 87, 0.35);
  --glow-pink: 0 0 25px rgba(230, 0, 122, 0.35);
  --glow-purple: 0 0 25px rgba(121, 40, 202, 0.35);
  
  /* Typography & Layout */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Bebas Neue', 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--brand-pink); color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: 6.5rem 0; }
.dark-bg { background: var(--bg-dark); }

.gradient-text {
  background: var(--gradient-brand-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.highlight {
  background: var(--gradient-brand-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.highlight-gold {
  background: linear-gradient(90deg, #FF7A00, #FF3D57, #E6007A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gradient-brand-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--muted);
  max-width: 620px;
  font-size: 1.05rem;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ===== SCROLL REVEAL ===== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  background: var(--gradient-brand-h);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--glow-brand);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-brand-reverse);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: var(--radius-pill);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(230, 0, 122, 0.5), 0 0 20px rgba(255, 122, 0, 0.35);
}
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: var(--brand-pink);
  color: var(--white);
  box-shadow: 0 0 20px rgba(230, 0, 122, 0.3);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== TOP INFO BAR ===== */
.topbar {
  background: #06070a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.55rem 0;
}
.topbar-container {
  max-width: 1240px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.topbar-left a, .topbar-right a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--off-white);
  transition: color 0.2s;
}
.topbar-left a:hover, .topbar-right a:hover {
  color: var(--brand-orange);
}
.topbar-right {
  display: flex; align-items: center; gap: 1.25rem;
}
.whatsapp-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--whatsapp);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.9rem 0;
  transition: var(--transition);
}
#navbar.has-topbar {
  top: 36px;
}
#navbar.scrolled {
  top: 0 !important;
  background: rgba(9, 10, 14, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(230, 0, 122, 0.15);
  padding: 0.7rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.nav-container {
  max-width: 1240px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1; gap: 2px;
}
.nav-logo-img {
  height: 38px;
  max-width: 240px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.nav-logo-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 10px rgba(255, 122, 0, 0.4));
}
.logo-tagline {
  font-family: var(--font);
  font-size: 0.52rem;
  letter-spacing: 0.26em;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 2px;
}
.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0.95rem; border-radius: 50px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.nav-cta {
  background: var(--gradient-brand-h) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.4rem !important;
  margin-left: 0.5rem;
  box-shadow: 0 4px 18px rgba(230, 0, 122, 0.35);
}
.nav-cta:hover {
  box-shadow: 0 6px 24px rgba(230, 0, 122, 0.6) !important;
  transform: translateY(-1px);
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: radial-gradient(circle at 50% 20%, rgba(230, 0, 122, 0.08) 0%, rgba(121, 40, 202, 0.05) 35%, var(--bg-black) 70%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 4rem;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.hero-orb-1 { width: 550px; height: 550px; background: radial-gradient(circle, rgba(255, 122, 0, 0.15), transparent 70%); top: -100px; left: -100px; }
.hero-orb-2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(230, 0, 122, 0.15), transparent 70%); top: 10%; right: -150px; }
.hero-orb-3 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(121, 40, 202, 0.18), transparent 70%); bottom: -50px; left: 30%; }

.hero-content {
  position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 0 1.5rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(230, 0, 122, 0.35);
  padding: 0.45rem 1.25rem; border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
  box-shadow: 0 0 20px rgba(230, 0, 122, 0.15);
  animation: fadeInDown 0.8s ease 0.1s both;
}
.hero-title {
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-tagline-bar {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin: 1.25rem auto 1.75rem;
  max-width: 700px;
  animation: fadeInUp 0.8s ease 0.25s both;
}
.tagline-line-left {
  flex: 1; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-orange));
}
.tagline-text {
  font-size: 0.95rem; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.tagline-line-right {
  flex: 1; height: 2px;
  background: linear-gradient(90deg, var(--brand-purple), transparent);
}

.hero-sub {
  font-size: 1.15rem; color: var(--muted); max-width: 620px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* 4 Feature Columns from PPT */
.hero-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 2rem;
  text-align: center;
  animation: fadeInUp 0.8s ease 0.35s both;
}
.showcase-card {
  background: rgba(20, 21, 28, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.showcase-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.showcase-card.card-signage:hover { border-color: var(--brand-orange); box-shadow: var(--glow-orange); transform: translateY(-4px); }
.showcase-card.card-billboards:hover { border-color: var(--brand-coral); box-shadow: var(--glow-coral); transform: translateY(-4px); }
.showcase-card.card-ceilings:hover { border-color: var(--brand-pink); box-shadow: var(--glow-pink); transform: translateY(-4px); }
.showcase-card.card-interiors:hover { border-color: var(--brand-purple); box-shadow: var(--glow-purple); transform: translateY(-4px); }

.showcase-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
  display: inline-block;
  transition: transform 0.3s;
}
.showcase-card:hover .showcase-icon { transform: scale(1.15); }
.showcase-title {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.card-signage .showcase-title { color: var(--brand-orange); }
.card-billboards .showcase-title { color: var(--brand-coral); }
.card-ceilings .showcase-title { color: var(--brand-pink); }
.card-interiors .showcase-title { color: var(--brand-purple); }
.showcase-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Bottom Pill Banner from PPT */
.hero-bottom-banner {
  display: inline-flex; align-items: center; gap: 0.85rem;
  background: rgba(15, 16, 21, 0.85);
  border: 1.5px solid transparent;
  background-image: linear-gradient(rgba(15, 16, 21, 0.95), rgba(15, 16, 21, 0.95)), var(--gradient-brand-h);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: var(--radius-pill);
  padding: 0.85rem 2rem;
  margin: 1.5rem auto 2.5rem;
  box-shadow: 0 0 30px rgba(230, 0, 122, 0.2);
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hbb-rocket { font-size: 1.4rem; }
.hbb-bold {
  font-weight: 800; font-size: 0.92rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--gradient-brand-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hbb-sub {
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
}

.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.45s both;
}
.stat { padding: 0.5rem 1.8rem; text-align: center; }
.stat-num {
  display: block; font-size: 2.2rem; font-weight: 900; line-height: 1;
  background: var(--gradient-brand-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 42px; background: var(--border); }
.hero-actions { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.5s both; }

.hero-scroll-indicator {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.scroll-line { width: 2px; height: 35px; background: linear-gradient(to bottom, var(--brand-pink), transparent); animation: scrollPulse 2s ease infinite; }

/* ===== ABOUT ===== */
.about { background: var(--bg-black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-lead { font-size: 1.25rem; font-weight: 500; color: var(--off-white); margin-bottom: 1rem; line-height: 1.5; }
.about-body { color: var(--muted); margin-bottom: 2rem; font-size: 1rem; }
.about-pillars { display: flex; flex-direction: column; gap: 1.25rem; }
.pillar {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.pillar:nth-child(1) { border-left-color: var(--brand-orange); }
.pillar:nth-child(2) { border-left-color: var(--brand-pink); }
.pillar:nth-child(3) { border-left-color: var(--brand-purple); }
.pillar:hover { background: rgba(255, 255, 255, 0.04); transform: translateX(4px); }
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; }
.pillar strong { display: block; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.pillar p { color: var(--muted); font-size: 0.9rem; }

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.3rem;
  transition: var(--transition);
}
.about-card:hover { transform: translateY(-4px); border-color: rgba(230, 0, 122, 0.35); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.ac-big {
  grid-column: 1 / -1; padding: 2.2rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(230, 0, 122, 0.08), rgba(121, 40, 202, 0.08));
  border: 1px solid rgba(230, 0, 122, 0.3);
}
.ac-gold {
  background: linear-gradient(135deg, rgba(230, 0, 122, 0.1), rgba(121, 40, 202, 0.05));
  border-color: rgba(230, 0, 122, 0.25);
}
.ac-num {
  font-size: 2.6rem; font-weight: 900; line-height: 1;
  background: var(--gradient-brand-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ac-big .ac-num { font-size: 3.8rem; }
.ac-label { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.ac-sub { font-size: 0.8rem; color: var(--muted); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-brand-h);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 0, 122, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(230, 0, 122, 0.2);
}
.service-card:hover::after { opacity: 1; }

.service-num {
  font-family: var(--font-display); font-size: 3.2rem;
  background: var(--gradient-brand-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.4;
  line-height: 1; margin-bottom: 0.5rem; font-weight: 900;
}
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--white); }
.service-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-list { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.45rem; }
.service-list li { font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); display: flex; align-items: center; gap: 0.5rem; }
.service-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand-pink);
}
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-tags span {
  font-size: 0.7rem; padding: 0.3rem 0.7rem; border-radius: 50px;
  background: rgba(255, 255, 255, 0.05); color: var(--off-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== WHY VIEWGRAM ===== */
.why { background: var(--bg-black); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(255, 122, 0, 0.35);
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--bg-card), rgba(255, 122, 0, 0.05));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h4 { font-weight: 700; margin-bottom: 0.5rem; font-size: 1rem; color: var(--white); }
.why-card p { color: var(--muted); font-size: 0.88rem; }

/* ===== PROCESS ===== */
.process-steps { display: flex; align-items: flex-start; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  flex: 1; min-width: 150px; max-width: 200px;
  transition: var(--transition);
}
.process-step:hover {
  border-color: rgba(230, 0, 122, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), var(--glow-pink);
}
.step-num {
  font-family: var(--font-display); font-size: 2.6rem;
  background: var(--gradient-brand-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 0.75rem;
}
.step-content h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--white); }
.step-content p { font-size: 0.78rem; color: var(--muted); }
.process-arrow {
  font-size: 1.5rem;
  color: var(--brand-pink);
  padding-top: 2.2rem; flex-shrink: 0;
}
.process-footer { text-align: center; color: var(--muted); font-style: italic; font-size: 1rem; }

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--bg-black); }
.portfolio-tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.tab-btn:hover { color: var(--white); border-color: rgba(230, 0, 122, 0.3); }
.tab-btn.active {
  background: var(--gradient-brand-h);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(230, 0, 122, 0.35);
}
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.portfolio-item.hidden { display: none; }
.portfolio-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; cursor: pointer; border: 1px solid var(--border); }
.portfolio-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-img-wrap:hover img { transform: scale(1.06); }
.portfolio-img-wrap:hover { border-color: rgba(230, 0, 122, 0.4); box-shadow: 0 15px 40px rgba(0,0,0,0.5); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9, 10, 14, 0.95) 0%, rgba(9, 10, 14, 0.4) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.portfolio-img-wrap:hover .portfolio-overlay { opacity: 1; }
.po-tag {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--brand-orange); font-weight: 800; margin-bottom: 0.4rem;
}
.portfolio-overlay h4 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.portfolio-overlay p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.75); }

/* ===== CLIENTS ===== */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.25rem; margin-bottom: 4rem; }
.industry-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: var(--transition);
}
.industry-block:hover { border-color: rgba(230, 0, 122, 0.3); transform: translateY(-3px); }
.ind-header {
  font-weight: 800; font-size: 0.95rem; color: var(--white);
  margin-bottom: 0.875rem; padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--border);
}
.industry-block ul { display: flex; flex-direction: column; gap: 0.35rem; }
.industry-block li { font-size: 0.83rem; color: var(--muted); padding: 0.2rem 0; }

.lt-title { font-size: 1.6rem; font-weight: 800; text-align: center; margin-bottom: 2rem; color: var(--white); }
.lt-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.lt-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: var(--transition);
}
.lt-card:hover { transform: translateY(-4px); border-color: rgba(230, 0, 122, 0.35); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.lt-featured {
  border-color: rgba(230, 0, 122, 0.4);
  background: linear-gradient(135deg, var(--bg-card), rgba(230, 0, 122, 0.08));
  box-shadow: 0 0 30px rgba(230, 0, 122, 0.15);
}
.lt-duration {
  font-size: 2.8rem; font-weight: 900; line-height: 1; margin-bottom: 0.5rem;
  background: var(--gradient-brand-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lt-name { font-weight: 800; font-size: 1.15rem; margin-bottom: 0.25rem; color: var(--white); }
.lt-cat { font-size: 0.72rem; letter-spacing: 0.12em; color: var(--brand-pink); text-transform: uppercase; margin-bottom: 0.75rem; font-weight: 700; }
.lt-card p { color: var(--muted); font-size: 0.9rem; }

/* ===== TEAM ===== */
.team { background: var(--bg-black); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem 1.75rem; text-align: center; transition: var(--transition);
}
.team-card:hover {
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.team-avatar { font-size: 3rem; margin-bottom: 1rem; }
.team-card h4 { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; }
.team-card p { color: var(--muted); font-size: 0.88rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.ci-icon {
  font-size: 1.4rem; width: 48px; height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(230, 0, 122, 0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brand-pink); font-weight: 700; margin-bottom: 0.3rem; }
.ci-value { display: block; color: var(--off-white); font-size: 0.95rem; transition: color 0.2s; }
.ci-value:hover { color: var(--brand-orange); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--brand-pink);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(230, 0, 122, 0.15);
}
.form-group select option { background: var(--bg-card); color: var(--white); }
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: #050608; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding: 4.5rem 0 3rem; }
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 0.75rem; }
.footer-logo-img { height: 44px; width: auto; object-fit: contain; }
.footer-pvt { font-family: var(--font); font-size: 0.52rem; letter-spacing: 0.25em; color: var(--muted); font-weight: 500; margin-top: 0.1rem; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.25rem; }
.footer-est { font-size: 0.78rem !important; color: var(--muted) !important; }
.footer h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand-pink); margin-bottom: 1.1rem; font-weight: 700; }
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links li, .footer-services li { font-size: 0.9rem; }
.footer-links a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-orange); }
.footer-services li { color: rgba(255,255,255,0.45); }
.footer-contact p { margin-bottom: 0.45rem; }
.footer-contact a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--brand-orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-showcase { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  #navbar { position: fixed; top: 0 !important; }
  .nav-links {
    display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(9, 10, 14, 0.98); backdrop-filter: blur(20px);
    padding: 1.5rem; border-bottom: 1px solid rgba(230, 0, 122, 0.2); gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding-top: 6rem; }
  .hero-title { font-size: clamp(2.6rem, 10vw, 4.2rem); }
  .hero-showcase { grid-template-columns: 1fr; }
  .hero-bottom-banner { flex-direction: column; text-align: center; border-radius: var(--radius); padding: 1rem 1.25rem; gap: 0.4rem; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); padding: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { justify-content: center; }
  .stat { padding: 0.5rem 1rem; }
}
@media (max-width: 480px) {
  .section-padding { padding: 4.5rem 0; }
  .about-cards { grid-template-columns: 1fr; }
  .ac-big { grid-column: auto; }
}

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.96); align-items: center; justify-content: center; padding: 1rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.75rem; font-size: 2.2rem; color: var(--white);
  cursor: pointer; background: none; border: none; line-height: 1; padding: 0.5rem; transition: color 0.2s;
}
.lightbox-close:hover { color: var(--brand-pink); }
