/*
Theme Name: Vingom
Theme URI: https://vingom.com
Author: Vingom Digital
Description: Vingom Performance Marketing Agency Theme
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: vingom
*/


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

:root {
  --black:   #000000;
  --red:     #D31712;
  --darkred: #752632;
  --bg:      #F0EFEB;
  --surface: #E8E7E2;
  --card:    #FFFFFF;
  --border:  #DDDBD5;
  --muted:   #888480;
  --text:    #000000;
  --font:    'Plus Jakarta Sans', sans-serif;
  --radius:  16px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(240,239,235,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
nav.scrolled { border-color: var(--border); }

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo-text {
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: 0.08em; color: var(--black);
}

.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-logo-text { text-decoration: none !important; font-family: var(--font); }
.nav-links a {
  padding: 8px 16px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--muted);
  text-decoration: none; border-radius: 100px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--surface); color: var(--black); }
.nav-cta {
  padding: 10px 22px !important;
  background: var(--black) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 100px !important;
}
.nav-cta:hover { background: var(--red) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
}
.hero-bg-circle {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,23,18,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-bg-circle2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117,38,50,0.06) 0%, transparent 70%);
  bottom: 50px; left: 200px;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.04em;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp .7s .2s forwards;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
}
.hero-title {
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 840px;
  opacity: 0; animation: fadeUp .8s .35s forwards;
}
.hero-title .accent { color: var(--red); }
.hero-title .line { display: block; }

.hero-sub {
  margin-top: 36px;
  font-size: 1.05rem; line-height: 1.75;
  color: var(--muted); max-width: 480px;
  font-weight: 400;
  opacity: 0; animation: fadeUp .8s .55s forwards;
}

.hero-actions {
  margin-top: 48px;
  display: flex; gap: 14px; align-items: center;
  opacity: 0; animation: fadeUp .8s .7s forwards;
}
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--black); color: #fff;
  font-family: var(--font); font-size: 0.88rem; font-weight: 600;
  border-radius: 100px; text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-dark:hover { background: var(--red); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-family: var(--font); font-size: 0.88rem; font-weight: 500;
  border-radius: 100px; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--black); color: var(--black); }

.hero-bottom {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
  width: 100%; max-width: 600px;
  opacity: 0; animation: fadeUp .8s .9s forwards;
}
.hero-stat {
  background: var(--card);
  padding: 28px 32px;
  transition: background .2s;
}
.hero-stat:hover { background: var(--surface); }
.hero-stat-val {
  font-size: 1.8rem; font-weight: 800; color: var(--black);
  line-height: 1;
}
.hero-stat-val .r { color: var(--red); }
.hero-stat-label {
  margin-top: 6px;
  font-size: 0.75rem; font-weight: 500; color: var(--muted);
}

/* ── SECTIONS ── */
section { padding: 100px 48px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 16px; height: 2px; background: var(--red);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.1; color: var(--black);
}
.section-sub {
  margin-top: 16px;
  font-size: 1rem; line-height: 1.7; color: var(--muted);
  max-width: 480px;
}

/* ── SERVICES ── */
#services { background: var(--bg); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: box-shadow .25s, transform .2s, border-color .25s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(32,28,29,0.08); transform: translateY(-3px); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-size: 0.72rem; font-weight: 700;
  color: var(--border); letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.service-name {
  font-size: 1.1rem; font-weight: 700; color: var(--black);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.875rem; line-height: 1.75; color: var(--muted);
}
.service-tags {
  margin-top: 24px; display: flex; flex-wrap: wrap; gap: 6px;
}
.tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 4px 10px;
  background: var(--bg); border-radius: 100px;
  color: var(--muted);
}

/* ── PROCESS ── */
#process { background: var(--surface); }
.process-grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.process-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}
.process-card::before {
  content: '';
  position: absolute; top: 36px; right: -8px;
  width: 16px; height: 2px; background: var(--border);
  z-index: 1;
}
.process-card:last-child::before { display: none; }
.process-num {
  font-size: 2.5rem; font-weight: 800;
  color: var(--border); line-height: 1;
  margin-bottom: 20px;
}
.process-name {
  font-size: 1rem; font-weight: 700; color: var(--black);
  margin-bottom: 10px;
}
.process-desc {
  font-size: 0.84rem; line-height: 1.7; color: var(--muted);
}

/* ── BRANDS / CLIENTS ── */
#brands { background: var(--bg); }
.brands-grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.brand-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
  min-height: 140px;
}
.brand-card:hover { box-shadow: 0 8px 30px rgba(32,28,29,0.07); transform: translateY(-2px); }
.brand-name {
  font-size: 1rem; font-weight: 700; color: var(--black);
  text-align: center;
}
.brand-industry {
  font-size: 0.72rem; font-weight: 500;
  color: var(--muted); text-align: center;
}
.brand-placeholder {
  width: 40px; height: 40px;
  background: var(--bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

/* BRAND RESULTS STRIP */
.results-strip {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.result-item {
  background: var(--card);
  padding: 32px 28px;
}
.result-val {
  font-size: 2rem; font-weight: 800; color: var(--black); line-height: 1;
}
.result-val span { color: var(--red); }
.result-label { margin-top: 8px; font-size: 0.8rem; font-weight: 500; color: var(--muted); }

/* ── BLOG ── */
#blog { background: var(--surface); }
.blog-grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: 0 10px 36px rgba(32,28,29,0.09); transform: translateY(-3px); }
.blog-thumb {
  height: 180px;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.blog-body { padding: 28px; }
.blog-cat {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.blog-title {
  font-size: 1rem; font-weight: 700; color: var(--black);
  line-height: 1.4; margin-bottom: 12px;
}
.blog-excerpt {
  font-size: 0.82rem; line-height: 1.7; color: var(--muted);
}
.blog-footer {
  margin-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.blog-date { font-size: 0.75rem; font-weight: 500; color: var(--muted); }
.blog-read {
  font-size: 0.75rem; font-weight: 700; color: var(--red);
  text-decoration: none;
  display: flex; align-items: center; gap: 4px;
}

/* ── CONTACT ── */
#contact { background: var(--black); padding: 100px 48px; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.contact-left .section-label { color: var(--red); }
.contact-left .section-label::before { background: var(--red); }
.contact-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
  color: #fff;
}
.contact-title span { color: var(--red); }
.contact-sub {
  margin-top: 20px;
  font-size: 1rem; line-height: 1.75;
  color: rgba(255,255,255,0.4);
}
.contact-items { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: background .2s, border-color .2s;
}
.contact-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); }
.contact-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(211,23,18,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 4px;
}
.contact-value {
  font-size: 1rem; font-weight: 600; color: #fff;
  text-decoration: none;
  transition: color .2s;
}
.contact-value:hover { color: var(--red); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  display: flex; align-items: center; text-decoration: none;
}
.footer-logo-text { font-size: 0.95rem; font-weight: 800; color: #fff; letter-spacing: 0.08em; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.3); text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-card::before { display: none; }
  .brands-grid { grid-template-columns: repeat(2,1fr); }
  .results-strip { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 70px 24px; }
  .hero { padding: 100px 24px 60px; }
  .services-grid, .process-grid, .brands-grid, .blog-grid { grid-template-columns: 1fr; }
  .results-strip { grid-template-columns: repeat(2,1fr); }
  .services-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-bottom { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { justify-content: center; }
}
