/* =========================================
   FRACTION FRAMES — styles.css
   ========================================= */

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-2: #161616;
  --teal: #E63946;
  --teal-glow: rgba(230, 57, 70, 0.25);
  --teal-glow-soft: rgba(230, 57, 70, 0.08);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-dim: rgba(255, 255, 255, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --section-pad: 100px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
h1, h2, h3, h4 { line-height: 1.15; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; }
h3 { font-size: 18px; font-weight: 700; }

/* ---- UTILITY ---- */
.teal { color: var(--teal); }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--teal); margin-bottom: 12px; }
.section-sub { color: var(--text-muted); margin-top: 12px; font-size: 15px; }

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  height: 64px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  transition: background 0.3s;
}
.nav-logo { font-size: 18px; font-weight: 800; }
.logo-fraction { color: var(--text); }
.logo-red { color: var(--teal); }
.logo-frames { color: var(--text); }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { font-size: 14px; color: var(--text-muted); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, #B91C1C, #E63946);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 100px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Background crowd image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('FF - website Assets copy/website_Hero_bg.jpg');
  background-size: cover;
  background-position: center top;
  background-color: #1a1a1a; /* fallback while image loads */
}

/* Orange figure - rises on scroll */
.hero-figure {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(350px);
  opacity: 0;
  z-index: 2;
  height: 82%;
  object-fit: contain;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Dark gradient at bottom for text readability */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(10, 10, 10, 0.6) 65%,
    rgba(10, 10, 10, 0.92) 100%
  );
  z-index: 3;
}

/* Hero text — bottom left */
.hero-text {
  position: absolute;
  bottom: 10%;
  left: 6%;
  z-index: 4;
  transform: translateX(-80px);
  opacity: 0;
  will-change: transform, opacity;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 8px;
}
.hero-headline {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #B91C1C, #E63946);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
}
.hero-cta:hover { opacity: 0.88; transform: translateY(-2px); }

/* =========================================
   BRANDS MARQUEE
   ========================================= */
.brands {
  padding: 72px 40px;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
}
.brands-title { font-size: clamp(22px, 3vw, 36px); font-weight: 700; margin-bottom: 40px; }
.marquee-wrapper {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.marquee-wrapper + .marquee-wrapper { margin-top: 24px; }
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track.reverse {
  animation-name: marquee-reverse;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 80px;
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  margin-right: 16px;
  flex-shrink: 0;
  background: #ffffff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.marquee-item:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.marquee-item img {
  max-height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: none;
}


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

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

/* =========================================
   SERVICES ACCORDION
   ========================================= */
.services {
  padding: var(--section-pad) 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.services h2 { margin-bottom: 8px; }
.accordion { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }

.accordion-item {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.2s;
}
.accordion-item.open { border-color: rgba(230, 57, 70, 0.3); }
.accordion-item:hover { border-color: var(--border-hover); }

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  color: var(--text);
  transition: background 0.2s;
}
.accordion-header:hover { background: var(--bg-card-2); }

.accordion-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.smm-bg,
.web-bg,
.perf-bg,
.inf-bg,
.vid-bg { background: linear-gradient(135deg, #B91C1C, #E63946); }

.accordion-header-text { flex: 1; }
.accordion-header-text h3 { font-size: 17px; margin-bottom: 2px; }
.accordion-header-text p  { font-size: 13px; color: var(--text-muted); }

.accordion-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.accordion-item.open .accordion-chevron { transform: rotate(180deg); color: var(--teal); }

.accordion-body {
  display: none;
  padding: 0 24px 28px;
  border-top: 0.5px solid var(--border);
}
.accordion-item.open .accordion-body { display: block; }
.body-section-label { font-size: 11px; letter-spacing: 0.15em; color: var(--teal); font-weight: 600; margin: 20px 0 16px; }

/* Phone mockups row */
.phone-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.phone-row::-webkit-scrollbar { height: 4px; }
.phone-row::-webkit-scrollbar-track { background: transparent; }
.phone-row::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 2px; }

.phone-slot {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
}
.phone-slot:hover { transform: scale(1.03); }

.phone-img {
  width: 200px;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  transition: box-shadow 0.4s;
}
.phone-slot:hover .phone-img {
  box-shadow: 0 14px 48px rgba(0,0,0,0.7);
}

/* Placeholder when image fails */
.img-placeholder {
  height: 360px;
  background: var(--bg-card-2);
  border: 0.5px dashed var(--border-hover);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 12px;
}

.phone-caption { font-size: 12px; color: var(--teal); font-weight: 600; }

/* ---- Website mockup CSS previews ---- */
.mockup-site {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.vg-site   { background: linear-gradient(160deg, #08122A 0%, #0F2248 100%); }
.se-site   { background: linear-gradient(160deg, #080C14 0%, #0E1828 100%); }
.ut-site   { background: linear-gradient(160deg, #0A0A0A 0%, #1A0000 100%); }
.fs-site   { background: linear-gradient(160deg, #080808 0%, #180208 100%); }

.mst-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  height: 24px;
  background: rgba(255,255,255,0.04);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.mst-logo-block { width: 44px; height: 7px; border-radius: 2px; }
.vg-site .mst-logo-block { background: #D4A017; }
.se-site .mst-logo-block { background: #7B9CCA; }
.ut-site .mst-logo-block { background: #ffffff; }
.fs-site .mst-logo-block { background: #E63946; }

.mst-nav-links { display: flex; gap: 8px; }
.mst-nav-links span { display: block; width: 22px; height: 3px; background: rgba(255,255,255,0.25); border-radius: 2px; }

.mst-hero { padding: 16px 14px 12px; }
.mst-headline { height: 10px; width: 78%; background: rgba(255,255,255,0.85); border-radius: 4px; margin-bottom: 8px; }
.mst-headline.accent { background: none; }
.vg-site .mst-headline { background: rgba(212,160,23,0.9); width: 60%; }
.ut-site .mst-headline { background: rgba(255,255,255,0.9); width: 50%; }
.fs-site .mst-headline { background: rgba(230,57,70,0.9); width: 65%; }
.se-site .mst-headline { background: rgba(123,156,202,0.9); width: 70%; }

.mst-subline { height: 5px; width: 62%; background: rgba(255,255,255,0.32); border-radius: 3px; margin-bottom: 5px; }
.mst-subline.short { width: 44%; background: rgba(255,255,255,0.2); }
.mst-cta { height: 16px; width: 72px; border-radius: 6px; margin-top: 10px; }
.vg-site .mst-cta { background: linear-gradient(90deg,#B8860B,#D4A017); }
.se-site .mst-cta { background: linear-gradient(90deg,#2A4A8A,#4A6CF7); }
.ut-site .mst-cta { background: linear-gradient(90deg,#B91C1C,#E63946); }
.fs-site .mst-cta { background: linear-gradient(90deg,#B91C1C,#E63946); }

.mst-cards { display: flex; gap: 8px; padding: 0 14px; }
.mst-card {
  flex: 1; height: 46px;
  border-radius: 5px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
}
.vg-site .mst-card { background: rgba(212,160,23,0.05); border-color: rgba(212,160,23,0.15); }
.se-site .mst-card { background: rgba(74,108,247,0.05); border-color: rgba(74,108,247,0.12); }
.ut-site .mst-card { background: rgba(255,255,255,0.03); }
.fs-site .mst-card { background: rgba(230,57,70,0.05); border-color: rgba(230,57,70,0.12); }

/* Instagram reel embeds
   Calibrated live against the real embed at 300px width: header (account
   name/s + View profile) renders ~74px tall, the video itself is ~355px
   tall right after it, and the footer (View more on Instagram, like/
   comment icons, likes, comment box) starts right after that. The iframe
   is shifted up by exactly the header height so the window shows the full
   video with zero header and zero footer. */
.reel-embed {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 0.5px solid var(--border);
  background: var(--bg-card-2);
  height: 355px;
}
.reel-embed iframe {
  display: block;
  width: 100%;
  height: 900px;
  margin-top: -74px; /* shifts past the ~74px header, calibrated live on the actual embed */
  border: none;
}

/* Website grid */
.website-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.website-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.website-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.browser-bar {
  background: #1c1c1c;
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.browser-screen {
  height: 200px;
  background-size: cover;
  background-position: top center;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  position: relative;
  overflow: hidden;
  transition: background-position 0.5s;
}
.browser-screen:hover { background-position: center center; }
.placeholder-olive  { background-color: #1e2a0e; }
.placeholder-forest { background-color: #0e2a0e; }

.screen-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.website-card-footer {
  background: #1c1c1c;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--border);
}
.niche-label { font-size: 10px; letter-spacing: 0.12em; font-weight: 600; color: var(--text-muted); }
.live-link { font-size: 13px; font-weight: 600; color: var(--teal); transition: opacity 0.2s; }
.live-link:hover { opacity: 0.75; }

/* Performance taglines */
.perf-taglines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 24px;
}
.perf-tag-card {
  background: linear-gradient(135deg, rgba(185,28,28,0.07), rgba(230,57,70,0.03));
  border: 0.5px solid rgba(230,57,70,0.22);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.perf-tag-num {
  display: block;
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, #B91C1C, #E63946);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.perf-tag-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Performance stats (legacy — replaced by taglines) */
.perf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.stat-card {
  background: var(--bg-card-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
}
.stat-label { display: block; font-size: 10px; letter-spacing: 0.15em; color: var(--text-muted); font-weight: 600; margin-bottom: 6px; }
.stat-number { display: block; font-size: 36px; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.stat-desc { display: block; font-size: 11px; color: var(--text-dim); }

.ads-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.ads-card {
  background: var(--bg-card-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.ads-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.ads-badge { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.ads-active { font-size: 11px; color: #4ade80; font-weight: 500; }
.ads-campaign { font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.ads-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ads-metric span { display: block; font-size: 11px; color: var(--text-muted); }
.ads-metric strong { font-size: 16px; font-weight: 700; }

/* Influencer carousel */
.reel-carousel-wrap { position: relative; margin-top: 24px; }
.influencer-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}
.influencer-grid::-webkit-scrollbar { display: none; }
.influencer-card {
  flex: 0 0 50%;
  padding: 0 8px;
  scroll-snap-align: start;
  box-sizing: border-box;
  text-align: center;
}
.reel-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(10,10,10,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.reel-nav-btn:hover { background: var(--teal); }
.reel-prev { left: -10px; }
.reel-next { right: -10px; }
.reel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.reel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.25s, width 0.25s;
}
.reel-dot.active { background: var(--teal); width: 22px; border-radius: 4px; }
.reel-engagement {
  display: flex; justify-content: center; gap: 16px;
  margin-top: 8px; padding: 6px 0;
}
.reel-engagement span {
  font-size: 12px; color: var(--text-muted);
  display: flex; align-items: center; gap: 4px;
}
.reel-engagement span b { color: var(--text); font-weight: 600; }
.creator-handle { font-size: 13px; font-weight: 600; margin: 6px 0 2px; }
.creator-views { font-size: 12px; color: var(--teal); }

/* Video row */
.video-row { display: flex; gap: 12px; margin-top: 20px; overflow-x: auto; }
.video-card { flex: 0 0 auto; width: 120px; text-align: center; }
.video-thumb {
  width: 120px;
  height: 213px;
  background: var(--bg-card-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}
.video-thumb:hover { border-color: var(--teal); }
.video-dur { font-size: 12px; color: var(--text-muted); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.testimonials h2 { text-align: center; margin-bottom: 48px; }
.testimonials .section-label { text-align: center; }

.testimonial-viewport { overflow: hidden; position: relative; }
.testimonial-track {
  display: flex;
  gap: 20px;
  padding: 0 40px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 420px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { color: var(--teal); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 20px; }
.t-author { display: flex; gap: 14px; align-items: center; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-glow);
  border: 1px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}
.t-author strong { font-size: 14px; display: block; }
.t-author span { font-size: 12px; color: var(--text-muted); }

.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testimonial-dots .dot-btn {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-hover);
  border: none;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.testimonial-dots .dot-btn.active { background: var(--teal); width: 24px; border-radius: 4px; }

/* Single video placeholder for testimonials (merged client clips) */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 40px auto 0;
  padding: 0 20px;
}
.video-slot {
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.video-slot:hover { border-color: var(--teal); transform: translateY(-4px); }
.video-play-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B91C1C, #E63946);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}
.video-slot-label { font-size: 13px; color: var(--text-dim); }

/* =========================================
   TEAM
   ========================================= */
.team {
  padding: var(--section-pad) 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  border-top: 0.5px solid var(--border);
}
.team h2 { margin-bottom: 32px; }
.team-btn {
  display: inline-block;
  border: 0.5px solid var(--border-hover);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
  margin-bottom: 32px;
}
.team-btn:hover { border-color: var(--teal); color: var(--teal); }
.team-btn.secondary { background: transparent; border-color: var(--border); color: var(--text-muted); margin-top: 24px; }

.team-expanded { display: none; }
.team-expanded.visible { display: block; animation: fadeIn 0.4s ease; }

.team-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.team-photo-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-photo-item figcaption {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}
.team-photo-slot {
  aspect-ratio: 4/3;
  background: var(--bg-card-2);
  border: 0.5px dashed var(--border-hover);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-dim);
  /* Replace with: <img src="images/team-X.jpg" class="team-photo" /> */
}
.team-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); display: block; }
.team-desc { max-width: 640px; margin: 0 auto; font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; }

/* =========================================
   FOUNDERS
   ========================================= */
.founders {
  padding: var(--section-pad) 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  border-top: 0.5px solid var(--border);
}
.founders h2 { margin-bottom: 48px; }
.founders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }

.founder-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.founder-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.08);
}
.founder-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
  display: block;
  margin: 0 auto 16px;
}
.founder-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--teal-glow);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 auto 16px;
}
.founder-card h3 { font-size: 17px; margin-bottom: 4px; }
.founder-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.founder-card p.founder-cred {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin: -8px 0 14px;
}
.founder-socials { display: flex; gap: 10px; justify-content: center; }
.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 0.5px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.social-icon:hover { border-color: var(--teal); color: var(--teal); }

/* =========================================
   WHY US
   ========================================= */
.why-us {
  padding: var(--section-pad) 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 0.5px solid var(--border);
}
.why-us h2 { margin-bottom: 8px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }

.why-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s;
  opacity: 0;
  transform: translateY(24px);
}
.why-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s; }
.why-card:hover { border-color: rgba(230, 57, 70, 0.25); transform: translateY(-4px); }
.why-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.why-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: var(--section-pad) 40px;
  max-width: 760px;
  margin: 0 auto;
  border-top: 0.5px solid var(--border);
}
.contact h2 { margin-bottom: 8px; }
.contact-form { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-dim); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--teal); }
.contact-form select option { background: #1a1a1a; }
.contact-form textarea { resize: vertical; min-height: 120px; }

.submit-btn {
  background: linear-gradient(135deg, #B91C1C, #E63946);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 4px;
}
.submit-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.submit-btn:active { transform: translateY(0); }

.form-success {
  display: none;
  background: rgba(230, 57, 70, 0.08);
  border: 0.5px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 15px;
  color: var(--teal);
  text-align: center;
}
.form-success.visible { display: block; animation: fadeIn 0.4s ease; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  border-top: 0.5px solid var(--border);
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.footer-tagline { font-size: 13px; color: var(--text-muted); }
.footer-socials { display: flex; gap: 20px; }
.footer-social-link { font-size: 13px; color: var(--text-muted); font-weight: 500; transition: color 0.2s; }
.footer-social-link:hover { color: var(--teal); }
.footer-copy { font-size: 12px; color: var(--text-dim); text-align: center; }

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

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .perf-stats { grid-template-columns: repeat(2, 1fr); }
  .influencer-card { flex: 0 0 80%; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .website-grid { grid-template-columns: 1fr; }
  .ads-row { grid-template-columns: 1fr; }
  .team-photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px; }

  .nav { padding: 0 20px; }
  .nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 20px; gap: 16px; border-bottom: 0.5px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-text { left: 5%; bottom: 8%; }
  .hero-headline { font-size: 30px; }

  .brands { padding: 48px 20px; }
  .services { padding: var(--section-pad) 20px; }
  .testimonials { padding: var(--section-pad) 0; }
  .testimonial-card { flex: 0 0 300px; }
  .team, .founders, .why-us, .contact { padding: var(--section-pad) 20px; }
  .footer { padding: 32px 20px; }

  .why-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; max-width: 300px; }
  .perf-stats { grid-template-columns: repeat(2, 1fr); }
  .perf-taglines { grid-template-columns: 1fr; }
  .influencer-card { flex: 0 0 92%; }
  .reel-nav-btn { display: none; } /* use swipe on mobile */
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
