/* =========================================================
   Victory Circle Consultants — Site Stylesheet
   Modern / energetic marketing agency design system
   ========================================================= */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #F6F3FF;
  --color-dark: #130C2E;
  --color-dark-2: #1D1240;
  --color-primary: #6D28D9;
  --color-primary-2: #8B5CF6;
  --color-coral: #FF4D6D;
  --color-lime: #FFD23F;
  --text-main: #171123;
  --text-muted: #5B5570;
  --text-inverse: #F3EFFF;
  --border-soft: #E7E1FA;

  --gradient-brand: linear-gradient(135deg, var(--color-primary) 0%, var(--color-coral) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(109,40,217,0.12) 0%, rgba(255,77,109,0.12) 100%);

  --font-head: "Space Grotesk", "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 10px 30px rgba(19, 12, 46, 0.08);
  --shadow-strong: 0 20px 50px rgba(19, 12, 46, 0.18);
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--gradient-brand-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 77, 109, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(255, 77, 109, 0.42); }

.btn-ghost {
  background: transparent;
  color: var(--text-inverse);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: #fff; transform: translateY(-3px); }

.btn-dark {
  background: var(--color-dark);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-strong); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
}

.logo .mark {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-brand);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { color: var(--color-primary); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--color-dark);
  color: var(--text-inverse);
  overflow: hidden;
  padding: 100px 0 120px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: var(--gradient-brand);
  opacity: 0.55;
  filter: blur(10px);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -220px; left: -140px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  color: rgba(243,239,255,0.8);
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 40s linear infinite;
}

.hero-ring-inner {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(255,77,109,0.35);
  animation: spin-rev 30s linear infinite;
}

.hero-ring-inner svg { width: 90px; height: 90px; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin-rev { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

.stat-chip {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
}
.stat-chip span { display: block; font-size: 1.3rem; }
.stat-chip.chip-1 { top: 6%; left: -6%; }
.stat-chip.chip-2 { bottom: 8%; right: -8%; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-dark {
  background: var(--color-dark);
  color: var(--text-inverse);
}
.section-dark p { color: rgba(243,239,255,0.72); }
.section-dark h2 { color: #fff; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Grids / Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }

.card .icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card .icon-wrap svg { width: 26px; height: 26px; stroke: #fff; }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.96rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-primary);
}

/* ---------- Why-us / stats ---------- */
.stat-block {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border-soft);
}
.stat-block .num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.stat-block .label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.stat-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 18px;
  font-style: italic;
}

/* ---------- Process steps ---------- */
.process-list { display: flex; flex-direction: column; gap: 0; }
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-soft);
}
.process-item:last-child { border-bottom: none; }
.process-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-primary);
}
.process-item h3 { margin-bottom: 6px; }

/* ---------- Values ---------- */
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-item .dot {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--gradient-brand-soft);
  display: flex; align-items: center; justify-content: center;
}
.value-item .dot svg { width: 20px; height: 20px; stroke: var(--color-primary); }

/* ---------- Testimonials ---------- */
.testi-card {
  background: #fff;
  border: 1px dashed var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.testi-card .stars { color: var(--color-lime); letter-spacing: 3px; margin-bottom: 16px; font-size: 1rem; }
.testi-card .quote { font-size: 1.02rem; color: var(--text-main); font-style: italic; margin-bottom: 22px; }
.testi-card .who { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; }
.testi-card .who span { display: block; font-family: var(--font-body); font-weight: 400; color: var(--text-muted); font-size: 0.85rem; }

.testi-placeholder-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-coral);
  background: rgba(255,77,109,0.08);
  padding: 5px 12px;
  border-radius: 999px;
  position: absolute;
  top: -12px;
  left: 24px;
}

.slot-note {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  background: var(--gradient-brand-soft);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  font-size: 0.92rem;
  color: var(--text-main);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 700; font-family: var(--font-head); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--color-bg-alt);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark-2);
  color: rgba(243,239,255,0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a:hover { color: #fff; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .mark { width: 32px; height: 32px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--color-dark);
  color: #fff;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  background: var(--gradient-brand);
  opacity: 0.45;
  filter: blur(20px);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(243,239,255,0.78); max-width: 60ch; margin: 16px auto 0; }
.breadcrumb {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(243,239,255,0.6);
  margin-bottom: 14px;
}
.breadcrumb .sep { margin: 0 6px; }

/* ---------- Utility ---------- */
.mt-lg { margin-top: 48px; }
.text-center { text-align: center; }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-ghost-wrap { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-soft);
    gap: 18px;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-item { grid-template-columns: 1fr; }
  .stat-chip { display: none; }
}
