:root {
  --bg: #050506;
  --bg-2: #0a0a0d;
  --panel: rgba(255,255,255,0.05);
  --panel-solid: rgba(12,12,15,0.92);
  --text: #f4f4f6;
  --muted: rgba(255,255,255,0.68);
  --border: rgba(255,255,255,0.1);
  --soft: rgba(255,255,255,0.08);
  --accent: #c4003b;
  --accent-2: #ff4b7f;
  --shadow: 0 30px 80px rgba(0,0,0,0.28);
  --whatsapp: #25D366;
}

body.light {
  --bg: #f4f1ec;
  --bg-2: #ffffff;
  --panel: rgba(255,255,255,0.72);
  --panel-solid: rgba(255,255,255,0.95);
  --text: #101014;
  --muted: rgba(0,0,0,0.6);
  --border: rgba(0,0,0,0.09);
  --soft: rgba(0,0,0,0.05);
  --shadow: 0 30px 80px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
.container { width: min(1200px, calc(100% - 32px)); margin-inline: auto; }
.glass {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.section { padding: 96px 0; position: relative; }
.section-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--accent-2);
  font-weight: 700;
}
.section-heading { margin-bottom: 28px; }
.section-heading h2, .showcase-copy h2, .contact-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
.section-lead, .showcase-copy p, .contact-panel p { color: var(--muted); line-height: 1.8; }

.loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: #ffffff;
  transition: opacity .7s ease, visibility .7s ease;
  overflow: hidden;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; }
.loading-flash {
  position: absolute; inset: auto;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .65;
  animation: loadingFloat 4.5s ease-in-out infinite;
}
.loading-flash-1 { width: 320px; height: 320px; background: rgba(196,0,59,.14); left: 8%; top: 10%; }
.loading-flash-2 { width: 280px; height: 280px; background: rgba(0,0,0,.07); right: 10%; bottom: 12%; animation-delay: -1.5s; }
.loading-inner { text-align: center; width: min(420px, 90vw); position: relative; z-index: 2; }
.loading-kicker { font-size: 12px; font-weight: 800; letter-spacing: .32em; color: rgba(0,0,0,.52); margin-bottom: 18px; }
.loading-logo { width: 280px; margin: 0 auto 22px; animation: logoPop 1.2s ease both; }
.loading-bar { height: 4px; border-radius: 999px; overflow: hidden; background: rgba(0,0,0,.08); }
.loading-bar span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); animation: loadbar 2.15s cubic-bezier(.2,.9,.2,1) forwards; }
.loading-inner p { color: rgba(0,0,0,.58); margin-top: 14px; }
@keyframes loadbar { to { width: 100%; } }
@keyframes loadingFloat { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(20px,-18px,0); } }
@keyframes logoPop { 0% { opacity: 0; transform: translateY(24px) scale(.94);} 100% { opacity: 1; transform: translateY(0) scale(1);} }

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 1200; transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2);
}
.cursor-ring {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); transition: width .2s, height .2s, border-color .2s;
}
body.light .cursor-ring { border-color: rgba(0,0,0,0.22); }
@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

.bg-orb {
  position: fixed; z-index: -2; border-radius: 50%; filter: blur(80px); opacity: .9;
  animation: drift 14s ease-in-out infinite;
}
.orb-1 { width: 340px; height: 340px; left: -100px; top: 8%; background: rgba(196,0,59,0.23); }
.orb-2 { width: 390px; height: 390px; right: -130px; bottom: 4%; background: rgba(255,255,255,0.06); animation-duration: 18s; }
.orb-3 { width: 220px; height: 220px; left: 42%; top: 36%; background: rgba(255,75,127,0.08); animation-duration: 11s; }
body.light .orb-2 { background: rgba(196,0,59,0.12); }
body.light .orb-3 { background: rgba(196,0,59,0.08); }
.bg-grid {
  position: fixed; inset: 0; z-index: -3; opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}
body.light .bg-grid {
  background-image: linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
}
@keyframes drift {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-24px) translateX(36px); }
}

.site-header { position: sticky; top: 0; z-index: 1000; padding: 16px 0; }
.navbar {
  min-height: 76px; border-radius: 24px;
  display: flex; align-items: center; justify-content: space-between; padding: 10px 18px;
}
.brand img { height: 58px; width: auto; max-width: 180px; object-fit: contain; transition: transform .3s ease, filter .3s ease; }
.brand:hover img { transform: scale(1.04); }
body:not(.light) .brand .logo-light{ filter: drop-shadow(0 10px 22px rgba(255,75,127,.16)); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--muted); font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.theme-toggle {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border); background: var(--panel-solid); color: var(--text);
}
.nav-toggle {
  display: none; background: transparent; border: 0; width: 46px; height: 46px; position: relative;
}
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--text); border-radius: 5px;
}
.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 27px; }

.hero {
  display: grid; grid-template-columns: 1.04fr .96fr; gap: 28px; align-items: center; min-height: calc(100vh - 120px);
  padding: 24px 0 48px;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--border); border-radius: 999px; background: var(--panel); font-size: 12px; font-weight: 700; }
.eyebrow span { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); box-shadow: 0 0 18px rgba(255,75,127,.8); }
.hero h1 { margin: 18px 0 18px; font-size: clamp(3.4rem, 8vw, 6.7rem); line-height: .9; letter-spacing: -.07em; }
.hero h1 em { font-style: normal; color: var(--accent-2); }
.hero-copy > p { max-width: 680px; font-size: 1.06rem; color: var(--muted); line-height: 1.9; }
.hero-actions { display: flex; gap: 14px; margin: 28px 0 30px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 18px; font-weight: 700;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.btn:hover { transform: translateY(-4px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; box-shadow: 0 25px 60px rgba(196,0,59,0.35); }
.btn-secondary { border: 1px solid var(--border); background: var(--panel); }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fb95b, var(--whatsapp));
  color: #fff;
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.35);
  border: 1px solid rgba(255,255,255,0.2);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}
.whatsapp-icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.18);
  font-size: 16px; font-weight: 900;
}
.whatsapp-text { font-weight: 800; letter-spacing: .02em; }
.btn-whatsapp {
  background: linear-gradient(135deg, #1fb95b, var(--whatsapp));
  color: white;
  box-shadow: 0 22px 55px rgba(37, 211, 102, 0.28);
}
@keyframes whatsappPulse {
  0%,100% { transform: translateY(0) scale(1); box-shadow: 0 20px 50px rgba(37, 211, 102, 0.35); }
  50% { transform: translateY(-4px) scale(1.02); box-shadow: 0 26px 65px rgba(37, 211, 102, 0.5); }
}
.pulse-card { animation: cardBreath 5.6s ease-in-out infinite; }
@keyframes cardBreath {
  0%,100% { box-shadow: var(--shadow); }
  50% { box-shadow: 0 34px 90px rgba(0,0,0,0.34), 0 0 0 1px rgba(255,255,255,0.02) inset; }
}
.hero-copy, .hero-visual, .service-card, .brand-card, .influencer-card, .showcase-panel, .contact-panel {
  will-change: transform, opacity;
}
.section-heading h2, .hero h1, .showcase-copy h2, .contact-panel h2 {
  text-wrap: balance;
}
.hero h1 em, .gradient-text { position: relative; }
.hero h1 em::after, .gradient-text::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 14px;
  background: linear-gradient(90deg, rgba(196,0,59,.0), rgba(255,75,127,.18), rgba(196,0,59,.0));
  filter: blur(8px);
}
.reveal { opacity: 0; transform: translateY(34px) scale(.98); transition: opacity .95s cubic-bezier(.2,.8,.2,1), transform .95s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.brand-card img, .influencer-card img, .hero-logo { transition: transform .6s ease; }
.brand-card:hover img, .influencer-card:hover img, .hero-card-main:hover .hero-logo { transform: scale(1.05); }
@media (max-width: 900px) {
  .whatsapp-float { right: 14px; bottom: 14px; min-height: 54px; padding: 0 14px; }
  .whatsapp-text { display: none; }
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat { border-radius: 22px; padding: 18px; }
.stat strong { display: block; font-size: 1.8rem; color: var(--accent-2); margin-bottom: 6px; }
.stat span { color: var(--muted); font-size: .92rem; line-height: 1.5; }

.hero-visual { position: relative; min-height: 680px; }
.hero-card { position: absolute; border-radius: 32px; overflow: hidden; }
.hero-card-main { inset: 0 130px 140px 0; padding: 28px; background: var(--panel-solid); }
.hero-card-side { top: 42px; right: 0; width: 240px; height: 330px; padding: 18px; background: var(--panel-solid); }
.hero-card-bottom { right: 30px; bottom: 0; left: 110px; min-height: 120px; padding: 18px 20px; display: flex; align-items: center; gap: 16px; background: var(--panel-solid); }
.card-topline, .mini-label { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.hero-logo { width: 260px; max-width: 80%; margin: 50px 0 24px; }
.hero-card-main h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: .94; letter-spacing: -.05em; }
.gradient-text { background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.card-bars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 34px; }
.card-bars span, .mini-grid span { height: 8px; border-radius: 999px; background: var(--soft); }
.card-bars .active { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.video-mockup {
  height: 170px; border-radius: 22px; margin: 18px 0 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: inset 0 0 40px rgba(255,255,255,.12);
}
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mini-grid span { height: 70px; border-radius: 18px; }
.play-badge {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); font-size: 1.15rem; color: white; flex: 0 0 auto;
}
.hero-card-bottom p { margin: 6px 0 0; color: var(--muted); line-height: 1.6; }
.floating-slow { animation: floatA 6s ease-in-out infinite; }
.floating-mid { animation: floatB 5.6s ease-in-out infinite; }
.floating-fast { animation: floatC 4.7s ease-in-out infinite; }
@keyframes floatA { 50% { transform: translateY(-14px); } }
@keyframes floatB { 50% { transform: translateY(12px); } }
@keyframes floatC { 50% { transform: translateY(-10px); } }

.services-grid, .influencers-grid { display: grid; gap: 18px; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.service-card, .creator-card, .showcase-copy { border-radius: 30px; padding: 24px; position: relative; overflow: hidden; }
.service-card::before, .creator-card::before {
  content: ""; position: absolute; inset: auto -10% -24% auto; width: 180px; height: 180px; border-radius: 50%; background: rgba(196,0,59,.18); filter: blur(50px); opacity: 0; transition: opacity .35s ease;
}
.service-card:hover::before, .creator-card:hover::before { opacity: 1; }
.service-card h3 { margin: 10px 0; font-size: 1.4rem; }
.service-card p { color: var(--muted); line-height: 1.8; }
.service-icon {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-weight: 900; font-size: 1.3rem;
}

.section-brands { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.marquee-wrap { overflow: hidden; padding: 14px 0 2px; }
.marquee-track {
  display: flex; width: max-content; gap: 16px; animation: marquee 35s linear infinite;
}
.brand-card {
  width: 220px; height: 164px; border-radius: 28px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between;
}
.brand-card img { width: 100%; height: 88px; object-fit: contain; }
.brand-card span { font-weight: 700; color: var(--muted); }
@keyframes marquee { to { transform: translateX(-50%); } }

.showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.showcase-copy { min-height: 280px; }

.influencers-grid { grid-template-columns: repeat(4, 1fr); }
.creator-card { padding: 16px; }
.creator-media {
  height: 340px; border-radius: 26px; display: flex; align-items: end; justify-content: center; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.07));
}
body.light .creator-media { background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.05)); }
.creator-media img { max-height: 100%; width: auto; object-fit: contain; animation: hoverFloat 4.8s ease-in-out infinite; }
.creator-card:nth-child(2n) .creator-media img { animation-duration: 5.4s; }
@keyframes hoverFloat { 50% { transform: translateY(-8px); } }
.creator-meta { padding: 16px 4px 6px; }
.creator-meta h3 { margin: 0 0 6px; font-size: 1.05rem; }
.creator-meta span { color: var(--muted); font-size: .92rem; }

.contact-panel {
  border-radius: 36px; padding: 34px; min-height: 260px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px;
}

.reveal {
  opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.tilt-card { transform-style: preserve-3d; transition: transform .2s ease, box-shadow .25s ease; }
.tilt-card:hover { box-shadow: 0 30px 90px rgba(196,0,59,.18); }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 620px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .influencers-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header { padding-top: 10px; }
  .navbar { min-height: 68px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: calc(100% + 10px); margin-inline: 16px; border-radius: 22px;
    background: var(--panel-solid); border: 1px solid var(--border); padding: 16px; flex-direction: column; align-items: flex-start; gap: 16px; display: none;
  }
  .nav-links.open { display: flex; }
  .hero { min-height: auto; padding-top: 6px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .hero-visual { min-height: 520px; }
  .hero-card-main { inset: 0 80px 130px 0; }
  .hero-card-side { width: 170px; height: 250px; }
  .hero-card-bottom { left: 40px; right: 0; }
  .services-grid, .showcase-grid, .influencers-grid, .contact-panel { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .brand-card { width: 180px; height: 152px; }
  .creator-media { height: 280px; }
  .contact-panel { padding: 28px; }
}


.site-header{padding:18px 0;}
body:not(.light) .site-header .navbar{
  background: rgba(255,255,255,0.94);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
}
body:not(.light) .site-header .nav-links a,
body:not(.light) .site-header .theme-toggle{
  color:#111216;
}
body:not(.light) .site-header .nav-toggle span{
  background:#111216;
}
.brand{
  position:relative;
  display:flex;
  align-items:center;
}
.brand img{height:42px;width:auto;object-fit:contain;}
.logo-light{display:none;}
body:not(.light) .logo-dark{display:none;}
body:not(.light) .logo-light{display:block;}
.hero-logo-light{display:none;}
body:not(.light) .hero-logo-dark{display:none;}
body:not(.light) .hero-logo-light{display:block;}
.influencer-card{
  overflow:hidden;
}
.influencer-photo{
  position:relative;
  isolation:isolate;
}
.influencer-photo img{
  position:relative;
  z-index:3;
  transition: transform .7s ease, filter .6s ease;
}
.influencer-card:hover .influencer-photo img{
  transform: translateY(-10px) scale(1.05);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.28));
}
.influencer-glow{
  position:absolute;
  inset:auto 8% 4% 8%;
  height:48%;
  border-radius:999px;
  background: radial-gradient(circle at center, rgba(255,75,127,.45), rgba(196,0,59,.16) 45%, transparent 72%);
  filter: blur(24px);
  z-index:1;
  animation: influencerGlow 3.6s ease-in-out infinite;
}
.influencer-rings{
  position:absolute;
  left:50%;
  top:48%;
  width:72%;
  aspect-ratio:1/1;
  transform:translate(-50%,-50%);
  border-radius:50%;
  border:1px solid rgba(255,255,255,.12);
  z-index:0;
  animation: influencerRing 7s linear infinite;
}
.influencer-rings::before,
.influencer-rings::after{
  content:"";
  position:absolute;
  inset:10%;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
}
.influencer-rings::after{
  inset:22%;
  border-color: rgba(255,75,127,.18);
}
body.light .influencer-rings{
  border-color: rgba(0,0,0,.08);
}
body.light .influencer-rings::before{
  border-color: rgba(0,0,0,.06);
}
.influencer-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 38%, rgba(255,75,127,.08));
  opacity:0;
  transition:opacity .35s ease;
  pointer-events:none;
}
.influencer-card:hover::before{
  opacity:1;
}
.influencer-card .influencer-meta{
  position:relative;
  overflow:hidden;
}
.influencer-card .influencer-meta::after{
  content:"";
  position:absolute;
  left:-120%;
  top:0;
  width:70%;
  height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: skewX(-24deg);
  transition:left .75s ease;
}
.influencer-card:hover .influencer-meta::after{
  left:160%;
}
@keyframes influencerGlow{
  0%,100%{transform:scale(1);opacity:.72;}
  50%{transform:scale(1.08);opacity:1;}
}
@keyframes influencerRing{
  from{transform:translate(-50%,-50%) rotate(0deg) scale(1);}
  50%{transform:translate(-50%,-50%) rotate(180deg) scale(1.04);}
  to{transform:translate(-50%,-50%) rotate(360deg) scale(1);}
}

/* v4 header adjustments */
body:not(.light) .site-header .navbar{
  background: rgba(5,5,6,0.88) !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28) !important;
}
body:not(.light) .site-header .nav-links a,
body:not(.light) .site-header .theme-toggle{
  color:#f5f5f7 !important;
}
body:not(.light) .site-header .nav-toggle span{
  background:#f5f5f7 !important;
}
body:not(.light) .brand{
  padding: 4px 0;
}
body:not(.light) .logo-light{
  display:block !important;
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.12));
}
body:not(.light) .logo-dark{
  display:none !important;
}

/* influencers group animation */
.influencers-grid{
  position: relative;
}
.influencer-card{
  animation: influencerFloatGroup 6s ease-in-out infinite;
}
.influencer-card:nth-child(2){ animation-delay: .25s; }
.influencer-card:nth-child(3){ animation-delay: .5s; }
.influencer-card:nth-child(4){ animation-delay: .75s; }
.influencer-card:nth-child(5){ animation-delay: 1s; }
.influencer-card:nth-child(6){ animation-delay: 1.25s; }
.influencer-card:nth-child(7){ animation-delay: 1.5s; }
.influencer-card:nth-child(8){ animation-delay: 1.75s; }

.influencers-grid.is-animated{
  animation: influencerSectionWave 12s ease-in-out infinite;
}
@keyframes influencerFloatGroup{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-10px); }
}
@keyframes influencerSectionWave{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
.influencer-photo img{
  animation: influencerImageDrift 5.2s ease-in-out infinite;
}
.influencer-card:nth-child(2) .influencer-photo img{ animation-delay: .2s; }
.influencer-card:nth-child(3) .influencer-photo img{ animation-delay: .4s; }
.influencer-card:nth-child(4) .influencer-photo img{ animation-delay: .6s; }
.influencer-card:nth-child(5) .influencer-photo img{ animation-delay: .8s; }
.influencer-card:nth-child(6) .influencer-photo img{ animation-delay: 1s; }
.influencer-card:nth-child(7) .influencer-photo img{ animation-delay: 1.2s; }
.influencer-card:nth-child(8) .influencer-photo img{ animation-delay: 1.4s; }

@keyframes influencerImageDrift{
  0%,100%{ transform: translateY(0) scale(1); }
  50%{ transform: translateY(-12px) scale(1.03); }
}

/* v5 refinements */
body:not(.light) .site-header .navbar{
  background: rgba(5,5,6,0.88) !important;
  border-color: rgba(255,255,255,0.12) !important;
}
body:not(.light) .brand{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 8px 12px !important;
  backdrop-filter: blur(10px);
}
body:not(.light) .logo-light{
  display:block !important;
  filter: brightness(1.1) drop-shadow(0 0 18px rgba(255,255,255,0.16));
}
body:not(.light) .logo-dark{
  display:none !important;
}
body:not(.light) .theme-toggle{
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.12) !important;
}

.influencers-stage{
  display:grid;
  gap:22px;
  overflow:hidden;
}
.influencer-row{
  display:flex;
  gap:24px;
  width:max-content;
}
.influencer-row-top{ animation: influencersMarquee 34s linear infinite; }
.influencer-row-bottom{ animation: influencersMarqueeReverse 38s linear infinite; }
.influencer-row:hover{ animation-play-state: paused; }
.influencer-row .influencer-card{
  width:280px;
  flex:0 0 280px;
}
@keyframes influencersMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@keyframes influencersMarqueeReverse{
  from{ transform: translateX(-50%); }
  to{ transform: translateX(0); }
}
.influencer-card{
  min-height: 470px;
  border-radius: 34px;
}
.influencer-photo{ min-height: 360px; }
.influencer-card:hover{
  transform: translateY(-12px) scale(1.02) !important;
}
.influencer-card .influencer-meta{
  padding-top: 14px;
}
.influencer-card .influencer-meta strong{
  display:block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.influencer-card .influencer-meta span{
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: .8rem;
}
.influencer-card::after{
  content:"";
  position:absolute;
  inset:auto 18px 18px 18px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  opacity:.7;
}
body.light .influencer-card::after{
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.14), transparent);
}
@media (max-width: 900px){
  .influencer-row .influencer-card{
    width:220px;
    flex-basis:220px;
    min-height:390px;
  }
  .influencer-photo{ min-height:280px; }
}


/* v6 global agency refinement */
.trusted-section { padding-top: 14px; }
.trusted-wrap {
  border-radius: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.trusted-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent 46%, rgba(255,75,127,0.08));
  pointer-events: none;
}
.trusted-copy h3 {
  margin: 12px 0 14px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.trusted-copy p { color: var(--muted); line-height: 1.9; margin: 0; }
.trusted-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  align-content: center;
}
.trusted-logo {
  min-height: 110px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  padding: 18px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.trusted-logo:last-child { grid-column: 1 / -1; }
.trusted-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.22);
}
.trusted-logo img {
  width: 100%;
  max-width: 180px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.14));
}
body.light .trusted-logo { background: rgba(0,0,0,0.025); }

.section-influencers { padding-top: 86px; }
.creator-stage {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 28px;
}
.creator-stage-glow {
  position: absolute;
  inset: auto auto -80px -50px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(70px);
  background: rgba(196,0,59,0.22);
}
.creator-stage-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.creator-stage-label {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--accent-2);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
}
.creator-stage-header h3 {
  margin: 14px 0 0;
  max-width: 700px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.creator-stage-note {
  max-width: 260px;
  color: var(--muted);
  line-height: 1.7;
  font-size: .95rem;
}
.creator-marquee {
  position: relative;
  overflow: hidden;
}
.creator-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
}
.creator-marquee-top .creator-track {
  animation: creatorMarquee 38s linear infinite;
}
.creator-marquee-bottom {
  margin-top: 18px;
}
.creator-marquee-bottom .creator-track {
  animation: creatorMarqueeReverse 42s linear infinite;
}
.creator-marquee:hover .creator-track {
  animation-play-state: paused;
}
@keyframes creatorMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes creatorMarqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.creator-pill {
  width: 240px;
  flex: 0 0 240px;
  padding: 14px;
  border-radius: 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  animation: pillFloat 5.5s ease-in-out infinite;
}
.creator-pill.alt { animation-duration: 6.4s; }
.creator-pill:nth-child(2n) { animation-delay: .3s; }
.creator-pill:nth-child(3n) { animation-delay: .6s; }
@keyframes pillFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.creator-pill::before {
  content: "";
  position: absolute;
  inset: auto auto -38px -12px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,75,127,0.18);
  filter: blur(40px);
}
.creator-portrait {
  height: 270px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.09));
  position: relative;
}
body.light .creator-portrait {
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.05));
}
.creator-portrait::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
body.light .creator-portrait::after { border-color: rgba(0,0,0,0.06); }
.creator-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: portraitLift 4.8s ease-in-out infinite;
}
.creator-pill figcaption {
  position: relative;
  z-index: 2;
  padding: 14px 4px 2px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.creator-pill figcaption::after {
  content: "TWEMIX TALENT";
  display: block;
  margin-top: 4px;
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--accent-2);
}
@keyframes portraitLift {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.03); }
}
@media (max-width: 980px) {
  .trusted-wrap { grid-template-columns: 1fr; }
  .creator-stage-header { flex-direction: column; align-items: flex-start; }
  .creator-stage-note { max-width: 100%; }
}
@media (max-width: 720px) {
  .trusted-grid { grid-template-columns: 1fr; }
  .creator-pill { width: 190px; flex-basis: 190px; }
  .creator-portrait { height: 220px; }
}

/* safe added sections */
.about-section{padding-top:72px;}
.about-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}
.about-copy,.about-card{
  border-radius:30px;
  padding:28px;
}
.about-copy h3{
  margin:0 0 14px;
  font-size:1.8rem;
  letter-spacing:-.03em;
}
.about-copy p{
  color:var(--muted);
  line-height:1.85;
  margin:0 0 14px;
}
.about-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.about-stat{
  padding:16px;
  border-radius:20px;
  background:var(--soft);
}
.about-stat strong{
  display:block;
  font-size:1.8rem;
  color:var(--accent-2);
  margin-bottom:6px;
}
.about-stat span{
  color:var(--muted);
  line-height:1.5;
  font-size:.92rem;
}
.about-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
}
.about-card::before{
  content:"";
  position:absolute;
  right:-40px;
  bottom:-40px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,75,127,.22), transparent 70%);
  filter:blur(18px);
}
.about-logo{
  height:58px;
  width:auto;
  object-fit:contain;
}
.about-logo-light{display:none;}
body:not(.light) .about-logo-dark{display:none;}
body:not(.light) .about-logo-light{display:block;}
.about-lines{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:28px 0;
}
.about-lines span{
  height:8px;
  border-radius:999px;
  background:var(--soft);
}
.about-lines span:nth-child(2){
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
}
.about-note strong{
  display:block;
  font-size:1.25rem;
  margin-bottom:10px;
}
.about-note p{
  color:var(--muted);
  line-height:1.8;
  margin:0;
}

.trusted-grid-labeled{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.trusted-platform{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:145px;
  padding:20px 16px;
  border-radius:24px;
  background:var(--panel);
  border:1px solid var(--border);
  transition:transform .3s ease, border-color .3s ease;
}
.trusted-platform:hover{
  transform:translateY(-6px);
  border-color:rgba(255,75,127,.35);
}
.trusted-platform .trusted-logo{
  width:100%;
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:none;
  border:none;
  box-shadow:none;
}
.trusted-platform .trusted-logo img{
  max-height:38px;
  width:auto;
  object-fit:contain;
}
.trusted-platform span{
  font-weight:700;
  color:var(--text);
}
.x-logo{
  font-size:2rem;
  font-weight:900;
  letter-spacing:-.05em;
  color:var(--text);
}

.site-footer{
  padding:10px 0 34px;
}
.footer-wrap{
  border-radius:28px;
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.footer-brand{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-logo{
  height:40px;
  width:auto;
  object-fit:contain;
}
.footer-logo-light{display:none;}
body:not(.light) .footer-logo-dark{display:none;}
body:not(.light) .footer-logo-light{display:block;}
.footer-brand p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  max-width:420px;
}
.footer-social{
  display:flex;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
}
.footer-social a{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--panel);
  border:1px solid var(--border);
  transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.footer-social a:hover{
  transform:translateY(-5px);
  border-color:rgba(255,75,127,.35);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}
.footer-social img{
  width:20px;
  height:20px;
  filter:invert(1);
}
body.light .footer-social img{
  filter:invert(0);
}
.footer-bottom{
  display:flex;
  justify-content:center;
  color:var(--muted);
  font-size:.92rem;
  padding-top:16px;
}
@media (max-width: 980px){
  .about-grid,
  .trusted-grid-labeled,
  .about-stats{
    grid-template-columns:1fr;
  }
  .footer-wrap{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* campaign slider + word slider */
.word-slider{
  height:58px;
  overflow:hidden;
  margin-bottom:10px;
}
.word-slider-track{
  display:flex;
  flex-direction:column;
  animation: wordSlide 9s ease-in-out infinite;
}
.word-slider-track span{
  height:58px;
  display:flex;
  align-items:center;
  font-size:clamp(1.7rem, 3vw, 2.6rem);
  line-height:1;
  font-weight:900;
  letter-spacing:-.05em;
}
@keyframes wordSlide{
  0%,18%{ transform:translateY(0); }
  22%,40%{ transform:translateY(-58px); }
  44%,62%{ transform:translateY(-116px); }
  66%,84%{ transform:translateY(-174px); }
  88%,100%{ transform:translateY(-232px); }
}

.campaign-preview-frame{
  position:relative;
  height:180px;
  border-radius:26px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  margin-bottom:16px;
}
.campaign-preview-frame::before,
.campaign-preview-frame::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:38px;
  z-index:2;
  pointer-events:none;
}
.campaign-preview-frame::before{
  top:0;
  background:linear-gradient(180deg, rgba(15,15,18,.92), transparent);
}
.campaign-preview-frame::after{
  bottom:0;
  background:linear-gradient(0deg, rgba(15,15,18,.92), transparent);
}
body.light .campaign-preview-frame::before{
  background:linear-gradient(180deg, rgba(255,255,255,.92), transparent);
}
body.light .campaign-preview-frame::after{
  background:linear-gradient(0deg, rgba(255,255,255,.92), transparent);
}
.campaign-preview-track{
  display:flex;
  flex-direction:column;
  animation: campaignVertical 16s linear infinite;
}
.campaign-preview-track img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}
@keyframes campaignVertical{
  0%,10%{ transform:translateY(0); }
  25%,35%{ transform:translateY(-180px); }
  50%,60%{ transform:translateY(-360px); }
  75%,85%{ transform:translateY(-540px); }
  100%{ transform:translateY(0); }
}

/* stronger mini side card */
.hero-card-side{
  padding:16px !important;
}
.hero-card-side .mini-label{
  margin-bottom:12px;
}
.hero-card-side .mini-grid{
  margin-top:6px;
}
.hero-card-side .mini-grid span{
  background:var(--soft);
}
.hero-card-side .mini-grid span:first-child{
  background:linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* service links */
.services-grid-extended{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.service-link-card{
  color:var(--text);
}
.service-link-card .service-detail-link{
  display:inline-flex;
  margin-top:18px;
  color:var(--accent-2);
  font-weight:700;
}
@media (max-width: 900px){
  .services-grid-extended{grid-template-columns:1fr;}
}

/* logo enhancement */
.navbar .brand img{
  height:60px;
  width:auto;
  object-fit:contain;
  transition:transform .25s ease;
}
.navbar .brand img:hover{
  transform:scale(1.05);
}

/* slightly stronger header look */
.navbar{
  padding:14px 22px;
}

/* service cards polish */
.service-link-card{
  transition:transform .3s ease, box-shadow .3s ease;
}
.service-link-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(0,0,0,.15);
}

/* footer polish */
.site-footer{
  margin-top:40px;
}
.footer-logo{
  height:48px;
}

/* case studies + testimonials + metrics */
.case-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.case-card{
  border-radius:30px;
  padding:28px;
  min-height:280px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.case-tag{
  display:inline-flex;
  min-height:32px;
  align-items:center;
  justify-content:center;
  padding:0 12px;
  width:max-content;
  border-radius:999px;
  background:var(--soft);
  color:var(--accent-2);
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.08em;
  margin-bottom:18px;
}
.case-card h3{
  margin:0 0 12px;
  font-size:1.7rem;
  line-height:1.05;
  letter-spacing:-.04em;
}
.case-card p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.85;
}
.case-metrics{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.case-metrics span{
  min-height:38px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--panel);
  font-size:.9rem;
  font-weight:700;
}
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.testimonial-card{
  border-radius:28px;
  padding:26px;
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.testimonial-card p{
  margin:0 0 18px;
  color:var(--text);
  line-height:1.9;
  font-size:1.02rem;
}
.testimonial-card strong{
  color:var(--accent-2);
  font-size:.95rem;
}
.metrics-wrap{
  border-radius:28px;
  padding:26px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.metric-box{
  min-height:140px;
  border-radius:22px;
  background:var(--soft);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:18px;
}
.metric-box strong{
  display:block;
  font-size:2.2rem;
  margin-bottom:8px;
  color:var(--accent-2);
}
.metric-box span{
  color:var(--muted);
  line-height:1.6;
}
@media (max-width:980px){
  .case-grid,.testimonials-grid,.metrics-wrap{
    grid-template-columns:1fr;
  }
}

/* service in-page thought modal */
.service-link-card{
  text-align:left;
  border:0;
  cursor:pointer;
}
.service-link-card .service-detail-link{
  display:inline-flex;
  margin-top:18px;
  color:var(--accent-2);
  font-weight:700;
}
.service-thought-modal{
  position:fixed;
  inset:0;
  z-index:1500;
  display:none;
}
.service-thought-modal.open{
  display:block;
}
.service-thought-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(8px);
}
.service-thought-shell{
  position:relative;
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:24px;
}
.service-thought-close{
  position:absolute;
  top:28px;
  right:28px;
  width:52px;
  height:52px;
  border-radius:50%;
  border:1px solid var(--border);
  background:var(--panel-solid);
  color:var(--text);
  font-size:2rem;
  line-height:1;
  z-index:2;
}
.service-thought-bubble{
  position:relative;
  width:min(620px, 92vw);
  min-height:620px;
  border-radius:28px;
  padding:92px 90px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.12), transparent 26%),
    radial-gradient(circle at 70% 70%, rgba(255,75,127,.18), transparent 30%),
    linear-gradient(135deg, rgba(16,16,20,.96), rgba(10,10,12,.98));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 30px 100px rgba(0,0,0,.38);
  animation:thoughtFloat 5s ease-in-out infinite;
}
body.light .service-thought-bubble{
  background:
    radial-gradient(circle at 30% 25%, rgba(0,0,0,.06), transparent 26%),
    radial-gradient(circle at 70% 70%, rgba(255,75,127,.14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(245,241,236,.98));
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 24px 70px rgba(0,0,0,.12);
}
.service-thought-bubble::before,
.service-thought-bubble::after{
  content:"";
  position:absolute;
  
 border-radius: 20px;
width: 520px;
height: auto;
padding: 50px;
}
.service-thought-bubble::before{
  width:72px;
  height:72px;
  left:46px;
  bottom:54px;
}
.service-thought-bubble::after{
  width:34px;
  height:34px;
  left:24px;
  bottom:24px;
}
.service-thought-badge{
  display:inline-flex;
  min-height:36px;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  border-radius:999px;
  background:var(--soft);
  color:var(--accent-2);
  font-weight:800;
  font-size:.82rem;
  letter-spacing:.08em;
  margin-bottom:16px;
}
.service-thought-bubble h3{
  margin:0 0 16px;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.05;
  letter-spacing:-.05em;
}
.service-thought-bubble p{
  margin:0;
  color:var(--muted);
  line-height:2;
  font-size:1.02rem;
  max-width:360px;
}
@keyframes thoughtFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
}
@media (max-width: 700px){
  .service-thought-bubble{
    min-height:420px;
    padding:68px 38px;
    border-radius:42px;
  }
  .service-thought-bubble::before{
    width:46px;height:46px;left:26px;bottom:40px;
  }
  .service-thought-bubble::after{
    width:22px;height:22px;left:12px;bottom:14px;
  }
  .service-thought-close{
    top:18px;right:18px;
  }
}

/* v2 modal polish */
.service-thought-modal{
  opacity:0;
  visibility:hidden;
  transition:opacity .35s ease, visibility .35s ease;
}
.service-thought-modal.open{
  display:block;
  opacity:1;
  visibility:visible;
}
.service-thought-shell{
  transform:scale(.96);
  transition:transform .4s cubic-bezier(.2,.8,.2,1);
}
.service-thought-modal.open .service-thought-shell{
  transform:scale(1);
}
.service-thought-bubble{
  transform:translateY(18px) scale(.94);
  transition:transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.service-thought-modal.open .service-thought-bubble{
  transform:translateY(0) scale(1);
}
.service-thought-icon{
  width:82px;
  height:82px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin:0 auto 16px;
  font-size:2.1rem;
  background:linear-gradient(135deg, rgba(255,75,127,.24), rgba(196,0,59,.34));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 12px 30px rgba(0,0,0,.22);
}
body.light .service-thought-icon{
  border-color:rgba(0,0,0,.06);
}
.service-thought-bubble h3{
  max-width:420px;
}
.service-thought-bubble p{
  max-width:390px;
}
.service-thought-badge{
  margin-bottom:14px;
}
.service-thought-close:hover{
  transform:rotate(90deg);
}
.service-thought-close{
  transition:transform .3s ease, border-color .3s ease;
}
.service-link-card{
  position:relative;
  overflow:hidden;
}
.service-link-card::after{
  content:"";
  position:absolute;
  inset:auto 18px 16px 18px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,75,127,.24), transparent);
}

/* modal visibility fix */
.service-thought-modal{
  display:none;
}
.service-thought-modal.open{
  display:block !important;
}
.service-thought-shell{
  z-index:2;
}
.service-thought-bubble{
  z-index:3;
}

/* hard visibility fix */
.service-thought-modal{display:none;opacity:0;visibility:hidden;}
.service-thought-modal.open{display:block !important;opacity:1 !important;visibility:visible !important;}
.service-thought-backdrop{z-index:1;}
.service-thought-shell{z-index:2;}
.service-thought-bubble{z-index:3;}


/* restore hero logo + enlarge only header/footer */
.hero-logo{
  height:auto !important;
  max-height:none !important;
}

.navbar .brand img{
  height:52px !important;
  width:auto;
  object-fit:contain;
  transition:transform .25s ease;
}
.navbar .brand img:hover{
  transform:scale(1.04);
}

.footer-logo{
  height:62px !important;
  width:auto;
  object-fit:contain;
}


/* === Mahmoud custom polish === */
.about-card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
body.light .about-card{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,244,239,.92));
}
.about-lines{
  align-items:center;
}
.about-lines span{
  position:relative;
  overflow:hidden;
}
.about-lines span:nth-child(1),
.about-lines span:nth-child(3){
  opacity:.8;
}
.about-lines span:nth-child(2){
  position:relative;
  background: rgba(255,255,255,.12);
}
body.light .about-lines span:nth-child(2){
  background: rgba(0,0,0,.08);
}
.about-lines span:nth-child(2)::before{
  content:"";
  position:absolute;
  inset:0;
  width:38%;
  border-radius:999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(255,75,127,.45);
  animation: aboutLineTravel 3s ease-in-out infinite;
}
@keyframes aboutLineTravel{
  0%,100%{ transform: translateX(0%); }
  50%{ transform: translateX(165%); }
}
.word-slider{
  height:64px;
  margin-bottom:12px;
  position:relative;
}
.word-slider::before,
.word-slider::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:14px;
  z-index:1;
  pointer-events:none;
}
.word-slider::before{
  top:0;
  background: linear-gradient(180deg, var(--panel-solid), transparent);
}
.word-slider::after{
  bottom:0;
  background: linear-gradient(0deg, var(--panel-solid), transparent);
}
body.light .word-slider::before{
  background: linear-gradient(180deg, rgba(255,255,255,.98), transparent);
}
body.light .word-slider::after{
  background: linear-gradient(0deg, rgba(247,243,238,.98), transparent);
}
.word-slider-track{
  animation: wordSlideSmooth 10s cubic-bezier(.65,0,.35,1) infinite;
  will-change: transform;
}
.word-slider-track span{
  height:64px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}
@keyframes wordSlideSmooth{
  0%,16%{ transform:translateY(0); }
  20%,36%{ transform:translateY(-64px); }
  40%,56%{ transform:translateY(-128px); }
  60%,76%{ transform:translateY(-192px); }
  80%,100%{ transform:translateY(-256px); }
}
.service-thought-backdrop{
  background: rgba(0,0,0,.44);
  backdrop-filter: blur(10px);
}
.service-thought-shell{
  padding: 34px 20px;
}
.service-thought-bubble{
  width: min(560px, 92vw);
  min-height: auto;
  padding: 42px 34px 38px;
  border-radius: 34px;
  animation: none;
  transform: translateY(12px) scale(.97);
  background: linear-gradient(180deg, rgba(20,20,24,.98), rgba(10,10,12,.98));
}
.service-thought-bubble::before,
.service-thought-bubble::after{
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,75,127,.9), rgba(255,75,127,.18) 60%, transparent 72%);
  padding: 0;
}
.service-thought-bubble::before{
  width: 74px;
  height: 74px;
  left: 22px;
  bottom: 26px;
  filter: blur(.2px);
}
.service-thought-bubble::after{
  width: 26px;
  height: 26px;
  left: 16px;
  bottom: 10px;
}
body.light .service-thought-bubble{
  background: linear-gradient(180deg, rgba(250,247,243,.98), rgba(242,236,230,.98));
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
}
.service-thought-icon{
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
}
.service-thought-bubble h3{
  margin-bottom: 14px;
  max-width: 430px;
  font-size: clamp(2rem, 4vw, 2.9rem);
}
.service-thought-bubble p{
  max-width: 420px;
  line-height: 1.9;
  font-size: 1rem;
}
.service-thought-close{
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 1.6rem;
}
@media (max-width: 900px){
  .brand img{ height: 50px; max-width: 150px; }
}
@media (max-width: 700px){
  .service-thought-bubble{
    width: min(92vw, 420px);
    padding: 34px 24px 30px;
    border-radius: 28px;
  }
  .service-thought-bubble h3{ font-size: clamp(1.7rem, 8vw, 2.25rem); }
  .service-thought-bubble p{ font-size: .96rem; }
  .service-thought-icon{ width: 64px; height: 64px; font-size: 1.7rem; }
  .service-thought-close{ top: 16px; right: 16px; }
}


/* === FINAL HEADER LOGO FIX === */
.site-header{
  padding: 12px 0 !important;
}
.site-header .navbar{
  min-height: 104px !important;
  padding: 12px 24px !important;
}
.site-header .brand{
  display: inline-flex !important;
  align-items: center !important;
  padding: 6px 0 !important;
}
.site-header .brand img,
.site-header .brand .logo-dark,
.site-header .brand .logo-light,
.navbar .brand img{
  height: 86px !important;
  max-height: 86px !important;
  max-width: none !important;
  width: auto !important;
  object-fit: contain !important;
}
@media (max-width: 900px){
  .site-header .navbar{
    min-height: 88px !important;
    padding: 10px 18px !important;
  }
  .site-header .brand img,
  .site-header .brand .logo-dark,
  .site-header .brand .logo-light,
  .navbar .brand img{
    height: 68px !important;
    max-height: 68px !important;
  }
}
