/* ============================================================
   RF MEDIA — Design System (Four Horsemen / Killeen inspired)
   ============================================================ */

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

:root {
  /* Colors */
  --black:   #000000;
  --dark:    #0d0d0d;
  --dark2:   #111111;
  --light:   #F5F5F5;
  --lighter: #FFFFFF;
  --text:    #292929;
  --muted:   #6B6B6B;
  --muted2:  #999999;
  --light-muted: #D3D3D3;
  --border-light: rgba(0,0,0,.1);
  --border-dark:  rgba(255,255,255,.12);

  /* Accent — RF Media Blue */
  --blue:       #0A84FF;
  --blue-light: #64D2FF;
  --blue-bg:    rgba(10,132,255,.1);

  /* Typography */
  --font-display: 'Anton', Arial, sans-serif;
  --font-body:    'Instrument Sans', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--light); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
.d-hero {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 8rem);
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-weight: 400; /* Anton is already ultra-bold */
}

.d-xl {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
  font-weight: 400;
}

.d-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 400;
}

.d-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 400;
}

.accent { color: var(--blue-light); }

.eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.eyebrow-blue {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-light);
  display: block;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600; font-size: .9rem;
  padding: .75rem 1.75rem;
  border-radius: 9999px;
  cursor: pointer; transition: all .22s; border: none;
  white-space: nowrap;
}
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(10,132,255,.35); }

.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }

.btn-outline-dark { background: transparent; color: var(--text); border: 1.5px solid rgba(0,0,0,.3); }
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); }

.btn-black { background: var(--black); color: #fff; border-radius: 9999px; }
.btn-black:hover { background: #1a1a1a; transform: translateY(-2px); }

.btn-white-solid { background: #fff; color: var(--text); }
.btn-white-solid:hover { background: var(--light); transform: translateY(-2px); }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
section { padding: 6rem 0; }

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center p { max-width: 560px; margin: .75rem auto 0; }
.section-header p { margin-top: .6rem; color: var(--muted); font-size: 1.05rem; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: var(--black);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.nav-left { display: flex; align-items: center; gap: 2.5rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-logo-wrap {
  display: flex; align-items: center; gap: .65rem;
  position: absolute; left: 50%; transform: translateX(-50%);
}
@media (max-width: 900px) {
  .nav-logo-wrap { position: static; transform: none; }
}
@media (max-width: 768px) {
  .nav-logo-wrap {
    position: absolute; left: 50%; transform: translateX(-50%);
  }
}

.nav-logo-box {
  width: 40px; height: 40px; border: 2px solid #fff;
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .95rem; color: #fff; font-weight: 400;
  flex-shrink: 0;
}
.nav-logo-label {
  font-family: var(--font-display); font-size: 1rem; letter-spacing: .15em;
  text-transform: uppercase; color: #fff;
}

.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: .4rem; }
.nav-phone svg { opacity: .7; }

.nav-book {
  background: var(--blue) !important;
  color: #fff !important;
  padding: .5rem 1.2rem !important;
  border-radius: 9999px !important;
  font-size: .8rem !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  display: flex !important; align-items: center !important; gap: .4rem !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.nav-book:hover {
  background: var(--blue-light) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(10,132,255,.4) !important;
  color: #fff !important;
}

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

.nav-mobile {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: #0a0a0a; padding: 1rem 1.5rem 1.5rem;
  flex-direction: column; gap: 0; z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,.08);
  max-height: calc(100vh - 64px); overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: .82rem; font-weight: 500;
  letter-spacing: .03em; text-transform: none;
  color: rgba(255,255,255,.72);
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.nav-mobile a:hover { color: #fff; }
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .nav-book {
  display: flex !important; align-items: center; justify-content: center;
  margin-top: 1rem;
  border-bottom: none !important;
  border-radius: 9999px !important;
  padding: .7rem 1.25rem !important;
  font-size: .8rem !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
}

@media (max-width: 768px) {
  .nav-left .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-right > *:not(.nav-toggle) { display: none; }
  .nav-right { gap: .75rem; }
  /* Hide Free Strategy Call button from top bar — it lives in the menu */
  .nav-right .nav-book { display: none !important; }
}

/* ── HERO ── */
.hero {
  background: var(--black);
  min-height: 100vh;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .3; filter: grayscale(20%);
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.92) 45%, rgba(0,0,0,.35) 100%),
              linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 2.5rem 5rem;
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: flex; flex-direction: column;
  padding-top: 8rem;
}
.hero-location {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 9999px; padding: .35rem .9rem;
  font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.75);
  letter-spacing: .06em; margin-bottom: 1.5rem; width: fit-content;
}
.hero-location::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-light); flex-shrink: 0;
}
.hero-title { color: #fff; margin-bottom: 1.75rem; }
.hero-title .blue { color: var(--blue-light); }

.hero-bullets { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 2.5rem; }
.hero-bullets li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; color: var(--light-muted);
}
.hero-bullets svg { flex-shrink: 0; opacity: .7; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── STATS STRIP ── */
.stats-strip { background: var(--black); padding: 3.5rem 0; border-top: 1px solid rgba(255,255,255,.07); }
.stats-strip-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff; line-height: 1; letter-spacing: -.02em;
  margin-bottom: .35rem;
}
.stat-num span { color: var(--blue-light); }
.stat-label { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted2); }

@media (max-width: 768px) { .stats-strip-inner { grid-template-columns: repeat(2,1fr); } }

/* ── VIRAL / SOCIAL ── */
.viral-section { background: var(--light); }
.viral-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.phone-stack {
  position: relative; height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.phone-card {
  position: absolute;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid rgba(0,0,0,.08);
  box-shadow: 0 25px 70px rgba(0,0,0,.15);
  background: #1a1a1a;
}
.phone-c { width: 175px; height: 350px; z-index: 3; border-color: var(--blue); box-shadow: 0 30px 80px rgba(10,132,255,.25); }
.phone-l { width: 145px; height: 290px; z-index: 2; left: 15px; transform: rotate(-8deg) translateY(30px); opacity: .7; }
.phone-r { width: 145px; height: 290px; z-index: 2; right: 15px; transform: rotate(8deg) translateY(30px); opacity: .7; }
.phone-inner { width: 100%; height: 100%; background: linear-gradient(160deg,#1e2a3a,#0f172a); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .5rem; color: var(--muted2); font-size: .8rem; }
.phone-emoji { font-size: 2.5rem; }

.viral-bubble {
  position: absolute; z-index: 10;
  background: #fff; border-radius: 14px;
  padding: .8rem 1.1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border: 1px solid var(--border-light);
}
.vb-label { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.vb-val { font-family: var(--font-display); font-size: 1.6rem; color: var(--text); line-height: 1.1; margin-top: .1rem; }
.bubble-l { top: 22%; left: -15px; }
.bubble-r { bottom: 25%; right: -15px; }

.viral-text .eyebrow-blue { margin-bottom: 1rem; }
.viral-text h2 { color: var(--text); margin-bottom: 1.1rem; }
.viral-text p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; }

.metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-bottom: 2rem; }
.metric-box { background: #fff; border: 1px solid var(--border-light); border-radius: 12px; padding: 1rem 1.25rem; }
.metric-val { font-family: var(--font-display); font-size: 1.6rem; color: var(--blue); }
.metric-lab { font-size: .78rem; color: var(--muted); margin-top: .15rem; }

@media (max-width: 900px) { .viral-grid { grid-template-columns: 1fr; } .phone-stack { height: 360px; margin-bottom: 2rem; } }

/* ── SERVICES (home overview) ── */
.services-home { background: var(--black); }
.services-home .section-header .eyebrow-blue { margin-bottom: .6rem; }
.services-home .section-header h2 { color: #fff; }
.services-home .section-header p { color: var(--light-muted); }

.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); }
/* center lone last card in a 3-col grid (e.g. 7 items → 3+3+1) */
.svc-grid .svc-card:last-child:nth-child(3n+1) { grid-column: 2; }
.svc-card {
  background: var(--dark2);
  padding: 2.5rem 2rem;
  transition: background .25s;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--blue); transform: scaleX(0); transition: transform .3s;
}
.svc-card:hover { background: #1a1a1a; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { font-size: 1.75rem; margin-bottom: 1.25rem; }
.svc-card h3 { font-family: var(--font-display); font-size: 1.3rem; text-transform: uppercase; color: #fff; margin-bottom: .6rem; }
.svc-card p { font-size: .88rem; color: var(--light-muted); line-height: 1.65; }
.svc-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-size: .82rem; font-weight: 600; color: var(--blue-light); transition: gap .2s; }
.svc-card:hover .svc-link { gap: .65rem; }

@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .svc-grid .svc-card:last-child:nth-child(3n+1) { grid-column: auto; }
  .svc-card { padding: 1.5rem 1.25rem; }
  .svc-card h3 { font-size: 1rem; }
  .svc-card p { font-size: .8rem; }
  .svc-icon { font-size: 1.4rem; margin-bottom: .75rem; }
}

/* ── PROCESS ── */
.process-section { background: var(--light); }
.process-section .section-header h2 { color: var(--text); }
.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.steps-row::before {
  content: '';
  position: absolute; top: 40px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 1px; background: var(--border-light); z-index: 0;
}
.step {
  text-align: center; position: relative; z-index: 1;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 18px; padding: 2rem 1.5rem;
  transition: box-shadow .25s, transform .25s;
}
.step:hover { box-shadow: 0 20px 60px rgba(0,0,0,.09); transform: translateY(-4px); }
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-family: var(--font-display); font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step-badge { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); background: var(--blue-bg); padding: .25rem .7rem; border-radius: 9999px; display: inline-block; margin-bottom: .6rem; }
.step h3 { font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; color: var(--text); margin-bottom: .4rem; }
.step p { font-size: .84rem; color: var(--muted); }

@media (max-width: 900px) { .steps-row { grid-template-columns: repeat(2,1fr); } .steps-row::before { display: none; } }
@media (max-width: 580px) { .steps-row { grid-template-columns: 1fr; } }

/* ── PRICING ── */
.pricing-section { background: var(--black); }
.pricing-section .section-header h2 { color: #fff; }
.pricing-section .section-header p { color: var(--light-muted); }

.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.p-card {
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 2.5rem 2rem;
  position: relative; transition: border-color .25s, transform .25s;
}
.p-card:hover { border-color: rgba(100,210,255,.35); transform: translateY(-4px); }
.p-card.featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.p-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .85rem; border-radius: 9999px; white-space: nowrap; }

.p-card h3 { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; color: #fff; margin-bottom: .4rem; }
.p-card .p-sub { font-size: .84rem; color: var(--muted2); margin-bottom: 1.25rem; }
.p-card .p-price { font-family: var(--font-display); font-size: 3rem; color: #fff; line-height: 1; }
.p-card .p-price sup { font-size: 1.25rem; vertical-align: top; margin-top: .5rem; display: inline-block; }
.p-card .p-price .per { font-family: var(--font-body); font-size: .9rem; color: var(--muted2); }
.p-card .p-note { font-size: .78rem; color: var(--muted2); margin-top: .25rem; margin-bottom: 1.75rem; }

.p-features { display: flex; flex-direction: column; margin-bottom: 2rem; }
.p-feature {
  display: flex; align-items: center; gap: .7rem;
  padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .88rem; color: var(--light-muted);
}
.p-feature:last-child { border-bottom: none; }
.p-feature::before { content: '✓'; width: 18px; height: 18px; background: var(--blue-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: var(--blue-light); flex-shrink: 0; text-align: center; line-height: 18px; }

.p-cta { width: 100%; display: block; text-align: center; }

@media (max-width: 900px) { .pricing-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ── ADD-ONS ── */
.addons-section { background: var(--light); }
.addons-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.addon-card { background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 1.75rem; display: flex; align-items: flex-start; gap: 1rem; transition: box-shadow .25s, transform .25s; }
.addon-card:hover { box-shadow: 0 15px 50px rgba(0,0,0,.08); transform: translateY(-3px); }
.addon-icon { font-size: 1.5rem; flex-shrink: 0; }
.addon-info h4 { font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; color: var(--text); margin-bottom: .3rem; }
.addon-info p { font-size: .84rem; color: var(--muted); }
.addon-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--blue); margin-top: .4rem; }

@media (max-width: 900px) { .addons-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .addons-grid { grid-template-columns: 1fr; } }

/* ── CLIENTS / TRUSTED BY ── */
.clients-section { background: var(--light); border-top: 1px solid var(--border-light); }
.clients-section .section-header h2 { color: var(--text); }
.clients-scroll { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.client-pill {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 9999px; padding: .55rem 1.25rem;
  font-size: .82rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: .5rem;
  transition: border-color .2s, box-shadow .2s;
}
.client-pill:hover { border-color: var(--blue); box-shadow: 0 4px 15px rgba(10,132,255,.1); }
.client-pill .follower { font-size: .72rem; color: var(--blue-light); font-weight: 700; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--black); }
.testimonials-section .section-header h2 { color: #fff; }
.testimonials-section .section-header p { color: var(--light-muted); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card { background: #111; border: 1px solid rgba(255,255,255,.07); border-radius: 20px; padding: 2rem; position: relative; }
.testi-card::before { content: '"'; position: absolute; top: 1rem; right: 1.5rem; font-size: 4rem; font-family: Georgia,serif; color: rgba(100,210,255,.2); line-height: 1; }
.stars { color: #FBBF24; letter-spacing: .1em; font-size: .9rem; margin-bottom: .75rem; }
.testi-text { font-size: .9rem; color: var(--light-muted); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: #1e2a3a; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .85rem; color: var(--blue-light); flex-shrink: 0; border: 2px solid rgba(100,210,255,.25); }
.testi-name { font-weight: 700; font-size: .88rem; color: #fff; }
.testi-role { font-size: .75rem; color: var(--muted2); }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── CTA BANNER ── */
.cta-banner-dark { background: var(--black); padding: 5.5rem 0; text-align: center; border-top: 1px solid rgba(255,255,255,.07); }
.cta-banner-dark h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner-dark p { color: var(--light-muted); margin-bottom: 2rem; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }

.cta-banner-blue { background: var(--blue); padding: 5.5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner-blue::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.05); }
.cta-banner-blue h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner-blue p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── FAQ ── */
.faq-section { background: var(--light); }
.faq-section .section-header h2 { color: var(--text); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-tabs { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.faq-tab { background: #fff; border: 1px solid var(--border-light); border-radius: 9999px; padding: .45rem 1rem; font-size: .78rem; font-weight: 600; cursor: pointer; transition: all .2s; color: var(--muted); }
.faq-tab:hover, .faq-tab.active { background: var(--black); color: #fff; border-color: var(--black); }
.faq-items { display: none; }
.faq-items.active { display: flex; flex-direction: column; gap: .6rem; }
.faq-item { background: #fff; border: 1px solid var(--border-light); border-radius: 14px; overflow: hidden; }
.faq-q { padding: 1.1rem 1.4rem; font-weight: 700; font-size: .95rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .2s; user-select: none; }
.faq-q:hover { background: #fafafa; }
.faq-icon { font-size: 1.1rem; color: var(--blue); transition: transform .3s; flex-shrink: 0; font-weight: 700; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; font-size: .9rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.4rem 1.1rem; }

/* ── PORTFOLIO ── */
.portfolio-page { background: var(--light); }
.port-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.port-btn { background: #fff; border: 1px solid var(--border-light); border-radius: 9999px; padding: .45rem 1.1rem; font-size: .78rem; font-weight: 600; cursor: pointer; color: var(--muted); transition: all .2s; }
.port-btn:hover, .port-btn.active { background: var(--black); color: #fff; border-color: var(--black); }

.port-masonry { columns: 3; column-gap: 1.25rem; }
.port-item { break-inside: avoid; margin-bottom: 1.25rem; border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; border: 1px solid var(--border-light); background: #fff; transition: box-shadow .25s; }
.port-item:hover { box-shadow: 0 20px 60px rgba(0,0,0,.12); }
.port-inner { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .5rem; background: linear-gradient(135deg, #e8eaed, #f5f5f5); color: var(--muted); font-size: .78rem; }
.port-item:nth-child(3n+1) .port-inner { aspect-ratio: 4/5; }
.port-item:nth-child(3n+2) .port-inner { aspect-ratio: 3/4; }
.port-item:nth-child(3n+3) .port-inner { aspect-ratio: 1/1; }
.port-emoji { font-size: 2rem; }
.port-tag-badge { position: absolute; top: .65rem; left: .65rem; background: var(--blue); color: #fff; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .2rem .55rem; border-radius: 6px; }
.port-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 55%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 1.25rem; }
.port-item:hover .port-overlay { opacity: 1; }
.port-ov-title { font-family: var(--font-display); font-size: .95rem; text-transform: uppercase; color: #fff; }
.port-ov-sub { font-size: .73rem; color: var(--blue-light); font-weight: 600; margin-top: .15rem; }

@media (max-width: 900px) { .port-masonry { columns: 2; } }
@media (max-width: 580px) { .port-masonry { columns: 1; } }

/* ── ABOUT ── */
.about-section { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-placeholder { border-radius: 20px; aspect-ratio: 4/5; background: linear-gradient(135deg,#e2e8f0,#f1f5f9); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .75rem; color: var(--muted); font-size: .9rem; }
.about-float { position: absolute; bottom: -20px; right: -20px; background: var(--blue); border-radius: 18px; padding: 1.25rem 1.5rem; text-align: center; box-shadow: 0 20px 50px rgba(10,132,255,.35); }
.about-float strong { display: block; font-family: var(--font-display); font-size: 2.25rem; color: #fff; }
.about-float span { font-size: .78rem; color: rgba(255,255,255,.8); }

.about-text .eyebrow-blue { margin-bottom: .75rem; }
.about-text h2 { color: var(--text); margin-bottom: 1.1rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-top: 1.75rem; }
.val-card { background: #fff; border: 1px solid var(--border-light); border-radius: 14px; padding: 1.1rem; }
.val-card h4 { font-family: var(--font-display); font-size: .9rem; text-transform: uppercase; color: var(--text); margin-bottom: .3rem; }
.val-card p { font-size: .8rem; color: var(--muted); }

.team-section { background: var(--black); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.team-card { background: #111; border: 1px solid rgba(255,255,255,.07); border-radius: 20px; overflow: hidden; transition: transform .25s; }
.team-card:hover { transform: translateY(-5px); }
.team-img { height: 260px; background: linear-gradient(135deg,#1e2a3a,#0f172a); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.team-body { padding: 1.5rem; }
.team-body h3 { font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase; color: #fff; }
.team-body .role { font-size: .8rem; color: var(--blue-light); font-weight: 600; display: block; margin: .25rem 0 .6rem; }
.team-body p { font-size: .84rem; color: var(--light-muted); }

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .team-grid { grid-template-columns: 1fr; } }

/* ── BOOKING PAGE ── */
.booking-section { background: var(--light); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.booking-info h2 { color: var(--text); font-family: var(--font-display); font-size: 2.5rem; text-transform: uppercase; margin-bottom: 1rem; }
.booking-info > p { color: var(--muted); margin-bottom: 2rem; }
.include-list { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2.5rem; }
.inc-item { display: flex; gap: .85rem; background: #fff; border: 1px solid var(--border-light); border-radius: 14px; padding: 1rem 1.25rem; }
.inc-icon { font-size: 1.2rem; flex-shrink: 0; }
.inc-info h4 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .2rem; }
.inc-info p { font-size: .82rem; color: var(--muted); }

.pkg-ref { background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 1.5rem; }
.pkg-ref-label { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.pkg-ref-row { display: flex; justify-content: space-between; align-items: center; padding: .6rem 0; border-bottom: 1px solid var(--border-light); }
.pkg-ref-row:last-of-type { border-bottom: none; }
.pkg-ref-row span { font-weight: 600; font-size: .88rem; color: var(--text); }
.pkg-ref-row strong { color: var(--blue); font-family: var(--font-display); font-size: 1.05rem; }
.pkg-ref a { display: block; text-align: center; margin-top: 1rem; font-size: .8rem; color: var(--muted); }

.booking-form { background: #fff; border: 1px solid var(--border-light); border-radius: 24px; padding: 2.5rem; }
.booking-form h3 { font-family: var(--font-display); font-size: 1.75rem; text-transform: uppercase; color: var(--text); margin-bottom: .4rem; }
.form-sub-text { font-size: .88rem; color: var(--muted); margin-bottom: 2rem; }

/* Package Selector */
.pkg-sel { display: grid; grid-template-columns: repeat(3,1fr); gap: .85rem; margin-bottom: .25rem; }
.pkg-opt { background: #fafafa; border: 2px solid var(--border-light); border-radius: 12px; padding: .95rem .75rem; cursor: pointer; text-align: center; position: relative; transition: all .2s; }
.pkg-opt:hover { border-color: rgba(10,132,255,.35); }
.pkg-opt.sel { border-color: var(--blue); background: rgba(10,132,255,.04); }
.pkg-opt input { position: absolute; opacity: 0; pointer-events: none; }
.pkg-opt .pname { font-family: var(--font-display); font-size: .9rem; text-transform: uppercase; color: var(--text); }
.pkg-opt .pprice { font-size: .78rem; color: var(--blue); font-weight: 600; margin-top: .15rem; }
.pkg-opt .pop-badge { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: .55rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .18rem .55rem; border-radius: 9999px; white-space: nowrap; }
.check-dot { display: none; position: absolute; top: .45rem; right: .45rem; width: 16px; height: 16px; background: var(--blue); border-radius: 50%; align-items: center; justify-content: center; font-size: .55rem; color: #fff; }
.pkg-opt.sel .check-dot { display: flex; }

/* Form inputs */
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: .35rem; }
input, select, textarea {
  width: 100%; background: #fafafa; border: 1.5px solid var(--border-light);
  border-radius: 10px; padding: .7rem 1rem; font-family: var(--font-body);
  font-size: .88rem; color: var(--text); transition: border-color .2s; outline: none;
}
input::placeholder, textarea::placeholder { color: var(--muted2); }
input:focus, select:focus, textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(10,132,255,.1); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' 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 .9rem center; padding-right: 2.25rem; cursor: pointer; }
select option { background: #fff; }
textarea { resize: vertical; min-height: 110px; }
.form-check { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: .5rem; }
.form-check input { width: auto; flex-shrink: 0; margin-top: 3px; accent-color: var(--blue); }
.form-check label { margin: 0; font-size: .84rem; color: var(--muted); cursor: pointer; font-weight: 400; }
.form-submit { width: 100%; padding: .95rem; font-size: .95rem; border-radius: 12px; margin-top: .5rem; }
.no-charge { text-align: center; margin-top: .65rem; font-size: .75rem; color: var(--muted2); }

/* Form success */
.form-success { display: none; text-align: center; padding: 3rem 1.5rem; }
.form-success.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: .75rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.75rem; text-transform: uppercase; color: var(--text); margin-bottom: .5rem; }
.form-success p { color: var(--muted); margin-bottom: 1.5rem; }

@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .pkg-sel { grid-template-columns: 1fr; } }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--black); padding: 10rem 0 5.5rem; text-align: center; }
.page-hero .eyebrow-blue { margin-bottom: 1rem; }
.page-hero h1 { color: #fff; margin-bottom: 1.1rem; }
.page-hero p { color: var(--light-muted); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

/* ── FOOTER ── */
.footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.07); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem; }
.footer-brand p { color: var(--muted2); font-size: .86rem; margin: .9rem 0 1.25rem; line-height: 1.7; }
.footer-r3z { display: inline-flex; align-items: center; gap: .5rem; background: #111; border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: .55rem .9rem; font-size: .72rem; color: var(--muted2); }
.footer-r3z strong { color: #fff; }
.footer-col h4 { font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted2); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .86rem; color: var(--muted2); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.f-contact { display: flex; flex-direction: column; gap: .8rem; }
.f-ci { display: flex; align-items: flex-start; gap: .65rem; font-size: .86rem; color: var(--muted2); }
.f-ci svg { flex-shrink: 0; margin-top: 2px; color: var(--blue-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .78rem; color: var(--muted2); }
.social-row { display: flex; gap: .65rem; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: #111; border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: var(--muted2); transition: background .2s, color .2s, border-color .2s; }
.social-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: .78rem; color: var(--muted2); transition: color .2s; }
.footer-legal a:hover { color: #fff; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ── Scroll Animations ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }

/* ── Utility ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.tag-pill { display: inline-block; background: var(--blue-bg); color: var(--blue-light); border: 1px solid rgba(100,210,255,.2); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .75rem; border-radius: 9999px; }
.tag-pill-dark { display: inline-block; background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .75rem; border-radius: 9999px; }

/* ══════════════════════════════════════════════════════════
   CASE STUDIES PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Case Studies Hero ── */
.cases-hero { background: var(--black); padding: 10rem 0 5.5rem; text-align: center; position: relative; overflow: hidden; }
.cases-hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(10,132,255,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cases-hero .eyebrow-blue { margin-bottom: 1rem; }
.cases-hero h1 { color: #fff; margin-bottom: 1rem; }
.cases-hero p { color: var(--light-muted); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cases-hero-stats { display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.07); }
.ch-stat { text-align: center; }
.ch-stat-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--blue-light); line-height: 1; }
.ch-stat-label { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted2); margin-top: .3rem; }

/* ── Featured Case Study ── */
.case-featured { background: var(--light); padding: 6rem 0; }
.case-featured-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 5rem; align-items: center; }
.case-featured-left {}
.case-featured-tag { display: inline-flex; align-items: center; gap: .5rem; background: var(--blue-bg); color: var(--blue-light); border: 1px solid rgba(10,132,255,.25); border-radius: 9999px; padding: .35rem .9rem; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.case-featured-tag svg { width: 12px; height: 12px; }
.case-featured-left h2 { color: var(--text); margin-bottom: 1rem; }
.case-featured-left > p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }

.case-services-used { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.cs-tag { background: #fff; border: 1px solid var(--border-light); border-radius: 9999px; padding: .3rem .8rem; font-size: .72rem; font-weight: 600; color: var(--text); }

.case-results-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 2rem; }
.cr-item { background: #fff; border: 1px solid var(--border-light); border-radius: 14px; padding: 1.1rem; text-align: center; }
.cr-val { font-family: var(--font-display); font-size: 1.6rem; color: var(--blue); line-height: 1; }
.cr-label { font-size: .7rem; color: var(--muted); margin-top: .3rem; }

.case-featured-right { position: relative; }
/* Browser mockup */
.browser-mock {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.18);
  border: 1px solid var(--border-light);
}
.browser-bar {
  background: #f0f0f0;
  padding: .65rem 1rem;
  display: flex; align-items: center; gap: .75rem;
  border-bottom: 1px solid #e0e0e0;
}
.browser-dots { display: flex; gap: .4rem; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url { flex: 1; background: #fff; border: 1px solid #e0e0e0; border-radius: 6px; padding: .3rem .75rem; font-size: .72rem; color: #666; font-family: monospace; }
.browser-screen { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.browser-screen-inner { position: absolute; inset: 0; display: flex; flex-direction: column; }
.bs-nav { height: 40px; background: #1a1a1a; display: flex; align-items: center; padding: 0 1rem; gap: .5rem; }
.bs-nav-dot { width: 28px; height: 8px; border-radius: 4px; background: rgba(255,255,255,.25); }
.bs-nav-dot:first-child { width: 40px; }
.bs-hero { flex: 1; display: flex; align-items: flex-end; padding: 1.25rem; position: relative; overflow: hidden; }
.bs-headline { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; color: #fff; line-height: 1; position: relative; z-index: 1; }
.bs-sub { font-size: .55rem; color: rgba(255,255,255,.7); margin-top: .25rem; position: relative; z-index: 1; }
.bs-hero-gradient { position: absolute; inset: 0; }
.bs-cta-row { height: 55px; background: #fff; display: flex; align-items: center; padding: 0 1rem; gap: .5rem; border-top: 1px solid #eee; }
.bs-cta-btn { height: 22px; width: 65px; background: var(--blue); border-radius: 4px; }
.bs-cta-link { height: 10px; width: 50px; background: #eee; border-radius: 4px; }

/* ── Case Study Filter Tabs ── */
.cases-list { background: var(--black); padding: 6rem 0; }
.cases-list .section-header h2 { color: #fff; }
.cases-list .section-header p { color: var(--light-muted); }

.cs-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.cs-filter-btn { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 9999px; padding: .45rem 1.1rem; font-size: .78rem; font-weight: 600; cursor: pointer; color: rgba(255,255,255,.6); transition: all .2s; }
.cs-filter-btn:hover, .cs-filter-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Case Study Cards Grid */
.cs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }

.cs-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  cursor: pointer;
}
.cs-card:hover { border-color: rgba(10,132,255,.4); transform: translateY(-5px); box-shadow: 0 25px 70px rgba(0,0,0,.4); }

.cs-card-screen { position: relative; height: 200px; overflow: hidden; }
.cs-card-screen .browser-bar { position: relative; z-index: 2; }
.cs-card-screen .browser-screen { height: calc(100% - 35px); aspect-ratio: unset; }
.cs-card-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.7) 100%); z-index: 3; display: flex; align-items: flex-end; padding: .75rem 1rem; opacity: 0; transition: opacity .3s; }
.cs-card:hover .cs-card-overlay { opacity: 1; }
.cs-card-overlay-btn { font-size: .72rem; font-weight: 700; color: #fff; background: var(--blue); padding: .35rem .85rem; border-radius: 9999px; display: flex; align-items: center; gap: .35rem; }

.cs-card-body { padding: 1.5rem; }
.cs-card-industry { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-light); margin-bottom: .5rem; display: flex; align-items: center; gap: .4rem; }
.cs-card-industry::before { content: ''; width: 16px; height: 1px; background: var(--blue-light); }
.cs-card-name { font-family: var(--font-display); font-size: 1.2rem; text-transform: uppercase; color: #fff; margin-bottom: .4rem; }
.cs-card-desc { font-size: .83rem; color: var(--muted2); line-height: 1.65; margin-bottom: 1rem; }

.cs-card-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-bottom: 1.1rem; }
.cs-metric { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: .6rem .5rem; text-align: center; }
.cs-metric-val { font-family: var(--font-display); font-size: 1.1rem; color: var(--blue-light); line-height: 1; }
.cs-metric-label { font-size: .6rem; color: var(--muted2); margin-top: .15rem; }

.cs-card-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.cs-card-tag { background: rgba(255,255,255,.06); color: rgba(255,255,255,.5); font-size: .62rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: .22rem .6rem; border-radius: 6px; }

@media (max-width: 1024px) { .cs-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .cs-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .case-featured-inner { grid-template-columns: 1fr; } .case-results-row { grid-template-columns: repeat(3,1fr); } }

/* ── Testimonials on Case Studies page ── */
.cs-testimonial-strip { background: var(--light); padding: 5rem 0; }
.cs-testimonial-strip .section-header h2 { color: var(--text); }

/* ── Homepage Case Studies Teaser ── */
.cases-teaser { background: var(--light); }
.cases-teaser .section-header h2 { color: var(--text); }
.cases-teaser .section-header p { color: var(--muted); }

.ct-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.ct-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.ct-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.1); transform: translateY(-4px); }

.ct-screen { height: 170px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border-light); }
.ct-screen .browser-bar { background: #f5f5f5; border-bottom: 1px solid #e8e8e8; }
.ct-screen .browser-dots span:nth-child(1) { background: #ffbbba; }
.ct-screen .browser-dots span:nth-child(2) { background: #ffdea3; }
.ct-screen .browser-dots span:nth-child(3) { background: #b5eabc; }
.ct-screen .browser-url { background: #f0f0f0; }
.ct-screen-body { height: calc(100% - 35px); position: relative; overflow: hidden; }

.ct-card-body { padding: 1.35rem; }
.ct-card-client { font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; color: var(--text); margin-bottom: .2rem; }
.ct-card-industry { font-size: .72rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; }
.ct-card-metrics { display: flex; gap: 1.25rem; margin-top: .85rem; padding-top: .85rem; border-top: 1px solid var(--border-light); }
.ct-metric { text-align: center; }
.ct-metric-val { font-family: var(--font-display); font-size: 1.1rem; color: var(--blue); }
.ct-metric-label { font-size: .62rem; color: var(--muted); }

@media (max-width: 900px) { .ct-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .ct-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   NAV LOGO IMAGE + SERVICES DROPDOWN
   ══════════════════════════════════════════════════════════ */

/* Logo as image */
.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

/* Services dropdown parent */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a { display: flex; align-items: center; gap: .3rem; }
.nav-has-dropdown > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid rgba(255,255,255,.6);
  transition: transform .2s;
  flex-shrink: 0;
}
.nav-has-dropdown:hover > a::after { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: .5rem;
  min-width: 210px;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .22s, transform .22s;
  z-index: 2000;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
/* transparent bridge fills the 14px gap so mouse doesn't lose hover */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem .9rem; border-radius: 8px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: rgba(255,255,255,.07); color: #fff; }
.nav-dropdown a .dd-icon { font-size: 1rem; width: 26px; text-align: center; flex-shrink: 0; }
.nav-dropdown-divider { height: 1px; background: rgba(255,255,255,.07); margin: .4rem .9rem; }
.nav-dropdown a.dd-all {
  background: var(--blue-bg); color: var(--blue-light);
  margin-top: .2rem; justify-content: center;
}
.nav-dropdown a.dd-all:hover { background: rgba(10,132,255,.15); }

/* ── Mega Menu (Services dropdown) ── */
.nav-mega {
  min-width: 480px;
  padding: .85rem .85rem .6rem;
  flex-direction: column;
}
.mega-body {
  display: flex;
  gap: 0;
}
.mega-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mega-col-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-light);
  padding: .1rem .9rem .55rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: .25rem;
  opacity: .85;
}
.mega-divider-v {
  width: 1px;
  background: rgba(255,255,255,.07);
  margin: 0 .25rem;
  flex-shrink: 0;
}
.mega-footer {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: .4rem;
  padding-top: .25rem;
}
.mega-footer .dd-all {
  text-align: center;
  justify-content: center;
}
/* Mobile nav: realtor sub-links get a subtle blue tint */
.nav-mobile a.nav-mobile-re {
  color: rgba(100,210,255,.8);
  font-size: .82rem;
}
.nav-mobile .nav-mobile-section-label {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: .5rem 0 .1rem;
  border-bottom: none;
  cursor: default;
}

/* Pricing page styles (shared across service pages) */
.svc-hero { background: var(--black); padding: 9rem 0 5rem; position: relative; overflow: hidden; }
.svc-hero::before { content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(10,132,255,.1) 0%, transparent 65%); pointer-events: none; }
.svc-hero .eyebrow-blue { margin-bottom: 1rem; }
.svc-hero h1 { color: #fff; margin-bottom: 1rem; }
.svc-hero p { color: var(--light-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* Category pricing section */
.svc-cat { padding: 5.5rem 0; }
.svc-cat:nth-child(odd) { background: var(--light); }
.svc-cat:nth-child(even) { background: var(--black); }

.svc-cat-header { margin-bottom: 3rem; }
.svc-cat-header .cat-eyebrow { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-light); display: block; margin-bottom: .6rem; }
.svc-cat-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 4rem); text-transform: uppercase; line-height: 1.05; }
.svc-cat-header p { margin-top: .6rem; font-size: 1rem; max-width: 560px; }

.svc-cat:nth-child(odd) .svc-cat-header h2 { color: var(--text); }
.svc-cat:nth-child(odd) .svc-cat-header p { color: var(--muted); }
.svc-cat:nth-child(even) .svc-cat-header h2 { color: #fff; }
.svc-cat:nth-child(even) .svc-cat-header p { color: var(--light-muted); }

/* Pricing cards grid on service pages */
.sp-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media(max-width:900px){ .sp-cards { grid-template-columns:repeat(2,1fr); } }
@media(max-width:580px){ .sp-cards { grid-template-columns:1fr; } }

/* Light card (for light bg sections) */
.sp-card-light {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 20px; padding: 2rem;
  transition: box-shadow .25s, transform .25s; position: relative;
}
.sp-card-light:hover { box-shadow: 0 20px 60px rgba(0,0,0,.09); transform: translateY(-4px); }
.sp-card-light.featured-card { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }

/* Dark card (for dark bg sections) */
.sp-card-dark {
  background: #111; border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 2rem;
  transition: border-color .25s, transform .25s; position: relative;
}
.sp-card-dark:hover { border-color: rgba(10,132,255,.35); transform: translateY(-4px); }
.sp-card-dark.featured-card { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }

.sp-card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .28rem .85rem; border-radius: 9999px; white-space: nowrap;
}

.sp-card-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.sp-card-light .sp-card-name { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; color: var(--text); }
.sp-card-dark .sp-card-name { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; color: #fff; }
.sp-card-light .sp-card-sub, .sp-card-dark .sp-card-sub { font-size: .82rem; color: var(--muted2); margin: .3rem 0 1rem; }

.sp-card-light .sp-price { font-family: var(--font-display); font-size: 2.75rem; color: var(--text); line-height: 1; }
.sp-card-dark .sp-price { font-family: var(--font-display); font-size: 2.75rem; color: #fff; line-height: 1; }
.sp-price sup { font-size: 1.1rem; vertical-align: top; margin-top: .4rem; display: inline-block; }
.sp-price .sp-per { font-family: var(--font-body); font-size: .85rem; color: var(--muted2); }
.sp-card-light .sp-note, .sp-card-dark .sp-note { font-size: .74rem; color: var(--muted2); margin: .25rem 0 1.5rem; }

.sp-features { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.75rem; }
.sp-feature {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .55rem 0; font-size: .86rem; line-height: 1.5;
  border-bottom: 1px solid;
}
.sp-feature:last-child { border-bottom: none; }
.sp-card-light .sp-feature { color: var(--text); border-color: var(--border-light); }
.sp-card-dark .sp-feature { color: var(--light-muted); border-color: rgba(255,255,255,.06); }
.sp-feature-icon { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 800; color: var(--blue-light); background: var(--blue-bg); flex-shrink: 0; margin-top: 2px; }
.sp-feature-icon::before { content: '✓'; }

.sp-cta { width: 100%; display: block; text-align: center; border-radius: 12px; padding: .85rem; font-size: .9rem; font-weight: 600; transition: all .22s; cursor: pointer; }
.sp-card-light .sp-cta { background: var(--black); color: #fff; }
.sp-card-light .sp-cta:hover { background: #1a1a1a; }
.sp-card-light .featured-card .sp-cta, .featured-card .sp-cta { background: var(--blue); color: #fff; }
.sp-card-dark .sp-cta { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.12); }
.sp-card-dark .sp-cta:hover { background: rgba(255,255,255,.12); }
.sp-card-dark .featured-card .sp-cta { background: var(--blue); border-color: var(--blue); }

/* ── Hero Rotating Slides ── */
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.hero-trust-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 9999px; padding: .35rem .9rem;
  font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.8);
  letter-spacing: .04em;
}
.htp-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34c759; box-shadow: 0 0 6px #34c759;
  animation: htpPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes htpPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.75); }
}

.hero-slides {
  margin-bottom: 2.5rem;
}
.hero-slide {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  animation: heroFadeIn .55s ease forwards;
}
.hero-slide.active {
  display: flex;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title { color: #fff; }
.hero-slide-sub {
  margin-top: 1.2rem;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.6);
  max-width: 540px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-bottom: 2.5rem;
}

.hero-nav {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.hero-dots {
  display: flex; align-items: center; gap: .55rem;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.25); border: none; cursor: pointer;
  padding: 0; transition: background .3s, transform .3s;
}
.hero-dot.active {
  background: var(--blue-light); transform: scale(1.35);
}
.hero-nav-arrow {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%; width: 38px; height: 38px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .95rem; transition: background .22s;
}
.hero-nav-arrow:hover { background: rgba(255,255,255,.15); }

@media(max-width:600px){
  .hero-slides { min-height: 24rem; }
  .hero-trust-row { gap: .4rem; }
  .hero-trust-pill { font-size: .68rem; padding: .28rem .7rem; }
  .hero-slide-sub { font-size: .88rem; }
}

/* Add-ons table */
.addons-table-wrap { margin-top: 2rem; }
.addons-table-title { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.addons-table { width: 100%; border-collapse: collapse; }
.addons-table th { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .7rem 1rem; text-align: left; }
.addons-table td { padding: .75rem 1rem; font-size: .88rem; border-bottom: 1px solid; }
.addons-table.light th { color: var(--muted); border-bottom: 2px solid var(--border-light); background: #fafafa; }
.addons-table.light td { color: var(--text); border-color: var(--border-light); }
.addons-table.light tr:last-child td { border-bottom: none; }
.addons-table.dark th { color: var(--muted2); border-bottom: 2px solid rgba(255,255,255,.07); background: #0d0d0d; }
.addons-table.dark td { color: var(--light-muted); border-color: rgba(255,255,255,.06); }
.addons-table.dark tr:last-child td { border-bottom: none; }
.addon-price-cell { font-family: var(--font-display); font-size: 1rem; color: var(--blue-light); }

/* ── MLS Tier table popular row ── */
.tier-popular td { background: rgba(10,132,255,.05); }
.tier-badge { display:inline-block; background:var(--blue); color:#fff; font-size:.55rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:.18rem .55rem; border-radius:9999px; margin-left:.5rem; vertical-align:middle; }

/* ── Services.html filter bar ── */
.svc-filter-bar { display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom:3.5rem; }
.svc-filter-btn {
  background:#fff; border:1px solid var(--border-light);
  border-radius:9999px; padding:.5rem 1.25rem;
  font-size:.8rem; font-weight:600; cursor:pointer;
  color:var(--muted); transition:all .2s; font-family:var(--font-body);
}
.svc-filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.svc-filter-btn.active { background:var(--black); color:#fff; border-color:var(--black); }

/* ── Services section box ── */
.svc-section-box {
  background:#fff; border:1px solid var(--border-light);
  border-radius:24px; overflow:hidden; margin-bottom:2rem;
}
.svc-box-header {
  display:flex; align-items:center; gap:1rem;
  padding:1.75rem 2rem; cursor:pointer;
  border-bottom:1px solid var(--border-light);
  transition:background .2s;
}
.svc-box-header:hover { background:#fafafa; }
.svc-box-icon { font-size:1.75rem; flex-shrink:0; }
.svc-box-title { font-family:var(--font-display); font-size:1.4rem; text-transform:uppercase; color:var(--text); }
.svc-box-sub { font-size:.82rem; color:var(--muted); margin-top:.15rem; }
.svc-box-from { font-family:var(--font-display); font-size:1.5rem; color:var(--blue); margin-left:auto; white-space:nowrap; }
.svc-box-body { padding:2rem; background:var(--light); }
.svc-box-link { display:inline-flex; align-items:center; gap:.5rem; margin-top:1.5rem; font-weight:600; font-size:.9rem; color:var(--blue); }
.svc-box-link:hover { text-decoration:underline; }

/* ── Page Section Switcher (RE vs Contractor) ── */
.page-section-switcher {
  background: var(--light);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 70px;
  z-index: 100;
  padding: 1rem 0;
}
.pss-tabs {
  display: flex;
  gap: .5rem;
  background: rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 4px;
  width: fit-content;
}
.pss-btn {
  padding: .7rem 2rem;
  border-radius: 9px;
  font-family: var(--font-display);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: all .22s;
}
.pss-btn.active {
  background: var(--black);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.pss-btn:not(.active):hover { color: var(--text); background: rgba(0,0,0,.06); }
@media(max-width:520px){
  .pss-tabs { width: 100%; }
  .pss-btn { flex: 1; text-align: center; padding: .65rem .5rem; font-size: .8rem; }
}

/* ── Service feature group (services.html boxes) ── */
.svc-feature-group { }
.sfg-label {
  font-size:.65rem; font-weight:700; letter-spacing:.15em;
  text-transform:uppercase; color:var(--blue); margin-bottom:.4rem;
}
.sfg-text { font-size:.88rem; color:var(--muted); line-height:1.65; }

/* ── Retainer profile label ── */
.retainer-profile-label {
  font-size:.65rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase;
  color:var(--muted2); margin-bottom:1rem; margin-top:2rem; display:block;
}
.retainer-profile-label:first-child { margin-top:0; }

/* ── Sub-section heading (within svc-cat) ── */
.svc-sub-heading {
  font-family: var(--font-display); font-size:1.5rem; text-transform:uppercase;
  color: var(--text); margin-bottom: 1rem; margin-top: 2.5rem;
}
.svc-sub-heading-dark {
  font-family: var(--font-display); font-size:1.5rem; text-transform:uppercase;
  color: #fff; margin-bottom: 1rem; margin-top: 2.5rem;
}
.svc-sub-heading:first-child, .svc-sub-heading-dark:first-child { margin-top:0; }

/* ── Web features 3-col grid ── */
.web-features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
@media(max-width:700px){ .web-features-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:420px){ .web-features-grid { grid-template-columns:1fr; } }

/* ── 4-column card grid ── */
.sp-cards-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
@media(max-width:1100px){ .sp-cards-4 { grid-template-columns:repeat(2,1fr); } }
@media(max-width:580px){ .sp-cards-4 { grid-template-columns:1fr; } }

/* ── Bundle deals strip ── */
.bundle-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media(max-width:900px){ .bundle-cards { grid-template-columns:1fr; } }
.bundle-card {
  background:#111; border:1px solid rgba(255,255,255,.08);
  border-radius:20px; padding:2rem;
}
.bundle-card-name { font-family:var(--font-display); font-size:1.1rem; text-transform:uppercase; color:#fff; margin-bottom:.35rem; }
.bundle-card-desc { font-size:.84rem; color:var(--muted2); margin-bottom:1.25rem; }
.bundle-card-price { font-family:var(--font-display); font-size:2rem; color:var(--blue-light); line-height:1; }
.bundle-card-save { font-size:.75rem; color:#34c759; margin-top:.25rem; margin-bottom:1.25rem; }
.bundle-card-items { font-size:.82rem; color:var(--muted2); line-height:1.8; }

/* ════════════════════════════════════════════════
   HOMEPAGE REDESIGN — Agency Hero / Showreel / Consult
   ════════════════════════════════════════════════ */

/* ── Agency Hero ── */
.hero-agency {
  background: var(--black);
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 0 40px;
  position: relative; overflow: hidden;
}
.hero-agency-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 30%, rgba(10,132,255,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-agency-inner { position:relative; z-index:1; }
.hero-agency-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 9999px; padding: .4rem 1.1rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 1.75rem;
}
.hero-agency-h1 {
  color: #fff;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}
.hero-agency-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.55);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-agency-ctas {
  display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center;
}

/* ── Showreel Section ── */
.showreel-section {
  background: var(--black);
  padding: 0 0 5rem;
}
.showreel-header {
  text-align: center;
  padding: 2rem 0 2.5rem;
}
.showreel-wrap {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 100px rgba(0,0,0,.7);
  aspect-ratio: 16 / 9;
  position: relative;
  background: #0d0d0d;
}
.showreel-wrap iframe,
.showreel-wrap video { width:100%; height:100%; display:block; border:none; }
.showreel-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.1rem; cursor: pointer;
  background: linear-gradient(145deg, #0d0d0d 0%, #111827 50%, #0d1117 100%);
}
.showreel-play-btn {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 50px rgba(10,132,255,.45);
  transition: transform .25s, box-shadow .25s;
}
.showreel-play-btn:hover,
.showreel-placeholder:hover .showreel-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 80px rgba(10,132,255,.65);
}
.showreel-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}

/* ── Marquee strip ── */
.showreel-marquee-wrap {
  overflow: hidden;
  margin-top: 3rem;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
}
.showreel-marquee {
  display: flex; gap: 2rem; align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}
.showreel-marquee span {
  font-family: var(--font-display);
  font-size: .85rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.showreel-marquee .sm-dot { color: var(--blue); opacity: .8; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.showreel-marquee-wrap:hover .showreel-marquee { animation-play-state: paused; }

/* ── Who We Work With Section ── */
.who-section {
  background: var(--light);
  padding: 6rem 0;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.who-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.who-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.who-icon { font-size: 1.8rem; margin-bottom: .85rem; }
.who-name {
  font-family: var(--font-display);
  font-size: 1rem; text-transform: uppercase;
  color: var(--text); margin-bottom: .5rem;
}
.who-desc { font-size: .84rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }

/* ── Free Strategy Consultation Section ── */
.consult-section {
  background: var(--black);
  padding: 7rem 0;
  position: relative; overflow: hidden;
}
.consult-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(10,132,255,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(100,210,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
.consult-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  position: relative; z-index: 1;
}
@media(max-width:960px){
  .consult-inner { grid-template-columns: 1fr; gap: 3rem; }
}
.consult-left {}
.consult-sub {
  color: rgba(255,255,255,.55);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 1.25rem 0 2.5rem;
  max-width: 440px;
}
.consult-perks { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.5rem; }
.consult-perk {
  display: flex; gap: 1rem; align-items: flex-start;
}
.consult-perk-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.consult-perk div { display: flex; flex-direction: column; gap: .1rem; }
.consult-perk strong { color: #fff; font-size: .9rem; }
.consult-perk span { color: rgba(255,255,255,.45); font-size: .83rem; line-height: 1.5; }

.consult-direct { padding: 1.25rem 1.5rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; }
.consult-direct p { font-size: .78rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.consult-phone { display: block; font-family: var(--font-display); font-size: 1.75rem; color: #fff; letter-spacing: .02em; margin-bottom: .2rem; }
.consult-email { font-size: .85rem; color: rgba(10,132,255,.8); }
.consult-email:hover { color: var(--blue-light); }

.consult-calendly-wrap {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.consult-calendly-wrap .calendly-inline-widget { border-radius: 24px; }

/* ── Responsive ── */
@media(max-width:768px){
  .hero-agency { min-height: 80vh; padding: 100px 0 60px; }
  .showreel-wrap { border-radius: 14px; }
  .who-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:500px){
  .who-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   LANDING PAGES  (realtors.html / contractors.html)
   ════════════════════════════════════════════════ */

/* ── LP Nav ── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,8,8,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0 2rem; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.lp-nav-logo { display:flex; align-items:center; gap:.5rem; text-decoration:none; }
.lp-nav-logo img { width:36px; height:36px; object-fit:contain; }
.lp-nav-logo span { font-family:var(--font-display); font-size:1.1rem; text-transform:uppercase; color:#fff; }
.lp-nav-right { display:flex; align-items:center; gap:1rem; }
.lp-nav-phone { display:flex; align-items:center; gap:.4rem; color:rgba(255,255,255,.7); font-size:.82rem; font-weight:600; text-decoration:none; transition:color .2s; }
.lp-nav-phone:hover { color:#fff; }
@media(max-width:500px){ .lp-nav-phone { display:none; } }

/* ── LP Hero ── */
.lp-hero {
  padding-top: 70px;
  background: var(--black);
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
}
.lp-hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(10,132,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero-inner { position:relative; z-index:1; padding:4rem 1.5rem 3rem; max-width:860px; margin:0 auto; }
.lp-hero-tag {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(10,132,255,.12); border:1px solid rgba(10,132,255,.3);
  border-radius:9999px; padding:.35rem 1rem;
  font-size:.75rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--blue-light); margin-bottom:1.5rem;
}
.lp-hero-tag-dot { width:7px; height:7px; border-radius:50%; background:var(--blue-light); box-shadow:0 0 8px var(--blue-light); animation:htpPulse 2s ease-in-out infinite; }
.lp-hero h1 { color:#fff; margin-bottom:1.25rem; line-height:1.1; }
.lp-hero-sub { font-size:1.1rem; color:rgba(255,255,255,.65); max-width:600px; margin:0 auto 2.25rem; line-height:1.7; }
.lp-hero-ctas { display:flex; flex-wrap:wrap; gap:.75rem; justify-content:center; margin-bottom:3rem; }
.lp-phone-cta { display:flex; align-items:center; gap:.45rem; color:rgba(255,255,255,.7); font-size:.9rem; font-weight:600; text-decoration:none; border:1px solid rgba(255,255,255,.15); border-radius:9px; padding:.75rem 1.4rem; transition:all .2s; }
.lp-phone-cta:hover { border-color:rgba(255,255,255,.4); color:#fff; }

/* ── LP Video Block ── */
.lp-video-wrap {
  width:100%; max-width:820px; margin:0 auto;
  border-radius:20px; overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  position:relative; aspect-ratio:16/9;
  background:#111;
}
.lp-video-wrap iframe,
.lp-video-wrap video { width:100%; height:100%; display:block; border:none; }
.lp-video-placeholder {
  width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem;
  background: linear-gradient(145deg,#0d0d0d 0%,#111827 100%);
  cursor: pointer;
}
.lp-play-btn {
  width:72px; height:72px; border-radius:50%;
  background:var(--blue); display:flex; align-items:center; justify-content:center;
  box-shadow: 0 0 40px rgba(10,132,255,.4);
  transition:transform .2s, box-shadow .2s;
}
.lp-play-btn:hover { transform:scale(1.1); box-shadow:0 0 60px rgba(10,132,255,.6); }
.lp-video-label { color:rgba(255,255,255,.5); font-size:.8rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; }

/* ── LP Stats Strip ── */
.lp-stats {
  background: rgba(10,132,255,.06);
  border-top: 1px solid rgba(10,132,255,.15);
  border-bottom: 1px solid rgba(10,132,255,.15);
  padding: 1.75rem 0;
}
.lp-stats-inner { display:flex; flex-wrap:wrap; justify-content:center; gap:2rem 3.5rem; }
.lp-stat { text-align:center; }
.lp-stat-val { font-family:var(--font-display); font-size:1.75rem; color:#fff; line-height:1; }
.lp-stat-label { font-size:.72rem; color:var(--muted2); font-weight:600; text-transform:uppercase; letter-spacing:.08em; margin-top:.2rem; }

/* ── LP Section ── */
.lp-section { padding:5rem 0; }
.lp-section-dark { background:var(--black); }
.lp-section-light { background:var(--light); }
.lp-section-header { text-align:center; margin-bottom:3rem; }
.lp-section-header h2 { color:#fff; margin-top:.5rem; margin-bottom:.75rem; }
.lp-section-light .lp-section-header h2 { color:var(--text); }
.lp-section-header p { color:var(--muted); max-width:560px; margin:0 auto; font-size:.95rem; line-height:1.7; }

/* ── LP Services Grid ── */
.lp-svc-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:1.25rem; }
.lp-svc-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:16px; padding:1.75rem;
  transition:border-color .2s, background .2s;
}
.lp-svc-card:hover { border-color:rgba(10,132,255,.4); background:rgba(10,132,255,.06); }
.lp-svc-icon { font-size:1.75rem; margin-bottom:.9rem; }
.lp-svc-name { font-family:var(--font-display); font-size:1rem; text-transform:uppercase; color:#fff; margin-bottom:.5rem; }
.lp-svc-desc { font-size:.84rem; color:var(--muted2); line-height:1.65; }

/* ── LP Section Light Cards ── */
.lp-light-card {
  background:#fff; border:1px solid var(--border-light);
  border-radius:16px; padding:1.75rem;
}
.lp-light-card:hover { box-shadow:0 6px 24px rgba(0,0,0,.07); }
.lp-light-icon { font-size:1.75rem; margin-bottom:.9rem; }
.lp-light-name { font-family:var(--font-display); font-size:1rem; text-transform:uppercase; color:var(--text); margin-bottom:.5rem; }
.lp-light-desc { font-size:.84rem; color:var(--muted); line-height:1.65; }

/* ── LP Why Grid ── */
.lp-why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media(max-width:768px){ .lp-why-grid { grid-template-columns:1fr; } }
.lp-why-item { text-align:center; padding:2rem 1.5rem; }
.lp-why-icon { font-size:2.25rem; margin-bottom:1rem; }
.lp-why-title { font-family:var(--font-display); font-size:1.1rem; text-transform:uppercase; color:#fff; margin-bottom:.6rem; }
.lp-section-light .lp-why-title { color:var(--text); }
.lp-why-desc { font-size:.87rem; color:var(--muted2); line-height:1.7; }
.lp-section-light .lp-why-desc { color:var(--muted); }

/* ── LP Steps ── */
.lp-steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:2rem; }
.lp-step { text-align:center; }
.lp-step-num { font-family:var(--font-display); font-size:3rem; color:rgba(10,132,255,.2); line-height:1; margin-bottom:.5rem; }
.lp-step-icon { font-size:1.75rem; margin-bottom:.75rem; }
.lp-step-title { font-family:var(--font-display); font-size:1rem; text-transform:uppercase; color:#fff; margin-bottom:.5rem; }
.lp-section-light .lp-step-title { color:var(--text); }
.lp-step-desc { font-size:.84rem; color:var(--muted2); line-height:1.6; }
.lp-section-light .lp-step-desc { color:var(--muted); }

/* ── LP Testimonials ── */
.lp-testi-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.5rem; }

/* ── LP Booking Section ── */
.lp-booking { background:var(--black); padding:5rem 0; }
.lp-booking-inner { display:grid; grid-template-columns:1fr 1.4fr; gap:3rem; align-items:start; }
@media(max-width:900px){ .lp-booking-inner { grid-template-columns:1fr; } }
.lp-booking-left h2 { color:#fff; margin-bottom:1rem; }
.lp-booking-left p { color:var(--muted); line-height:1.7; margin-bottom:1.5rem; }
.lp-booking-perk { display:flex; align-items:flex-start; gap:.8rem; margin-bottom:.9rem; }
.lp-booking-perk-icon { font-size:1.1rem; flex-shrink:0; margin-top:.1rem; }
.lp-booking-perk-text { font-size:.88rem; color:rgba(255,255,255,.7); line-height:1.5; }
.lp-booking-perk-text strong { color:#fff; display:block; margin-bottom:.1rem; }
.lp-calendly-wrap {
  background:#111; border:1px solid rgba(255,255,255,.08);
  border-radius:20px; overflow:hidden; min-height:650px;
}
.lp-calendly-wrap .calendly-inline-widget { border-radius:20px; }

/* ── LP Footer ── */
.lp-footer {
  background:#060606; border-top:1px solid rgba(255,255,255,.06);
  padding:2rem 0; text-align:center;
}
.lp-footer-inner { display:flex; flex-wrap:wrap; gap:1rem; align-items:center; justify-content:space-between; }
.lp-footer p { font-size:.78rem; color:var(--muted2); margin:0; }
.lp-footer-links { display:flex; gap:1.25rem; }
.lp-footer-links a { font-size:.78rem; color:var(--muted2); text-decoration:none; transition:color .2s; }
.lp-footer-links a:hover { color:#fff; }

/* ── LP Form (fallback if no Calendly) ── */
.lp-form { display:flex; flex-direction:column; gap:1rem; }
.lp-form input, .lp-form select, .lp-form textarea {
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  border-radius:10px; padding:.85rem 1.1rem; color:#fff; font-size:.9rem;
  font-family:var(--font-body); width:100%; box-sizing:border-box;
  transition:border-color .2s;
}
.lp-form input:focus, .lp-form select:focus, .lp-form textarea:focus {
  outline:none; border-color:var(--blue);
}
.lp-form input::placeholder, .lp-form textarea::placeholder { color:rgba(255,255,255,.3); }
.lp-form select option { background:#111; color:#fff; }
.lp-form textarea { resize:vertical; min-height:110px; }
.lp-form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media(max-width:520px){ .lp-form-row { grid-template-columns:1fr; } }
.lp-form-success { display:none; text-align:center; padding:2.5rem; }
.lp-form-success.show { display:block; }
.lp-form-success-icon { font-size:2.5rem; margin-bottom:.75rem; }
.lp-form-success h3 { color:#fff; margin-bottom:.5rem; }
.lp-form-success p { color:var(--muted); font-size:.88rem; }


/* ════════════════════════════════════════════════
   SERVICE DETAIL PAGES (LSA / SEO / Meta / Web)
   ════════════════════════════════════════════════ */

/* ── Service page metrics bar ── */
.svc-metrics {
  background: rgba(10,132,255,.06);
  border-top: 1px solid rgba(10,132,255,.15);
  border-bottom: 1px solid rgba(10,132,255,.15);
  padding: 2rem 0;
}
.svc-metrics-inner { display:flex; flex-wrap:wrap; justify-content:center; gap:2rem 4rem; }
.svc-metric { text-align:center; }
.svc-metric-val { font-family:var(--font-display); font-size:2.25rem; color:#fff; line-height:1; letter-spacing:-.02em; }
.svc-metric-label { font-size:.7rem; color:var(--muted2); font-weight:600; text-transform:uppercase; letter-spacing:.1em; margin-top:.25rem; }

/* ── Feature grid (dark bg) ── */
.svc-features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
@media(max-width:900px){ .svc-features-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .svc-features-grid { grid-template-columns:1fr; } }

.svc-feat-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:16px; padding:1.75rem;
  transition:border-color .2s, background .2s;
}
.svc-feat-card:hover { border-color:rgba(10,132,255,.4); background:rgba(10,132,255,.06); }
.svc-feat-icon { font-size:1.75rem; margin-bottom:.9rem; }
.svc-feat-title { font-family:var(--font-display); font-size:.95rem; text-transform:uppercase; color:#fff; margin-bottom:.5rem; }
.svc-feat-desc { font-size:.84rem; color:var(--muted2); line-height:1.65; }

/* Light card variant */
.svc-feat-card-light {
  background:#fff; border:1px solid var(--border-light);
  border-radius:16px; padding:1.75rem;
  transition:box-shadow .2s;
}
.svc-feat-card-light:hover { box-shadow:0 6px 24px rgba(0,0,0,.07); }
.svc-feat-card-light .svc-feat-title { color:var(--text); }
.svc-feat-card-light .svc-feat-desc { color:var(--muted); }

/* ── How it works steps ── */
.svc-steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:2rem; }
.svc-step-num { font-family:var(--font-display); font-size:3.5rem; color:rgba(10,132,255,.2); line-height:1; margin-bottom:.4rem; }
.svc-step-icon { font-size:1.75rem; margin-bottom:.7rem; }
.svc-step-title { font-family:var(--font-display); font-size:1rem; text-transform:uppercase; color:#fff; margin-bottom:.5rem; }
.svc-step-desc { font-size:.84rem; color:var(--muted2); line-height:1.65; }
.svc-steps-light .svc-step-title { color:var(--text); }
.svc-steps-light .svc-step-desc { color:var(--muted); }

/* ── Eligible trades grid ── */
.trades-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(195px,1fr)); gap:.65rem; }
.trade-item {
  display:flex; align-items:center; gap:.6rem;
  padding:.7rem 1rem; background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08); border-radius:10px;
  font-size:.82rem; color:rgba(255,255,255,.75); font-weight:500;
  transition:border-color .2s;
}
.trade-item:hover { border-color:rgba(10,132,255,.35); }
.trade-check { color:var(--blue-light); font-size:.8rem; flex-shrink:0; }

/* ── Related services row ── */
.related-svcs { display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; }
.related-svc {
  display:flex; flex-direction:column; align-items:center; gap:.45rem;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:14px; padding:1.2rem 1.6rem; text-decoration:none;
  transition:border-color .2s, background .2s; min-width:130px;
}
.related-svc:hover { border-color:rgba(10,132,255,.45); background:rgba(10,132,255,.06); }
.related-svc-icon { font-size:1.4rem; }
.related-svc-name { font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.6); text-align:center; }

/* ── Simple standalone FAQ (no tabs — add active directly) ── */
.faq-standalone .faq-items { display:flex; flex-direction:column; gap:.6rem; }

/* ── Web Design Portfolio ── */
.wd-portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media(max-width:900px){ .wd-portfolio-grid { grid-template-columns:1fr; } }

.wd-portfolio-card {
  background:#111; border:1px solid rgba(255,255,255,.08);
  border-radius:18px; overflow:hidden;
  transition:border-color .22s, transform .22s;
}
.wd-portfolio-card:hover { border-color:rgba(10,132,255,.35); transform:translateY(-4px); }
.wd-portfolio-card a { display:block; text-decoration:none; color:inherit; }

.wd-browser-bar {
  background:#1d1d1d; display:flex; align-items:center; gap:.6rem;
  padding:.55rem .85rem; border-bottom:1px solid rgba(255,255,255,.07);
}
.wd-browser-dots { display:flex; gap:4px; }
.wd-browser-dots span { width:9px; height:9px; border-radius:50%; }
.wd-browser-dots span:nth-child(1){background:#ff5f57;}
.wd-browser-dots span:nth-child(2){background:#febc2e;}
.wd-browser-dots span:nth-child(3){background:#28c840;}
.wd-browser-url { font-size:.7rem; color:rgba(255,255,255,.35); font-family:monospace; }

.wd-preview {
  height:180px; display:flex; align-items:center; justify-content:center;
  font-size:2.5rem; position:relative; overflow:hidden;
}
.wd-preview-label {
  position:absolute; bottom:.75rem; left:50%; transform:translateX(-50%);
  background:rgba(0,0,0,.6); border-radius:9999px; padding:.2rem .8rem;
  font-size:.65rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(255,255,255,.6); white-space:nowrap;
}

.wd-card-info { padding:1.25rem 1.5rem 1.5rem; }
.wd-card-client { font-family:var(--font-display); font-size:1.05rem; text-transform:uppercase; color:#fff; margin-bottom:.2rem; }
.wd-card-url { font-size:.75rem; color:rgba(10,132,255,.7); margin-bottom:.85rem; }
.wd-card-tags { display:flex; flex-wrap:wrap; gap:.4rem; }
.wd-tag { background:rgba(10,132,255,.1); color:var(--blue-light); font-size:.63rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:.22rem .6rem; border-radius:9999px; }

/* ── Section separator (used between page sections) ── */
.svc-section-gap { padding:6rem 0; }
.svc-section-gap-light { background:var(--light); padding:6rem 0; }

/* ── Web Design Portfolio v2 (browser mockup cards) ── */
.wd-browser-screen {
  position:relative; overflow:hidden; background:#0a0a0a;
  aspect-ratio:16/10;
}
.wd-browser-screen img {
  width:100%; height:100%; object-fit:cover; object-position:top center;
  display:block; transition:transform .4s ease;
}
.wd-portfolio-card:hover .wd-browser-screen img { transform:translateY(-8%); }
.wd-screen-fallback {
  width:100%; height:100%; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:.5rem;
  background:linear-gradient(135deg,#0d0d0d,#111);
}
.wd-screen-fallback p { font-size:.8rem; color:var(--light-muted); font-family:monospace; }

.wd-portfolio-info { padding:1.25rem 1.5rem 1.6rem; }
.wd-portfolio-name {
  font-family:var(--font-display); font-size:1.05rem; text-transform:uppercase;
  color:#fff; margin-bottom:.65rem;
}
.wd-portfolio-tags { display:flex; flex-wrap:wrap; gap:.4rem; margin-bottom:.9rem; }
.wd-portfolio-tags span {
  background:rgba(10,132,255,.1); color:var(--blue-light);
  font-size:.63rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:.22rem .65rem; border-radius:9999px;
}
.wd-portfolio-link {
  font-size:.8rem; font-weight:600; color:var(--blue); text-decoration:none;
  display:inline-flex; align-items:center; gap:.3rem;
  transition:color .18s;
}
.wd-portfolio-link:hover { color:var(--blue-light); }
