/* ─────────────────────────────────────────
   MUST MARKETING — style.css
───────────────────────────────────────── 
Version: 1.0.3

Theme Name: Must Marketing Agency
*/

:root {
  --green: #2fb58f;
  --green-light: #3fd4a8;
  --green-dark: #1a9070;
  --green-muted: rgba(47,181,143,0.12);
  --green-glow: rgba(47,181,143,0.25);
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --gray: #888;
  --gray-light: #bbb;
  --white: #ffffff;
  --border: rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; line-height: 1.1; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 6%;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo span { color: var(--green); }
.logo-dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 var(--green-glow); }
  50%      { box-shadow: 0 0 0 6px transparent; }
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--gray-light); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--green); color: var(--black) !important;
  padding: 10px 22px; border-radius: 100px;
  font-weight: 600 !important; font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--green-light) !important; transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 140px 6% 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(47,181,143,0.18) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 80% 80%, rgba(47,181,143,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 0%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 860px; animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-muted); border: 1px solid rgba(47,181,143,0.3);
  color: var(--green); padding: 8px 18px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 28px;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 24px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero h1 .accent { color: var(--green); }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--gray-light);
  max-width: 600px; margin: 0 auto 16px;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-desc {
  font-size: 0.95rem; color: var(--gray); max-width: 580px;
  margin: 0 auto 44px; animation: fadeUp 0.9s 0.4s ease both;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.5s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--black);
  padding: 15px 32px; border-radius: 100px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: all 0.25s; font-family: 'Syne', sans-serif;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 12px 40px var(--green-glow); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 15px 32px; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 1px solid var(--border); transition: all 0.25s;
  font-family: 'Syne', sans-serif;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 48px; justify-content: center; margin-top: 72px;
  animation: fadeUp 0.9s 0.6s ease both;
}
.stat { text-align: center; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); }
.stat-num span { color: var(--green); }
.stat-label { font-size: 0.8rem; color: var(--gray); margin-top: 2px; }

/* SECTIONS */
section { padding: 100px 6%; }
.section-tag {
  display: inline-block; color: var(--green);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: var(--gray); max-width: 540px; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* SERVICES */
.services { background: var(--black-2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.service-card {
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 32px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(47,181,143,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; background: var(--green-muted);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 1.4rem;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* WHY */
.why { background: var(--black); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.why-card {
  background: var(--black-2); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 26px; transition: all 0.3s;
  display: flex; flex-direction: column; gap: 14px;
}
.why-card:hover { border-color: rgba(47,181,143,0.3); background: var(--black-3); transform: translateY(-3px); }
.why-icon {
  font-size: 1.5rem; width: 46px; height: 46px; background: var(--green-muted);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.why-card h4 { font-size: 1rem; font-weight: 700; }
.check-line { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray-light); }
.check-line::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.75rem; flex-shrink: 0; }

/* DEMOS */
.demos { background: var(--black-2); }
.demos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.demo-card { background: var(--black-3); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
.demo-card:hover { transform: translateY(-5px); box-shadow: 0 24px 64px rgba(0,0,0,0.5); border-color: rgba(47,181,143,0.25); }
.demo-preview { height: 200px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.demo-preview .demo-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.demo-card:hover .demo-overlay { opacity: 1; }
.demo-info { padding: 20px 22px 24px; }
.demo-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.demo-info p { font-size: 0.82rem; color: var(--gray); margin-bottom: 16px; }
.btn-demo { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: gap 0.2s; }
.btn-demo:hover { gap: 10px; }
.dp-salon      { background: linear-gradient(135deg, #fde8e8, #f0c8c8); }
.dp-fitness    { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.dp-photo      { background: linear-gradient(135deg, #2c2c2c, #1a1a1a); }
.dp-realestate { background: linear-gradient(135deg, #e8f4f0, #c8e4dc); }
.dp-consultant { background: linear-gradient(135deg, #1e1e2e, #2a2a3e); }

/* PROCESS */
.process { background: var(--black); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; position: relative; margin-top: 60px; }
.process-steps::before {
  content: ''; position: absolute;
  top: 36px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-dark), var(--green)); z-index: 0;
}
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--black); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.5rem; color: var(--green);
  position: relative; z-index: 1; box-shadow: 0 0 30px var(--green-glow);
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* TESTIMONIALS */
.testimonials { background: var(--black-2); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testi-card { background: var(--black-3); border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; transition: all 0.3s; position: relative; }
.testi-card:hover { border-color: rgba(47,181,143,0.3); transform: translateY(-3px); }
.stars { color: var(--green); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 18px; }
.quote-icon { font-size: 3rem; line-height: 1; font-family: Georgia, serif; position: absolute; top: 20px; right: 24px; color: rgba(47,181,143,0.2); }
.testi-card p { font-size: 0.92rem; color: var(--gray-light); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green-muted); border: 2px solid rgba(47,181,143,0.3); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.testi-name { font-weight: 700; font-size: 0.9rem; font-family: 'Syne', sans-serif; }
.testi-role { font-size: 0.78rem; color: var(--gray); }

/* CTA */
.cta-section { background: var(--black); text-align: center; padding: 100px 6%; }
.cta-inner {
  max-width: 700px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(47,181,143,0.15) 0%, rgba(47,181,143,0.05) 100%);
  border: 1px solid rgba(47,181,143,0.3); border-radius: 30px;
  padding: 64px 48px; position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(47,181,143,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-inner p { color: var(--gray-light); font-size: 1rem; margin-bottom: 40px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: var(--black); padding: 15px 32px;
  border-radius: 100px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: all 0.25s; font-family: 'Syne', sans-serif;
}
.btn-whatsapp:hover { background: #20be5a; transform: translateY(-2px); }

/* FOOTER */
footer { background: var(--black-2); border-top: 1px solid var(--border); padding: 72px 6% 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .logo { margin-bottom: 16px; font-size: 1.3rem; }
.footer-brand p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--black-3);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--gray); font-size: 0.85rem; transition: all 0.2s;
}
.social-icon:hover { background: var(--green-muted); border-color: var(--green); color: var(--green); }
footer h5 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; font-family: 'Syne', sans-serif; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--gray-light); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.contact-item .ci-icon { width: 30px; height: 30px; background: var(--green-muted); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; margin-top: 1px; }
.contact-item a { color: var(--gray-light); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.contact-item a:hover { color: var(--green); }
.contact-item span { font-size: 0.88rem; color: var(--gray-light); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: var(--gray); }
.footer-bottom a { color: var(--green); text-decoration: none; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps::before { display: none; }
  .process-steps { gap: 32px; }
}
@media (max-width: 600px) {
  section { padding: 72px 5%; }
  nav { padding: 18px 5%; }
  .hero { padding: 120px 5% 60px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { padding: 44px 28px; }
}
