/* ============================================================
   Vantage Digital — Main Stylesheet
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --navy: #0D1B2A;
  --blue: #1B6FEB;
  --blue-dark: #155fd4;
  --teal: #0e7490;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --slate-200: #E2E8F0;
  --light: #F8FAFC;
  --white: #FFFFFF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10), 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12), 0 16px 48px rgba(0,0,0,0.10);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin: 0 0 0.5em;
  line-height: 1.2;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.01em;
  text-align: center;
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.01em;
  text-align: center;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-1px);
}
.btn-outline:active { transform: translateY(0); }

.btn-outline-blue {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.01em;
  text-align: center;
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-blue:active { transform: translateY(0); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.01em;
  text-align: center;
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white:active { transform: translateY(0); }

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--slate-200);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav-logo .logo-vantage {
  color: var(--navy);
  font-weight: 700;
}
.nav-logo .logo-digital {
  color: var(--blue);
  font-variant: small-caps;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-left: 6px;
  align-self: center;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--blue); font-weight: 600; }

.nav-cta {
  margin-left: 8px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--light); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Open state */
.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Fade-in Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  background: var(--navy);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(27,111,235,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.4em;
  position: relative;
}
.page-header p {
  font-size: 1.1rem;
  color: var(--slate-light);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* ---------- HERO (Homepage) ---------- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-shapes svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-content .eyebrow {
  display: inline-block;
  background: rgba(27,111,235,0.18);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(27,111,235,0.3);
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-content h1 span { color: var(--blue); }
.hero-content p {
  font-size: 1.15rem;
  color: var(--slate-light);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--slate-200);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-bar-divider {
  width: 1px;
  height: 24px;
  background: var(--slate-200);
  flex-shrink: 0;
}
.trust-clients {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-clients span {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  background: var(--light);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--slate-200);
}

/* ---------- How It Works ---------- */
.how-it-works {
  background: var(--light);
  padding: 96px 0;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 0.3em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 540px;
  margin-bottom: 0;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(27,111,235,0.12);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ---------- Audience Split ---------- */
.audience-split {
  padding: 0;
}
.audience-split-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.audience-card {
  padding: 80px 40px;
}
.audience-card.navy { background: var(--navy); }
.audience-card.blue { background: var(--blue); }
.audience-card.teal { background: var(--teal); }
.audience-card .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.audience-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.audience-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 400px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.audience-card .italic-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--light);
  padding: 96px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
}
.stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-author span {
  font-size: 13px;
  color: var(--slate);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--blue);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ---------- Pain Points ---------- */
.pain-points {
  background: var(--white);
  padding: 96px 0;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.pain-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--slate-200);
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pain-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pain-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}
.pain-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.pain-card p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ---------- Features ---------- */
.features-section {
  background: var(--light);
  padding: 96px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.feature-tile {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-tile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(27,111,235,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.feature-tile h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-tile p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ---------- Pricing ---------- */
.pricing-section {
  background: var(--white);
  padding: 96px 0;
}
.pricing-section.alt { background: var(--light); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow 0.2s ease;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card.featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover {
  box-shadow: 0 16px 48px rgba(27,111,235,0.4);
}

.badge-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #F59E0B;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}
.pricing-card.featured h3 { color: rgba(255,255,255,0.75); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-dollar {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}
.pricing-card.featured .price-dollar { color: var(--white); }
.price-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.pricing-card.featured .price-amount { color: var(--white); }

.price-note {
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 28px;
}
.pricing-card.featured .price-note { color: rgba(255,255,255,0.65); }

.pricing-features {
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate);
  padding: 7px 0;
  border-bottom: 1px solid var(--slate-200);
  line-height: 1.4;
}
.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.15);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .pricing-features li::before { color: rgba(255,255,255,0.9); }

.pricing-card .btn-primary {
  width: 100%;
  display: block;
}
.pricing-card.featured .btn-primary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.pricing-card.featured .btn-primary:hover {
  background: transparent;
  color: var(--white);
}

/* Pricing toggle */
.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.pricing-tabs {
  display: inline-flex;
  background: var(--light);
  border: 1px solid var(--slate-200);
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
}
.pricing-tab {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--slate);
  transition: background 0.2s ease, color 0.2s ease;
}
.pricing-tab.active {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(27,111,235,0.3);
}

.pricing-re { display: none; }
.pricing-re.active { display: block; }
.pricing-sb { display: block; }

/* ---------- Portfolio ---------- */
.portfolio-section {
  background: var(--white);
  padding: 80px 0;
}

.portfolio-filters {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate);
  transition: all 0.2s ease;
}
.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.portfolio-card[style*="display: none"] {
  display: none !important;
}

/* Browser chrome mockup */
.mockup-frame {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.mockup-chrome {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 32px;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 10px;
  z-index: 2;
}
.mockup-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28CA41; }

.mockup-address {
  flex: 1;
  height: 18px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}
.mockup-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Simulated page content inside mockup */
.mockup-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  top: 32px;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.mockup-title-bar {
  width: 55%;
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 3px;
  margin-bottom: 8px;
}
.mockup-sub-bar {
  width: 35%;
  height: 7px;
  background: rgba(255,255,255,0.22);
  border-radius: 3px;
  margin-bottom: 14px;
}
.mockup-btn-bar {
  width: 28%;
  height: 22px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
}

.portfolio-card-body {
  padding: 24px 24px 28px;
}
.portfolio-card-body h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.industry-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(27,111,235,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.portfolio-card-body .btn-outline-blue {
  padding: 9px 20px;
  font-size: 13px;
}

/* Mini portfolio (on service pages) */
.portfolio-mini {
  background: var(--light);
  padding: 80px 0;
}
.portfolio-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.portfolio-mini-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
  background: var(--white);
}
.portfolio-mini-card .mockup-frame { aspect-ratio: 4/3; }
.portfolio-mini-label {
  padding: 16px 20px;
}
.portfolio-mini-label strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.portfolio-mini-label span {
  font-size: 0.82rem;
  color: var(--slate);
}

/* ---------- Contact ---------- */
.contact-section {
  background: var(--light);
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-left p {
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.contact-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--navy);
}
.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(27,111,235,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.response-stat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
}
.response-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.response-stat p {
  font-size: 0.85rem;
  color: var(--slate);
  margin: 0;
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group label span.optional {
  font-weight: 400;
  color: var(--slate-light);
  margin-left: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,111,235,0.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ---------- Inline pricing on service pages ---------- */
.pricing-inline {
  background: var(--light);
  padding: 80px 0;
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--light);
  padding: 80px 0;
}
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--slate-200);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--slate-light);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--blue);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-logo .logo-vantage { color: var(--white); }
.footer-logo .logo-digital {
  color: var(--blue);
  font-variant: small-caps;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-left: 6px;
  align-self: center;
}
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--white); }

.footer-cta-card {
  background: rgba(27,111,235,0.12);
  border: 1px solid rgba(27,111,235,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.footer-cta-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  line-height: 1.55;
}
.footer-cta-card .btn-primary {
  padding: 10px 20px;
  font-size: 14px;
  width: 100%;
  display: block;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: center;
}
.footer-bottom p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ---------- Section intro ---------- */
.section-intro {
  margin-bottom: 0;
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-grid { gap: 16px; }
  .pricing-card.featured { transform: scale(1.02); }
  .contact-grid { gap: 40px; }
  .audience-split-grid { grid-template-columns: repeat(3, 1fr); }
  .audience-card { padding: 60px 28px; }
}

@media (max-width: 900px) {
  .audience-split-grid { grid-template-columns: 1fr; }
  .audience-card { padding: 56px 32px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Tablet/Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid var(--slate-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
  }
  .nav-links a {
    padding: 10px 0;
    font-size: 15px;
    width: 100%;
    border-bottom: 1px solid var(--slate-200);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }
  .nav-cta .btn-primary { width: 100%; display: block; text-align: center; }
  .nav-hamburger { display: flex; }
  .nav-open .nav-links { display: flex; }

  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-mini-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; text-align: center; }
  .audience-split-grid { grid-template-columns: 1fr; }
  .audience-card { padding: 48px 28px; }
}

/* Mobile */
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trust-bar-divider { display: none; }
  .form-card { padding: 28px 20px; }
  .hero-content h1 { font-size: 2rem; }
  .section-heading { font-size: 1.7rem; }
  .cta-banner h2 { font-size: 1.7rem; }
  .pricing-toggle { overflow-x: auto; }
  .contact-grid { gap: 32px; }
}
