@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --vv-navy: #3f5f85;
  --vv-navy-light: #5580a8;
  --vv-blue: #2260a8;
  --vv-teal: #2aafca;
  --vv-red: #e63030;
  --vv-gray: #f0f4f8;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --max-w: 1280px;
  --px: 1rem;
  --radius: 0.5rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-md: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 25px rgba(0,0,0,.1), 0 10px 10px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px rgba(0,0,0,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: #1f2937;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Language toggle ─── */
html[lang="en"] .lang-vi { display: none !important; }
html[lang="vi"] .lang-en { display: none !important; }

/* ─── Location toggle ─── */
html[data-loc="dallas"] [data-loc="garland"] { display: none !important; }
html[data-loc="garland"] [data-loc="dallas"] { display: none !important; }

/* ─── Wrapper ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
@media (min-width: 640px)  { :root { --px: 1.5rem; } }
@media (min-width: 1024px) { :root { --px: 2rem; } }

/* ─── Layout shell ─── */
.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* ─── NAV ─── */
.site-nav {
  background: var(--vv-navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.nav-logo .logo-vv { color: #fff; }
.nav-logo .logo-auto {
  color: var(--vv-red);
  -webkit-text-stroke: .5px #fff;
  paint-order: stroke fill;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-left: 2px solid rgba(255,255,255,.2);
  padding-left: .5rem;
  margin-left: .35rem;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .nav-desktop { display: flex; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--vv-red);
  -webkit-text-stroke: .5px #fff;
  paint-order: stroke fill;
}

/* language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.4);
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 999px;
  padding: 4px;
  gap: 0;
}
.lang-toggle button {
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  transition: all .15s;
}
.lang-toggle button.active {
  background: #fff;
  color: var(--vv-navy);
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.lang-toggle button:not(.active):hover { color: #fff; background: rgba(255,255,255,.2); }

.loc-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.25);
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 999px;
  padding: 4px;
  gap: 0;
}
.loc-toggle button {
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  transition: all .15s;
}
.loc-toggle button.active {
  background: var(--vv-teal);
  color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.loc-toggle button:not(.active):hover { color: #fff; background: rgba(255,255,255,.2); }

.nav-call-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--vv-red);
  color: #fff;
  font-weight: 700;
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  transition: background .15s;
  white-space: nowrap;
  font-size: .9rem;
}
.nav-call-btn:hover { background: #f04040; }
.nav-call-btn svg { flex-shrink: 0; }

/* mobile hamburger */
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: var(--radius);
  transition: color .15s;
}
.nav-hamburger:hover { color: var(--vv-red); }
@media (min-width: 768px) { .nav-hamburger { display: none; } }

/* mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--vv-navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: .5rem 1.25rem 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: .75rem .5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .15s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a[aria-current="page"] { color: var(--vv-red); }
.mobile-menu .lang-toggle { margin-top: 1rem; align-self: flex-start; }
.mobile-menu .nav-call-btn { margin-top: .75rem; justify-content: center; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--vv-navy);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
  border-top: 6px solid var(--vv-red);
}
.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.footer-brand .logo-vv { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: #fff; }
.footer-brand .logo-auto {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--vv-red);
  letter-spacing: .12em;
  text-transform: uppercase;
  border-left: 2px solid rgba(255,255,255,.2);
  padding-left: .5rem;
  margin-left: .35rem;
}
.footer-brand .brand-row { display: flex; align-items: center; gap: .25rem; margin-bottom: 1.25rem; }
.footer-brand p { margin-bottom: 1rem; line-height: 1.6; font-size: .95rem; }
.stars { display: flex; gap: 2px; color: #facc15; margin-bottom: .35rem; }
.footer-brand .review-count { font-size: .875rem; }

.footer-col h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { display: flex; gap: .75rem; margin-bottom: 1rem; line-height: 1.5; font-size: .925rem; }
.footer-col ul li .icon { color: var(--vv-red); flex-shrink: 0; margin-top: 2px; }
.footer-col ul a { color: rgba(255,255,255,.8); }
.footer-col ul a:hover { color: #fff; }

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: .75rem; }
.footer-links ul a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.8);
  font-size: .925rem;
  transition: color .15s;
}
.footer-links ul a:hover { color: #fff; }
.footer-links .chevron { color: var(--vv-red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 3rem;
  padding: 1.75rem 0;
  text-align: center;
  font-size: .875rem;
}
.footer-bottom .built-by-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: .375rem 1rem;
  margin-top: .75rem;
  transition: all .2s;
}
.footer-bottom .built-by-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.1);
}
.footer-note { color: rgba(255,255,255,.5); font-size: .75rem; margin-top: .75rem; }

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--vv-navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, var(--vv-navy-light) 0%, var(--vv-navy) 70%);
  mix-blend-mode: multiply;
  opacity: .9;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 768px) { .hero-content { padding: 8rem var(--px); } }
@media (min-width: 1024px) { .hero-content { padding: 10rem var(--px); } }
.hero-inner { max-width: 48rem; }

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.08;
}
.hero-title .accent {
  background: linear-gradient(to right, #f87171, var(--vv-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-weight: 500;
  font-size: .875rem;
  margin-bottom: 2rem;
}
.hero-badge .star-icon { color: #facc15; }
.hero-badge .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.5); margin: 0 .5rem; }

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  font-weight: 500;
  max-width: 40rem;
  margin: 2rem 0;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .hero-btns { flex-direction: row; } }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 3rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
}
.hero-trust-item { display: flex; align-items: center; gap: .5rem; }
.hero-trust-item .check { color: var(--vv-red); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: all .2s;
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--vv-red); color: #fff; box-shadow: var(--shadow-md); }
.btn-red:hover { background: #f04040; }
.btn-teal { background: var(--vv-teal); color: #fff; box-shadow: var(--shadow-md); }
.btn-teal:hover { background: #3bb8d2; }
.btn-navy { background: var(--vv-navy); color: #fff; box-shadow: var(--shadow-md); }
.btn-navy:hover { background: #345070; }
.btn-sm { font-size: .95rem; padding: .75rem 1.5rem; }
.btn-full { width: 100%; }

/* ─── SECTION COMMON ─── */
section { padding: 5rem 0; }
.section-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--vv-red);
  margin-bottom: .75rem;
  display: block;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--vv-navy);
  margin-bottom: 1rem;
}
.section-title-white { color: #fff; }
.section-desc {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.65;
}
.text-center { text-align: center; }
.section-header { max-width: 48rem; margin: 0 auto 4rem; text-align: center; }

/* ─── TRUST SECTION ─── */
.trust-section { background: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .trust-grid { grid-template-columns: 1fr 1fr; } }

.trust-quote-box {
  background: var(--vv-gray);
  border-radius: 1rem;
  padding: 1.5rem;
  border-left: 4px solid var(--vv-blue);
  margin-bottom: 2rem;
}
.trust-quote-box p { font-weight: 500; font-style: italic; color: var(--vv-navy); line-height: 1.6; }
.trust-quote-box p + p { margin-top: .75rem; opacity: .75; }

.trust-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.trust-feature { display: flex; gap: 1rem; }
.trust-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vv-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--vv-blue);
}
.trust-feature h4 { font-weight: 700; color: var(--vv-navy); font-size: .95rem; margin-bottom: .25rem; font-family: var(--font-display); }
.trust-feature p { font-size: .85rem; color: #6b7280; }

.trust-img-wrap { position: relative; }
.trust-img-shadow {
  position: absolute;
  inset: 0;
  background: var(--vv-blue);
  border-radius: 1rem;
  transform: translate(16px, 16px);
}
.trust-img-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.trust-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  z-index: 2;
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-badge .big-num { font-size: 3rem; font-weight: 900; color: var(--vv-red); font-family: var(--font-display); line-height: 1; }
.trust-badge .badge-label { font-weight: 700; color: var(--vv-navy); font-family: var(--font-display); }

/* ─── SERVICES SECTION (homepage 2-col) ─── */
.services-section { background: var(--vv-gray); }
.services-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .services-cols { grid-template-columns: 1fr 1fr; } }

.services-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f3f4f6;
  overflow: hidden;
  transition: box-shadow .2s;
}
.services-card:hover { box-shadow: var(--shadow-md); }
.services-card-head {
  padding: 2rem;
  border-bottom: 1px solid #f3f4f6;
  background: linear-gradient(to right, #fff, #f9fafb);
}
.services-card-loc {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .4rem;
}
.services-card-loc.blue { color: var(--vv-blue); }
.services-card-loc.red { color: var(--vv-red); }
.services-card-head h4 { font-size: 1.4rem; color: var(--vv-navy); margin: .25rem 0 .5rem; }
.services-card-head p { color: #6b7280; font-size: .9rem; }
.services-card-body { padding: 2rem; }
.services-card-body ul { list-style: none; }
.services-card-body ul li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  color: #374151;
  font-weight: 500;
}
.services-card-body ul li .check { color: var(--vv-red); flex-shrink: 0; margin-top: 1px; }
.services-card-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  font-weight: 700;
  color: var(--vv-blue);
  transition: color .15s;
}
.services-card-link:hover { color: var(--vv-navy); }

/* ─── LOCATIONS SECTION ─── */
.locations-section { background: #fff; }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .locations-grid { grid-template-columns: 1fr 1fr; } }

.location-card {
  background: #fff;
  border: 2px solid var(--vv-gray);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s;
}
.location-card:hover { box-shadow: var(--shadow-lg); }
.location-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 8rem; height: 8rem;
  background: var(--vv-gray);
  border-bottom-left-radius: 100%;
  transform: translate(50%, -50%);
  transition: transform .3s;
}
.location-card:hover::before { transform: translate(45%, -45%) scale(1.1); }

.location-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .375rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  color: #fff;
}
.location-badge.blue { background: var(--vv-blue); }
.location-badge.red { background: var(--vv-red); }

.location-card h3 { font-size: 1.75rem; color: var(--vv-navy); margin-bottom: .25rem; }
.location-card .location-city {
  color: #6b7280;
  font-weight: 500;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #f3f4f6;
}

.location-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.location-detail { display: flex; align-items: flex-start; gap: 1rem; }
.location-detail-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--vv-gray);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.location-detail-icon.blue { color: var(--vv-blue); }
.location-detail-icon.red { color: var(--vv-red); }
.location-detail h4 { font-weight: 700; color: #111827; margin-bottom: .2rem; font-family: var(--font-display); font-size: .95rem; }
.location-detail p { color: #6b7280; line-height: 1.5; font-size: .9rem; }
.location-detail a { font-weight: 600; transition: text-decoration .15s; }
.location-detail a:hover { text-decoration: underline; }
.location-detail .link-blue { color: var(--vv-blue); }
.location-detail .link-red { color: var(--vv-red); }

.location-actions { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) { .location-actions { flex-direction: row; } }
.location-actions a { flex: 1; text-align: center; }

/* ─── CTA BANNER ─── */
.cta-banner { background: var(--vv-red); padding: 4rem 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23fff' fill-opacity='.05'/%3E%3C/svg%3E");
}
.cta-banner-content { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); color: #fff; margin-bottom: 1rem; }
.cta-banner p { font-size: 1.2rem; color: rgba(255,255,255,.9); max-width: 40rem; margin: 0 auto 2.5rem; }
.btn-white { background: #fff; color: var(--vv-red); }
.btn-white:hover { background: #f9fafb; }

/* ─── INNER PAGE HERO (navy with gradient) ─── */
.page-hero {
  background: var(--vv-navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, var(--vv-navy-light) 0%, var(--vv-navy) 70%);
  mix-blend-mode: multiply;
  opacity: .9;
  z-index: 0;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 1rem; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,.9); max-width: 40rem; margin: 0 auto; }

/* ─── SERVICE HERO (2-col, white bg) ─── */
.service-hero { background: #fff; padding: 4rem 0; }
@media (min-width: 768px) { .service-hero { padding: 6rem 0; } }
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .service-hero-grid { grid-template-columns: 1fr 1fr; } }

.service-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .375rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.service-tag.blue { background: rgba(34,96,168,.1); color: var(--vv-blue); }
.service-tag.red  { background: rgba(230,48,48,.1);  color: var(--vv-red); }

.service-hero h1 { font-size: clamp(2rem, 4vw, 3.25rem); color: var(--vv-navy); margin-bottom: 1.5rem; line-height: 1.1; }
.service-hero h1 .accent { color: var(--vv-red); }
.service-hero-stars { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.service-hero-stars .stars { flex-shrink: 0; }
.service-hero-stars span { color: #6b7280; font-weight: 500; }
.service-hero p { font-size: 1.1rem; color: #4b5563; line-height: 1.65; margin-bottom: 2rem; }
.service-hero-btns { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .service-hero-btns { flex-direction: row; } }

.service-img-wrap { position: relative; }
.service-img-shadow {
  position: absolute;
  inset: 0;
  background: var(--vv-gray);
  border-radius: 1rem;
  transform: translate(16px, 16px);
}
.service-img-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--vv-gray);
  border-bottom: 1px solid #e5e7eb;
  padding: .75rem 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: #6b7280;
}
.breadcrumb-inner a { transition: color .15s; }
.breadcrumb-inner a:hover { color: var(--vv-navy); }
.breadcrumb-inner .current { color: var(--vv-navy); font-weight: 600; }
.breadcrumb-inner .sep { color: #9ca3af; }

/* ─── SERVICE DETAILS SECTION ─── */
.service-details { background: var(--vv-gray); border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.service-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .service-details-grid { grid-template-columns: 1fr 1fr 1fr; } }
.service-details-main { grid-column: 1; }
@media (min-width: 1024px) { .service-details-main { grid-column: 1 / 3; } }
.service-details-sidebar { position: relative; }

.service-details h2 { font-size: 1.8rem; color: var(--vv-navy); margin-bottom: 2rem; }
.service-details-body { color: #374151; font-size: 1.05rem; line-height: 1.7; }
.service-details-body p + p { margin-top: 1.25rem; }

.detail-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .detail-cards { grid-template-columns: 1fr 1fr; } }
.detail-card {
  background: #fff;
  border-radius: .75rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  box-shadow: var(--shadow-sm);
}
.detail-card-icon { margin-bottom: 1rem; }
.detail-card h3 { font-size: 1.1rem; color: var(--vv-navy); margin-bottom: .75rem; }
.detail-card ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.detail-card ul li { display: flex; align-items: flex-start; gap: .75rem; color: #374151; }
.detail-card ul li .check { flex-shrink: 0; margin-top: 1px; }

/* ─── SIDEBAR CTA ─── */
.sidebar-cta {
  background: var(--vv-navy);
  border-radius: 1.25rem;
  padding: 2rem;
  color: #fff;
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 100px;
}
.sidebar-cta.red-top { border-top: 4px solid var(--vv-red); }
.sidebar-cta h3 { font-size: 1.35rem; margin-bottom: .75rem; }
.sidebar-cta > p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: .95rem; }
.sidebar-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.sidebar-detail { display: flex; align-items: flex-start; gap: 1rem; }
.sidebar-detail .icon { color: var(--vv-red); flex-shrink: 0; margin-top: 2px; }
.sidebar-detail p { color: rgba(255,255,255,.8); line-height: 1.5; font-size: .9rem; }
.sidebar-detail strong { color: #fff; }
.sidebar-cta .cta-phone {
  display: block;
  width: 100%;
  background: var(--vv-red);
  color: #fff;
  text-align: center;
  padding: 1rem;
  border-radius: .5rem;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background .15s;
}
.sidebar-cta .cta-phone:hover { background: #f04040; }
.sidebar-cta .cta-phone + .cta-phone { margin-top: .75rem; font-size: .95rem; padding: .75rem; }

/* ─── CROSS-SELL ─── */
.cross-sell { background: #fff; }
.cross-sell-box {
  background: var(--vv-gray);
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) { .cross-sell-box { flex-direction: row; align-items: center; justify-content: space-between; } }
.cross-sell-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: rgba(230,48,48,.1);
  color: var(--vv-red);
  padding: .25rem .75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.cross-sell h3 { font-size: 1.25rem; color: var(--vv-navy); margin-bottom: .5rem; }
.cross-sell p { color: #6b7280; max-width: 36rem; font-size: .95rem; }
.cross-sell a { white-space: nowrap; align-self: flex-start; }
@media (min-width: 768px) { .cross-sell a { align-self: center; } }

/* ─── SERVICES HUB GRID ─── */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .hub-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .hub-grid { grid-template-columns: 1fr 1fr 1fr; } }

.hub-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
  height: 100%;
}
.hub-card:hover { box-shadow: var(--shadow-md); }
.hub-card .service-tag { align-self: flex-start; margin-bottom: 1.5rem; }
.hub-card-icon { margin-bottom: 1rem; }
.hub-card h3 { font-size: 1.35rem; color: var(--vv-navy); margin-bottom: .75rem; }
.hub-card p { color: #6b7280; font-size: .95rem; flex: 1; margin-bottom: 2rem; }
.hub-card .learn-more {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  color: var(--vv-teal);
  transition: color .15s;
  font-size: .95rem;
}
.hub-card:hover .learn-more { color: var(--vv-navy); }

/* ─── ABOUT PAGE ─── */
.about-content { background: #fff; }
.about-prose { max-width: 48rem; margin: 0 auto; }
.about-prose h2 { font-size: 2rem; color: var(--vv-navy); margin-bottom: 1.5rem; }
.about-prose p { font-size: 1.05rem; color: #374151; line-height: 1.7; margin-bottom: 1.5rem; }
.about-highlight-box {
  background: var(--vv-gray);
  border-radius: 1rem;
  padding: 2rem;
  border-left: 4px solid var(--vv-blue);
  margin: 2.5rem 0;
}
.about-highlight-box h3 { font-size: 1.2rem; color: var(--vv-navy); margin-bottom: 1rem; }
.about-highlight-box p { font-style: italic; color: #374151; line-height: 1.65; margin-bottom: 0; }
.about-highlight-box p + p { margin-top: .75rem; opacity: .75; }

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .about-values { grid-template-columns: 1fr 1fr; } }
.about-value-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.about-value-card .icon { color: var(--vv-blue); margin-bottom: 1rem; }
.about-value-card h4 { font-size: 1.1rem; color: var(--vv-navy); margin-bottom: .5rem; }
.about-value-card p { font-size: .9rem; color: #6b7280; line-height: 1.6; }

/* ─── CONTACT PAGE ─── */
.contact-section { background: var(--vv-gray); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s;
}
.contact-card:hover { box-shadow: var(--shadow-lg); }
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 8rem; height: 8rem;
  background: var(--vv-gray);
  border-bottom-left-radius: 100%;
  transform: translate(50%, -50%);
  transition: transform .3s;
}
.contact-card:hover::before { transform: translate(45%, -45%) scale(1.1); }

/* ─── PAPER STREET BRAND ─── */
:root {
  --ps-dark: #111827;
  --ps-accent: #6ee7b7;
  --ps-accent-mid: #10b981;
}

/* PS brand header — bleeds to card edges */
.ps-brand-header {
  background: var(--ps-dark);
  border-radius: 1.125rem 1.125rem 0 0;
  margin: -2.5rem -2.5rem 2.5rem;
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .ps-brand-header { margin: -3.5rem -3.5rem 2.5rem; padding: 2rem 3.5rem; }
}
.ps-monogram {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--ps-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--ps-dark);
  letter-spacing: -.04em;
  flex-shrink: 0;
  font-family: Georgia, 'Times New Roman', serif;
}
.ps-brand-info { flex: 1; min-width: 0; }
.ps-wordmark {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.25;
  margin-bottom: .2rem;
}
.ps-tagline {
  display: block;
  font-size: .6875rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 500;
}
.ps-site-link {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ps-accent);
  text-decoration: none;
  letter-spacing: .02em;
  border: 1px solid rgba(110,231,183,.3);
  border-radius: 100px;
  padding: .375rem .875rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s;
}
.ps-site-link:hover { background: rgba(110,231,183,.12); }
@media (max-width: 479px) { .ps-site-link { display: none; } }

/* ─── BUILT BY PAGE ─── */
.built-by-section { background: var(--vv-gray); min-height: 70vh; }
.back-to-vv {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: .8rem;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: none;
  transition: color .15s;
}
.back-to-vv:hover { color: var(--vv-navy); }

.built-by-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f3f4f6;
  padding: 2.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .built-by-card { padding: 3.5rem; } }
.built-by-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--ps-accent-mid); margin-bottom: 1rem; display: block; }
.built-by-card h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--vv-navy); margin-bottom: 1.5rem; }
.built-by-card > p { font-size: 1.05rem; color: #6b7280; line-height: 1.7; margin-bottom: 1.5rem; }
.built-by-divider { border: none; border-top: 1px solid #f3f4f6; margin: 2.5rem 0; }
.built-by-card h2 { font-size: 1.4rem; color: var(--vv-navy); margin-bottom: 1rem; }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature-item { background: var(--vv-gray); border-radius: .75rem; border: 1px solid #f3f4f6; padding: 1.25rem; }
.feature-item-head { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ps-accent-mid); flex-shrink: 0; }
.feature-item-head span { font-weight: 700; color: var(--vv-navy); font-size: .875rem; }
.feature-item p { color: #6b7280; font-size: .875rem; line-height: 1.6; }
.portfolio-item { display: flex; flex-direction: column; overflow: hidden; cursor: pointer; }
.portfolio-thumb-wrap { overflow: hidden; border-radius: .5rem .5rem 0 0; margin: -1.25rem -1.25rem 1rem -1.25rem; width: calc(100% + 2.5rem); flex-shrink: 0; cursor: pointer; position: relative; }
.portfolio-thumb-wrap::after { content: '⤢'; position: absolute; top: .5rem; right: .625rem; width: 1.75rem; height: 1.75rem; border-radius: 50%; background: rgba(255,255,255,.85); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--vv-navy); opacity: 0; transition: opacity .2s ease; pointer-events: none; line-height: 1.75rem; text-align: center; }
.portfolio-thumb-wrap:hover::after { opacity: 1; }
.portfolio-thumb { width: 100%; height: 160px; object-fit: cover; display: block; transition: transform .35s ease; }
.portfolio-item:hover .portfolio-thumb { transform: scale(1.04); }
.portfolio-item p { flex: 1; margin-bottom: .75rem; }
.portfolio-footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; flex-wrap: wrap; margin-top: auto; }
.portfolio-tag { display: inline-block; font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--vv-navy); background: #e8eef5; border-radius: 2rem; padding: .2rem .65rem; }
.portfolio-link { font-size: .75rem; font-weight: 700; color: var(--vv-blue); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; transition: color .15s; }
.portfolio-link:hover { color: var(--vv-navy); }

/* ─── Portfolio lightbox modal ─── */
.pf-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15,23,42,.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.pf-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.pf-modal {
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  position: relative;
  transform: translateY(12px) scale(.97);
  transition: transform .25s ease, opacity .25s ease;
  opacity: 0;
}
.pf-modal-overlay.is-open .pf-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.pf-modal-img-wrap { width: 100%; overflow: hidden; border-radius: 1rem 1rem 0 0; }
.pf-modal-img { width: 100%; height: 220px; object-fit: cover; display: block; }
@media (min-width: 480px) { .pf-modal-img { height: 260px; } }
.pf-modal-body { padding: 1.5rem; }
.pf-modal-title { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--vv-navy); margin-bottom: .75rem; line-height: 1.25; }
.pf-modal-desc { color: #4b5563; font-size: .9rem; line-height: 1.65; margin-bottom: 1rem; }
.pf-modal-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; }
.pf-modal-tag { display: inline-block; font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--vv-navy); background: #e8eef5; border-radius: 2rem; padding: .25rem .75rem; }
.pf-modal-site-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  background: var(--vv-navy);
  padding: .5rem 1rem;
  border-radius: .5rem;
  transition: background .15s;
  white-space: nowrap;
  text-decoration: none;
}
.pf-modal-site-link:hover { background: var(--vv-blue); color: #fff; }
.pf-modal-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  color: #374151;
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  transition: background .15s, color .15s;
  z-index: 10;
}
.pf-modal-close:hover { background: var(--vv-navy); color: #fff; }
.built-by-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.5rem; }
.built-by-list li { display: flex; align-items: flex-start; gap: .75rem; color: #374151; }
.built-by-list .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ps-accent-mid); flex-shrink: 0; margin-top: .4rem; }
.contact-info-box {
  background: var(--vv-gray);
  border-radius: .75rem;
  border-left: 4px solid var(--ps-dark);
  padding: 2rem;
  margin-bottom: 2.5rem;
}
.contact-info-box h2 { font-size: 1.2rem; color: var(--vv-navy); margin-bottom: 1rem; }
.contact-info-box p { color: #6b7280; margin-bottom: .75rem; }
.contact-info-box a { color: var(--vv-blue); text-decoration: underline; text-underline-offset: 2px; transition: color .15s; }
.contact-info-box a:hover { color: var(--vv-navy); }
.built-by-form h2 { font-size: 1.4rem; color: var(--vv-navy); margin-bottom: .5rem; }
.built-by-form p { color: #6b7280; margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--vv-navy); }
.form-group label span { color: var(--vv-red); }
.form-group input, .form-group textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  background: #fff;
  padding: .625rem 1rem;
  font-size: .875rem;
  color: #1f2937;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--vv-navy);
  box-shadow: 0 0 0 3px rgba(63,95,133,.15);
}
.form-group textarea { resize: none; }
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--vv-navy);
  color: #fff;
  font-weight: 600;
  font-size: .875rem;
  padding: .75rem 1.5rem;
  border-radius: .5rem;
  border: none;
  cursor: pointer;
  transition: background .15s;
  margin-top: .25rem;
}
.form-submit-btn:hover { background: var(--vv-blue); }

/* ─── Paper Street page footer ─── */
.ps-page-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 1rem;
  background: var(--ps-dark);
  flex-wrap: wrap;
}
.ps-page-footer__copy {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  font-family: var(--font-sans);
}
.ps-page-footer__link {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--ps-accent);
  font-family: var(--font-sans);
  transition: opacity .15s;
}
.ps-page-footer__link:hover { opacity: .75; }

/* ─── UTILS ─── */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* SVG inline icons */
.icon-svg { display: inline-block; vertical-align: middle; }

/* Star colors */
.text-yellow { color: #facc15; }
.text-red { color: var(--vv-red); }
.text-blue { color: var(--vv-blue); }
.text-teal { color: var(--vv-teal); }
.text-navy { color: var(--vv-navy); }
.text-gray { color: #6b7280; }
.text-white { color: #fff; }

/* ═══════════════════════════════════════════════════════════
   PAPER STREET MARKETING PAGE  (built-by.html)
   body.ps-page scopes all rules to avoid collisions
   ═══════════════════════════════════════════════════════════ */

:root {
  --ps-charcoal: #0d1117;
  --ps-ink: #1a2332;
  --ps-green: #6ee7b7;
  --ps-green-mid: #10b981;
  --ps-red: #e63030;
  --ps-red-bright: #f87171;
  --ps-muted: rgba(255,255,255,.55);
  --ps-border: rgba(255,255,255,.1);
}

/* ── Reset body for PS page ── */
body.ps-page { background: #f8fafc; }

/* ─── HERO ─── */
.ps-hero {
  background: var(--ps-charcoal);
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem 6rem;
}
.ps-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(16,185,129,.08) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 20%, rgba(230,48,48,.06) 0%, transparent 60%);
  pointer-events: none;
}
.ps-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
}

.ps-back-link {
  display: inline-block;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  margin-bottom: 2.5rem;
  transition: color .15s;
  letter-spacing: .02em;
}
.ps-back-link:hover { color: rgba(255,255,255,.8); }

.ps-monogram-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--ps-border);
  border-radius: 999px;
  padding: .5rem 1rem .5rem .5rem;
  margin-bottom: 2.25rem;
}
.ps-monogram-badge__mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--ps-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 800;
  color: var(--ps-charcoal);
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.ps-monogram-badge__name {
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .01em;
}

.ps-hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
}
.ps-hero-headline__white { color: #fff; }
.ps-hero-headline__accent { color: var(--ps-red-bright); }

.ps-hero-pitch {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.ps-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--ps-green);
  color: var(--ps-charcoal);
  font-weight: 800;
  font-size: 1rem;
  padding: .9rem 2rem;
  border-radius: .5rem;
  letter-spacing: .01em;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.ps-cta-btn:hover { background: #34d399; transform: translateY(-2px); }
.ps-cta-btn--outline {
  background: transparent;
  color: var(--ps-green);
  border: 2px solid rgba(110,231,183,.4);
}
.ps-cta-btn--outline:hover { background: rgba(110,231,183,.1); transform: translateY(-2px); }

/* ─── SHARED SECTION TYPOGRAPHY ─── */
.ps-section-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ps-green-mid);
  margin-bottom: .625rem;
  display: block;
}
.ps-section-label--light { color: var(--ps-green); }
.ps-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.ps-section-title--white { color: #fff; }
.ps-section-desc {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.65;
  max-width: 42rem;
}
.ps-section-desc--light { color: rgba(255,255,255,.65); max-width: 38rem; }
.ps-subsection-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: .5rem;
  margin-top: 3rem;
  letter-spacing: -0.02em;
}
.ps-subsection-desc { font-size: .925rem; color: #6b7280; margin-bottom: 2rem; }

/* ─── CASE STUDY SECTION ─── */
.ps-case-study {
  background: #fff;
  padding: 5rem 0;
}

.ps-vv-callout {
  background: var(--ps-ink);
  border-radius: 1rem;
  padding: 2rem 2.25rem;
  margin: 2.5rem 0;
  border-left: 4px solid var(--ps-red);
}
.ps-vv-callout__kicker {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .75rem;
}
.ps-vv-callout__quote {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: .875rem;
}
.ps-vv-callout__body {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin: 0;
}

.ps-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .ps-feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ps-feature-grid { grid-template-columns: 1fr 1fr 1fr; } }

.ps-feature-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: .875rem;
  padding: 1.5rem;
  transition: box-shadow .2s, border-color .2s;
}
.ps-feature-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  border-color: #d1d5db;
}
.ps-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: .625rem;
  background: var(--ps-charcoal);
  color: var(--ps-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.ps-feature-card h4 {
  font-family: var(--font-display);
  font-size: .975rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: .5rem;
  letter-spacing: -0.01em;
}
.ps-feature-card p {
  font-size: .875rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ─── WHAT WE BUILD SECTION ─── */
.ps-services-section {
  background: var(--ps-charcoal);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.ps-services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(16,185,129,.07) 0%, transparent 60%);
  pointer-events: none;
}
.ps-services-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .ps-services-inner { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
}
.ps-services-header { display: flex; flex-direction: column; align-items: flex-start; }
.ps-services-header .ps-section-desc--light { margin-bottom: 2rem; }

.ps-services-grid {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.ps-service-pill {
  display: flex;
  align-items: center;
  gap: .875rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--ps-border);
  border-radius: .625rem;
  padding: .875rem 1.25rem;
  font-size: .9375rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: background .15s, border-color .15s;
}
.ps-service-pill:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.2);
}
.ps-service-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ps-green);
  flex-shrink: 0;
}

/* ─── PORTFOLIO FILTER BAR ─── */
.ps-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.75rem 0 2rem;
}

.ps-filter-btn {
  padding: .4rem 1.1rem;
  border-radius: 2rem;
  border: 1.5px solid #d1d5db;
  background: #fff;
  color: #374151;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
  line-height: 1.4;
}

.ps-filter-btn:hover {
  border-color: var(--ps-green-mid);
  color: var(--ps-green-mid);
}

.ps-filter-btn--active {
  background: var(--ps-charcoal);
  border-color: var(--ps-charcoal);
  color: #fff;
}

.ps-filter-btn--active:hover {
  background: var(--ps-charcoal);
  border-color: var(--ps-charcoal);
  color: #fff;
}

.ps-portfolio-item[hidden] {
  display: none;
}

/* ─── PORTFOLIO SECTION ─── */
.ps-portfolio-section {
  background: #f8fafc;
  padding: 5rem 0;
}

.ps-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .ps-portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ps-portfolio-grid { grid-template-columns: 1fr 1fr 1fr; } }

.ps-portfolio-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.ps-portfolio-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  border-color: #d1d5db;
  transform: translateY(-2px);
}

.ps-portfolio-thumb-wrap {
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.ps-portfolio-thumb-wrap::after {
  content: '⤢';
  position: absolute;
  top: .625rem;
  right: .75rem;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--ps-charcoal);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
  line-height: 1.875rem;
  text-align: center;
}
.ps-portfolio-thumb-wrap:hover::after { opacity: 1; }

.ps-portfolio-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.ps-portfolio-item:hover .ps-portfolio-thumb { transform: scale(1.04); }

.ps-portfolio-item__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ps-portfolio-item__head {
  margin-bottom: .5rem;
}
.ps-portfolio-item__head span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: #111827;
  letter-spacing: -0.01em;
}
.ps-portfolio-item__body p {
  font-size: .875rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: .75rem;
  flex: 1;
}
.ps-portfolio-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.ps-portfolio-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #374151;
  background: #f3f4f6;
  border-radius: 2rem;
  padding: .2rem .7rem;
}
.ps-portfolio-link {
  font-size: .75rem;
  font-weight: 700;
  color: var(--ps-green-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  transition: color .15s;
}
.ps-portfolio-link:hover { color: var(--ps-charcoal); }

/* ─── CONTACT SECTION ─── */
.ps-contact-section {
  background: #fff;
  padding: 5rem 0;
  border-top: 1px solid #e5e7eb;
}
.ps-contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .ps-contact-inner { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
}

.ps-contact-links {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-top: 2rem;
}
.ps-contact-link {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  font-weight: 600;
  color: #374151;
  transition: color .15s;
}
.ps-contact-link svg { color: var(--ps-green-mid); flex-shrink: 0; }
.ps-contact-link:hover { color: #111827; }

.ps-contact-form-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 2.5rem;
}
.ps-contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: .375rem;
  letter-spacing: -0.02em;
}
.ps-contact-form-card > p {
  font-size: .875rem;
  color: #6b7280;
  margin-bottom: 1.75rem;
}

.ps-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 480px) { .ps-form-row { grid-template-columns: 1fr 1fr; } }

.ps-form-group {
  display: flex;
  flex-direction: column;
  gap: .375rem;
  margin-bottom: 1.25rem;
}
.ps-form-group:last-child { margin-bottom: 0; }
.ps-form-group label {
  font-size: .8125rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: .01em;
}
.ps-required { color: var(--ps-red); }
.ps-optional { font-weight: 400; color: #9ca3af; }
.ps-form-group input,
.ps-form-group textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: .5rem;
  background: #fff;
  padding: .625rem 1rem;
  font-size: .875rem;
  color: #111827;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.ps-form-group input:focus,
.ps-form-group textarea:focus {
  outline: none;
  border-color: var(--ps-green-mid);
  box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}
.ps-form-group textarea { resize: none; }
.ps-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--ps-charcoal);
  color: #fff;
  font-weight: 700;
  font-size: .9375rem;
  padding: .8rem 1.75rem;
  border-radius: .5rem;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .15s;
  margin-top: .5rem;
}
.ps-submit-btn:hover { background: #1a2332; transform: translateY(-1px); }
.ps-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
