/* ===== GARG LLC — Marketing Agency Landing ===== */

:root{
  --bg: #0a0a16;
  --bg-alt: #14142b;
  --ink: #ffffff;
  --ink-dim: #c8c8d8;
  --ink-faint: #8a8aa3;

  --orange: #ff6b35;
  --pink: #ff3d81;
  --purple: #8b5cf6;
  --cyan: #00d4ff;
  --green: #34e5b0;

  --gradient: linear-gradient(120deg, var(--orange), var(--pink) 45%, var(--purple) 100%);
  --gradient-soft: linear-gradient(120deg, rgba(255,107,53,.15), rgba(255,61,129,.15) 45%, rgba(139,92,246,.15) 100%);

  --border: rgba(255,255,255,.1);
  --card: rgba(255,255,255,.04);
  --card-hover: rgba(255,255,255,.07);

  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.16,.8,.24,1);
}

*,*::before,*::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3{
  font-family: 'Sora', 'Inter', sans-serif;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p{ margin: 0; color: var(--ink-dim); }

a{ color: inherit; text-decoration: none; }

img{ max-width: 100%; display: block; }

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

.noise{
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary{
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(255,61,129,.55);
}
.btn-primary:hover{ transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 12px 32px -8px rgba(255,61,129,.7); }
.btn-lg{ padding: 1rem 2.1rem; font-size: 1.05rem; }
.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: var(--border);
  color: var(--ink);
}
.btn-ghost:hover{ background: rgba(255,255,255,.09); transform: translateY(-2px); }
.btn-ig{
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 40%, #6228d7 90%);
  color: #fff;
}
.btn-ig:hover{ transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 10px 28px -10px rgba(238,42,123,.6); }
.ig-icon{ width: 18px; height: 18px; fill: currentColor; flex: none; }

/* ---------- Nav ---------- */
.nav{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(10,10,22,0);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled{
  background: rgba(10,10,22,.78);
  backdrop-filter: blur(14px);
  border-color: var(--border);
  padding: 10px 0;
}
.nav-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand{ display: flex; align-items: center; gap: 10px; }
.brand-logo{ width: 38px; height: 38px; border-radius: 10px; }
.brand-name{
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name-sub{
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .6rem;
  letter-spacing: .14em;
  color: var(--ink-faint);
}
.nav-links{ display: flex; gap: 2rem; }
.nav-links a{
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color .2s var(--ease);
}
.nav-links a:hover{ color: var(--ink); }
.nav-cta{ padding: .6rem 1.2rem; font-size: .85rem; }
.nav-toggle{ display: none; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.hero-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1{ width: 480px; height: 480px; background: var(--pink); top: -120px; left: -120px; }
.hero-glow-2{ width: 520px; height: 520px; background: var(--purple); bottom: -160px; right: -140px; }
.hero-glow-3{ width: 360px; height: 360px; background: var(--orange); top: 30%; right: 10%; opacity: .22; }

.hero-inner{
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-dim);
}
.eyebrow-logo{ width: 22px; height: 22px; border-radius: 6px; }
.hero-title{
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
}
.hero-sub{
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-dim);
  max-width: 560px;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero-stats{
  display: flex;
  gap: clamp(24px, 6vw, 56px);
  margin-top: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 460px;
  justify-content: center;
}
.hero-stat{ display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hero-stat-num{
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat-label{ font-size: .78rem; color: var(--ink-faint); letter-spacing: .03em; }

.scroll-cue{
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 2px solid var(--border);
  border-radius: 14px;
  z-index: 2;
}
.scroll-cue span{
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--ink-dim);
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue{
  0%{ transform: translateY(0); opacity: 1; }
  70%{ transform: translateY(12px); opacity: 0; }
  100%{ opacity: 0; }
}

/* ---------- Section shared ---------- */
section{ position: relative; padding: 110px 24px; max-width: 1180px; margin: 0 auto; }
.section-head{
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section-kicker{
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head h2{ font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.section-head p{ font-size: 1.05rem; }
.section-head.light p{ color: rgba(255,255,255,.75); }

/* ---------- Services ---------- */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card{
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover{
  transform: translateY(-6px);
  background: var(--card-hover);
  border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
}
.service-icon{
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: var(--accent);
}
.service-icon svg{ width: 24px; height: 24px; }
.service-card h3{ font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.service-card p{ font-size: .92rem; }

/* ---------- Work rail ---------- */
.work-rail{
  overflow-x: auto;
  margin: 0 -24px 40px;
  padding: 0 24px 10px;
  scrollbar-width: thin;
}
.work-track{
  display: flex;
  gap: 20px;
  width: max-content;
}
.work-card{
  width: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  flex: none;
  transition: transform .3s var(--ease);
}
.work-card:hover{ transform: translateY(-6px); }
.work-cta{ display: flex; margin: 0 auto; width: fit-content; }

/* ---------- Results ---------- */
.results{
  max-width: none;
  padding: 110px 24px;
  background: var(--bg-alt);
  overflow: hidden;
}
.results-glow{
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 400px at 50% 0%, rgba(139,92,246,.18), transparent 70%);
  pointer-events: none;
}
.results-grid{
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.result-card{
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.result-num{
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.result-label{ color: var(--ink-dim); font-size: .95rem; }

/* ---------- CTA ---------- */
.cta{
  max-width: none;
  padding: 120px 24px;
  text-align: center;
}
.cta-glow{
  position: absolute; inset: 0;
  background: var(--gradient-soft);
  mask-image: radial-gradient(ellipse 600px 400px at 50% 50%, black, transparent 75%);
  pointer-events: none;
}
.cta-inner{
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-logo{ width: 64px; height: 64px; border-radius: 16px; margin-bottom: 8px; }
.cta-inner h2{ font-size: clamp(1.9rem, 4.4vw, 2.7rem); font-weight: 800; }
.cta-inner p{ font-size: 1.05rem; }

/* ---------- Footer ---------- */
.footer{
  border-top: 1px solid var(--border);
  padding: 48px 24px 28px;
}
.footer-inner{
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand{ display: flex; align-items: center; gap: 14px; }
.footer-logo{ width: 44px; height: 44px; border-radius: 12px; }
.footer-name{ font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1rem; }
.footer-address{
  font-style: normal;
  font-size: .88rem;
  color: var(--ink-faint);
  line-height: 1.5;
}
.footer-links{ display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a{ font-size: .9rem; color: var(--ink-dim); transition: color .2s var(--ease); }
.footer-links a:hover{ color: var(--ink); }
.footer-ig{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-dim);
  transition: color .2s var(--ease);
}
.footer-ig:hover{ color: var(--pink); }
.footer-bottom{
  max-width: 1180px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--ink-faint);
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px){
  .nav-links{
    position: fixed;
    top: 66px; left: 16px; right: 16px;
    background: rgba(10,10,22,.96);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    flex-direction: column;
    padding: 18px;
    gap: 16px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
  }
  .nav-links.open{ transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .nav-cta{ display: none; }
  .nav-toggle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px; height: 34px;
    background: none; border: none;
    cursor: pointer;
  }
  .nav-toggle span{ height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
  .nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity: 0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  section{ padding: 80px 20px; }
  .services-grid{ grid-template-columns: 1fr; }
  .results-grid{ grid-template-columns: 1fr; }
  .hero-stats{ gap: 28px; }
  .footer-inner{ flex-direction: column; align-items: flex-start; }
}
