/* NEW MODERN AGENCY HOME CSS */
:root {
  --section-pad: 120px 0;
}

/* HERO */
.new-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 80px;
  position: relative;
  text-align: center;
  background: var(--bg);
  overflow: hidden;
}
.nh-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 50% -20%, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.nh-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nh-pill {
  display: inline-flex;
  padding: 8px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.nh-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
}
.nh-title span {
  background: linear-gradient(135deg, var(--accent), var(--a-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nh-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.nh-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.nh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--ink);
  color: var(--bg);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
[data-theme="dark"] .nh-btn { background: var(--accent); color: #fff; }
.nh-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.nh-btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.nh-btn.ghost:hover {
  background: var(--bg-2);
  border-color: var(--ink);
  box-shadow: none;
}
[data-theme="dark"] .nh-btn.ghost { color: var(--ink); }

/* MARQUEE */
.marquee-section {
  padding: 30px 0;
  background: var(--accent);
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll 20s linear infinite;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.marquee-track span { opacity: 0.8; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ABOUT */
.new-about {
  padding: var(--section-pad);
  background: var(--bg);
}
.na-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.na-left h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.na-right p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.na-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.na-stats h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1;
}
.na-stats p {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0;
}

/* SERVICES BENTO */
.new-services {
  padding: var(--section-pad);
  background: var(--bg-2);
}
.ns-head {
  text-align: center;
  margin-bottom: 64px;
}
.ns-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ns-head p {
  font-size: 18px;
  color: var(--muted);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.bento-c {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.bento-c:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: var(--accent);
}
.b1 { grid-column: 1 / 3; }
.b2 { grid-column: 3 / 4; }
.b3 { grid-column: 1 / 2; }
.b4 { grid-column: 2 / 4; }
.b5 { grid-column: 1 / 4; grid-auto-rows: auto; min-height: 180px; text-align: center; justify-content: center; align-items: center; }

.bc-top h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.bc-top p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.bc-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bc-bot span {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* PROCESS */
.new-process {
  padding: var(--section-pad);
  background: var(--bg);
}
.np-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  text-align: center;
}
.np-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.np-card {
  padding: 24px;
  background: var(--bg-2);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.np-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 24px;
  line-height: 1;
  transition: color 0.3s;
}
.np-card:hover .np-num { color: var(--accent); }
.np-card h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
}
.np-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA */
.new-cta {
  padding: 80px 0 120px;
  background: var(--bg);
}
.nc-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
}
.nc-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.nc-box p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
}
.nc-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.btn-solid {
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.btn-solid:hover { background: var(--accent-h); transform: translateY(-2px); }
.btn-outline {
  padding: 16px 32px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--ink); background: var(--bg-3); }

/* Responsive */
@media (max-width: 960px) {
  .na-grid { grid-template-columns: 1fr; gap: 40px; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .b1, .b2, .b3, .b4, .b5 { grid-column: 1 / -1; min-height: 200px; }
  .np-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nh-btns { flex-direction: column; width: 100%; }
  .nh-btn { width: 100%; }
  .na-stats { grid-template-columns: 1fr; }
  .np-grid { grid-template-columns: 1fr; }
  .nc-actions { flex-direction: column; }
}
