/* ============================================
   FEEDWORTHY – Main Stylesheet
   Instagram/TikTok inspired white mode design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@900&family=Big+Shoulders+Text:wght@700;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* === CSS Custom Properties === */
:root {
  --white: #FFFFFF;
  --bg: #FAFAFA;
  --card: #FFFFFF;
  --text: #0A0A0A;
  --text-secondary: #737373;
  --text-tertiary: #AAAAAA;
  --border: #DBDBDB;
  --light: #F5F5F5;
  --gradient: linear-gradient(135deg, #ff5e1a 0%, #ffb820 100%);
  --gradient-text: linear-gradient(90deg, #ff5e1a 0%, #ffb820 100%);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --nav-h: 64px;
  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul { list-style: none; }

/* === Utility === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219,219,219,0.6);
  transition: background var(--ease), box-shadow var(--ease);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav__logo-badge {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 2.5px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #111;
  line-height: 1;
  transition: all var(--ease);
}

.nav__logo:hover .nav__logo-badge {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}

.nav__logo-wordmark {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: #111;
  line-height: 1;
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--ease);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width var(--ease);
}

.nav__links a:hover, .nav__links a.active {
  color: var(--text);
}

.nav__links a:hover::after, .nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: var(--text);
  color: var(--white);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.nav__cta:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: color var(--ease);
}

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

.nav__mobile .nav__cta {
  font-size: 16px;
  padding: 14px 36px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient placeholder when no video */
.hero__video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a0533 40%, #2d0a3e 70%, #0A0A0A 100%);
  animation: heroShift 8s ease-in-out infinite alternate;
}

@keyframes heroShift {
  0% { filter: hue-rotate(0deg) brightness(0.9); }
  50% { filter: hue-rotate(20deg) brightness(1.05); }
  100% { filter: hue-rotate(-10deg) brightness(0.95); }
}

/* Floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: float linear infinite;
}

@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E1306C;
  animation: pulseDot 1.5s ease-in-out infinite;
}

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

.hero__title {
  font-size: clamp(52px, 12vw, 120px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__title span {
  display: block;
  background: linear-gradient(135deg, #ffffff 30%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(15px, 2.5vw, 19px);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: white;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.5);
}

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

/* ============================================
   CLIENTS TICKER / SLIDER
   ============================================ */
.clients-section {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.clients-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.clients-section__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
}

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

/* fade edges */
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.ticker {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker:hover { animation-play-state: paused; }

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

.ticker__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  cursor: pointer;
}

.ticker__logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 8px;
}

.ticker__logo::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 21px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--ease);
  z-index: -1;
}

.ticker__item:hover .ticker__logo {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ticker__item:hover .ticker__logo::before {
  opacity: 1;
}

.ticker__item:hover .ticker__logo {
  background: white;
}

.ticker__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.work-card__thumb-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  z-index: 0;
}

.ticker__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--ease);
  white-space: nowrap;
}

.ticker__item:hover .ticker__name {
  color: var(--text);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 96px 0;
  background: var(--bg);
}

.stats-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.stats-section__left h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.stats-section__left p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: var(--text);
  color: white;
  font-weight: 700;
  font-size: 14px;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  border-radius: 0 0 3px 3px;
  transform: scaleX(0);
  transition: transform var(--ease);
  transform-origin: left;
}

.stat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card__icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.stat-card__value {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Live indicator */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(225,48,108,0.08);
  border: 1px solid rgba(225,48,108,0.2);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #C13584;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.live-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E1306C;
  animation: pulseDot 1.5s ease-in-out infinite;
}

/* ============================================
   WORK PREVIEW / CTA SECTION
   ============================================ */
.work-preview {
  padding: 96px 0;
  background: var(--white);
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all var(--ease);
  cursor: pointer;
  display: block;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.work-card__thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
  overflow: hidden;
}

.work-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  transition: background var(--ease);
}

.work-card:hover .work-card__thumb::after {
  background: rgba(0,0,0,0);
}

.work-card__play {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform var(--ease), box-shadow var(--ease);
}

.work-card__play svg {
  width: 18px;
  height: 18px;
  fill: var(--text);
  margin-left: 2px;
}

.work-card:hover .work-card__play {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.work-card__body {
  padding: 20px;
}

.work-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.work-card__category {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.work-card__stats {
  display: flex;
  gap: 16px;
}

.work-card__stat {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.work-card__stat svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
}

/* ============================================
   CLIENTS PAGE (work.html)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

.clients-list {
  padding: 64px 0 96px;
}

.clients-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.client-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all var(--ease);
  display: block;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.client-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.client-card__logo {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
  padding: 4px;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}

.client-card__info h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}

.client-card__info span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.client-card__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.client-card__metric {
  text-align: center;
}

.client-card__metric-val {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.client-card__metric-lbl {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.client-card__arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.client-card__arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: transform var(--ease);
}

.client-card:hover .client-card__arrow svg {
  transform: translateX(4px);
}

/* ============================================
   CLIENT PAGE
   ============================================ */
.client-hero {
  padding: calc(var(--nav-h) + 40px) 0 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.client-hero__inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: start;
}

.client-hero__left { display: flex; flex-direction: column; }

.client-hero__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

/* ─── Testimonial Mini (inline in hero) ─── */
.testimonial-mini {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  position: relative;
  border-left: 3px solid #ff5e1a;
}

.testimonial-mini__stars {
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.testimonial-mini__text {
  font-size: 13px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-mini__author {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ─── Hero Stats Grid (right column) ─── */
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  transition: all var(--ease);
}

.hero-stat:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}

.hero-stat__icon { font-size: 16px; margin-bottom: 4px; }

.hero-stat__val {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 3px;
}

.hero-stat__lbl {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Client Card Mini Testimonial (work.html) ─── */
.client-card__testimonial {
  padding: 12px 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  border-left: 3px solid #ff5e1a;
}

.client-card__testimonial-text {
  font-size: 12px;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.client-card__testimonial-author {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}

.client-hero__logo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  flex-shrink: 0;
  padding: 8px;
  line-height: 1.2;
}

.client-hero__logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 24px;
  flex-shrink: 0;
}

.client-hero__info {
  flex: 1;
}

.client-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
  transition: color var(--ease);
}

.client-hero__back:hover { color: var(--text); }
.client-hero__back svg { width: 16px; height: 16px; stroke: currentColor; }

.client-hero__name {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.client-hero__category {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.client-hero__social-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.social-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: var(--bg);
  border: 1px solid var(--border);
}

.social-stat__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-stat__icon--ig {
  background: linear-gradient(135deg, #405DE6, #C13584, #F77737);
}

.social-stat__icon--tt {
  background: #000000;
}

.social-stat__icon svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.social-stat__info {
  display: flex;
  flex-direction: column;
}

.social-stat__val {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.social-stat__lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Testimonial */
.testimonial-section {
  padding: 64px 0;
  background: var(--bg);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card__quote {
  font-size: 56px;
  line-height: 0.6;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testimonial-card__text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 28px;
  font-weight: 400;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-card__author-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.testimonial-card__author-info span {
  font-size: 13px;
  color: var(--text-secondary);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars span {
  font-size: 18px;
}

/* Client engagement stats */
.engagement-section {
  padding: 48px 0;
  background: var(--white);
}

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

.engagement-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all var(--ease);
}

.engagement-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.engagement-card__icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.engagement-card__val {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.engagement-card__lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Video grid on client pages */
.videos-section {
  padding: 64px 0 96px;
  background: var(--bg);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.video-embed-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--ease);
}

.video-embed-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.video-embed-card__platform {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
}

.platform-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.platform-dot--ig { background: linear-gradient(135deg, #C13584, #F77737); }
.platform-dot--tt { background: #000; }

.video-embed-card__embed {
  width: 100%;
  min-height: 420px;
  display: block;
  background: var(--bg);
}

.video-embed-card__embed iframe {
  width: 100%;
  min-height: 420px;
  border: none;
  display: block;
}

/* Placeholder for video embeds */
.video-placeholder {
  aspect-ratio: 9/16;
  max-height: 480px;
  background: linear-gradient(135deg, #1a0533, #2d0a3e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64,93,230,0.3), rgba(193,53,132,0.3), rgba(247,119,55,0.3));
  animation: shimmer 3s ease-in-out infinite alternate;
}

@keyframes shimmer {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.video-placeholder__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.video-placeholder__play svg {
  width: 22px;
  height: 22px;
  fill: white;
  margin-left: 3px;
}

.video-placeholder__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  z-index: 1;
}

.video-embed-card__meta {
  padding: 16px;
}

.video-meta-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.video-meta-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.video-meta-stat svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.video-meta-stat--likes svg {
  fill: #E1306C;
  stroke: none;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 96px 0;
  background: var(--text);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.08;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-section .btn-primary {
  font-size: 15px;
  padding: 16px 36px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__brand-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.footer__brand-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 240px;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--ease);
}

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

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}

.footer__social-link:hover {
  background: var(--text);
  border-color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text);
  transition: fill var(--ease);
}

.footer__social-link:hover svg {
  fill: white;
}

.footer__social-link--whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer__email-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--gradient);
  color: white;
  font-size: 13px;
  font-weight: 700;
  transition: opacity var(--ease), transform var(--ease);
}

.footer__email-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Instagram button in footer bottom */
.footer__bottom-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__ig-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #405DE6, #C13584, #F77737);
  color: white;
  font-size: 13px;
  font-weight: 700;
  transition: opacity var(--ease), transform var(--ease);
}

.footer__ig-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.footer__ig-cta svg,
.footer__email-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .stats-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .client-hero__inner { grid-template-columns: 1fr; }
  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

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

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .hero__actions { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto; }
  .btn-primary, .btn-secondary { justify-content: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card__value { font-size: 28px; }

  .work-grid { grid-template-columns: 1fr; }
  .clients-list-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }

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

  .client-hero__inner { grid-template-columns: 1fr; gap: 20px; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .client-hero__head { flex-wrap: wrap; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .testimonial-card { padding: 28px 20px; }
  .testimonial-card__text { font-size: 16px; }

  .cta-section { padding: 64px 0; }

  .page-hero { padding: calc(var(--nav-h) + 40px) 0 40px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr 1fr; }
  .ticker__logo { width: 64px; height: 64px; border-radius: 16px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__badge { animation: fadeIn 0.6s ease both; animation-delay: 0.2s; opacity: 0; }
.hero__title { animation: fadeIn 0.7s ease both; animation-delay: 0.4s; opacity: 0; }
.hero__subtitle { animation: fadeIn 0.7s ease both; animation-delay: 0.6s; opacity: 0; }
.hero__actions { animation: fadeIn 0.7s ease both; animation-delay: 0.8s; opacity: 0; }

/* ============================================
   CTA BUTTONS ROW
   ============================================ */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

/* ─── Instagram CTA Button ─── */
.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #405DE6, #C13584, #F77737);
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193,53,132,0.45);
}
.btn-ig svg {
  width: 18px;
  height: 18px;
  fill: white;
  flex-shrink: 0;
}

/* ─── Video card post stats (Views + Date) ─── */
.video-meta-stat strong {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 480px) {
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-ig { justify-content: center; }
}
