/* css/content.css — shared styles for all content pages */

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

:root {
  --bg: #F4F7FE;
  --bg-dark: #0D1B36;
  --card: #FFFFFF;
  --text: #0D1B36;
  --text-muted: #5B6E8A;
  --text-light: #EEF3FF;
  --primary: #2B6CB0;
  --primary-light: #DBEAFE;
  --border: #C9D9EE;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Barlow', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Header ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(244, 247, 254, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.topbar { background: var(--bg-dark); }

.topbar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(238, 243, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar a:hover { color: #fff; }
.topbar a svg { opacity: 0.6; }

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo { display: flex; align-items: center; text-decoration: none; }

.logo-img { height: 32px; width: auto; display: block; }

.footer-brand .logo-img { height: 28px; filter: brightness(0) invert(1); }

nav { display: flex; gap: 32px; }

nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s;
}
nav a:hover { color: var(--text); }

/* ─── Buttons ─── */
.btn-pill {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--bg-dark); color: var(--bg); }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-secondary { background: var(--border); color: var(--text); }
.btn-secondary:hover { background: #B9CFEB; }

/* ─── Page hero banner ─── */
.page-hero {
  padding: 140px 0 72px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 800px;
}

.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}

.page-hero-meta .cat-tag {
  background: var(--primary-light);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

/* ─── Featured image ─── */
.feat-img-wrap {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 56px;
  border: 1px solid var(--border);
}
.feat-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── Article body ─── */
.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 0 96px;
}

.article-body h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin: 48px 0 16px;
  line-height: 1.25;
}

.article-body h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 12px;
}

.article-body h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin: 36px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-left: 12px;
  border-left: 3px solid var(--primary);
}

.article-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.article-body li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.article-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: #1e4e8c; }

.article-body strong { font-weight: 600; }

.article-body blockquote {
  border-left: 3px solid var(--primary);
  margin: 32px 0;
  padding: 16px 24px;
  background: var(--primary-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-muted);
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 32px 0;
}

/* ─── Project meta table ─── */
.project-meta-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 48px;
}
.project-meta-item {}
.project-meta-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.project-meta-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.project-meta-value a { color: var(--primary); text-decoration: none; }
.project-meta-value a:hover { text-decoration: underline; }

/* ─── Back link ─── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--text); }
.back-link svg { transition: transform 0.2s; }
.back-link:hover svg { transform: translateX(-3px); }

/* ─── Blog index / Project archive grid ─── */
.index-section {
  padding: 80px 0 120px;
}

.index-header {
  margin-bottom: 56px;
}

.index-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.index-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.index-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
}

/* Post cards */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 27, 54, 0.1);
}

.post-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: var(--bg);
}

.post-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.post-card-cat {
  background: var(--primary-light);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 500;
}

.post-card-date {
  font-size: 12px;
  color: var(--text-muted);
}

.post-card-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 10px;
  flex: 1;
}

.post-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Project cards (archive) */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proj-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  background: var(--bg-dark);
}

.proj-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.proj-card:hover .proj-card-img { transform: scale(1.04); }

.proj-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,54,0.85) 0%, rgba(13,27,54,0.1) 60%, transparent 100%);
}

.proj-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10, 18, 35, 0.65);
  border: 1px solid rgba(238, 243, 255, 0.18);
  color: rgba(238, 243, 255, 0.9);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.proj-card-info {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
}

.proj-card-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.proj-card-url {
  font-size: 12px;
  color: rgba(238, 243, 255, 0.45);
}

/* ─── Footer ─── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(238, 243, 255, 0.1);
  padding: 64px 0 40px;
  color: var(--text-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(238, 243, 255, 0.5);
  font-size: 15px;
  margin-top: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(238, 243, 255, 0.4);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(238, 243, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-light); }

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(238, 243, 255, 0.1);
  display: flex;
  justify-content: space-between;
  color: rgba(238, 243, 255, 0.3);
  font-size: 14px;
  font-weight: 300;
}

/* ─── Blog post 2-col layout ─── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
  padding: 64px 0 96px;
}

.blog-main .feat-img-wrap { margin-bottom: 40px; }

.blog-main .article-body {
  max-width: none;
  margin: 0;
  padding: 0;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

/* TOC */
.blog-toc-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

#tocNav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-link {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 5px 0 5px 12px;
  border-left: 2px solid var(--border);
  line-height: 1.4;
  transition: color 0.2s, border-color 0.2s;
}

.toc-link:hover,
.toc-link.active {
  color: var(--primary);
  border-left-color: var(--primary);
}

/* CTA card */
.blog-cta-card {
  background: var(--bg-dark);
  border-color: transparent;
}

.blog-cta-eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 10px;
}

.blog-cta-body {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(238, 243, 255, 0.6);
  margin-bottom: 20px;
}

.blog-cta-btn {
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0 72px;
  }
  .blog-sidebar { position: static; }
}

/* ─── Project page hero (dark immersive) ─── */
.proj-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bg-dark);
  overflow: hidden;
  padding-top: 80px;
}

.proj-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: blur(3px);
  transform: scale(1.06);
}

.proj-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,27,54,0.55) 0%,
    rgba(13,27,54,0.75) 50%,
    rgba(13,27,54,0.97) 100%
  );
}

.proj-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 72px;
}

.back-link-light {
  color: rgba(238,243,255,0.45) !important;
}
.back-link-light:hover { color: rgba(238,243,255,0.85) !important; }

.proj-hero-content { margin-top: 40px; }

.proj-hero-badge {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(43,108,176,0.55);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6BA3D6;
  background: rgba(43,108,176,0.12);
  margin-bottom: 20px;
}

.proj-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 760px;
}

.proj-hero-url {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(238,243,255,0.4);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s;
}
.proj-hero-url:hover { color: rgba(238,243,255,0.8); }

/* ─── Cinematic project image ─── */
.proj-cinematic-img {
  width: 100%;
  aspect-ratio: 1600 / 720;
  overflow: hidden;
  border-radius: 16px;
  margin-top: -40px;
  margin-bottom: 0;
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(13,27,54,0.18);
  position: relative;
  z-index: 1;
}
.proj-cinematic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Rates page ─── */
.page-hero-sub { font-size: 17px; color: var(--text-muted); max-width: 640px; margin-top: 16px; line-height: 1.7; }

.rates-section-title { font-size: clamp(1.6rem, 2.5vw, 2rem); font-weight: 600; margin-bottom: 12px; }
.rates-section-sub { font-size: 16px; color: var(--text-muted); max-width: 720px; line-height: 1.7; margin-bottom: 40px; }

.rates-hosting { padding: 80px 0; background: var(--bg); }

.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.tier-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier-card--featured { border-color: var(--primary); box-shadow: 0 8px 32px rgba(43,108,176,0.12); }
.tier-badge {
  position: absolute;
  top: -11px; left: 24px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}
.tier-name { font-size: 17px; font-weight: 600; margin-bottom: 12px; }
.tier-price { font-size: 32px; font-weight: 600; color: var(--primary); line-height: 1; }
.tier-per { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.tier-monthly { font-size: 13px; color: var(--text-muted); margin: 6px 0 18px; }
.tier-features { list-style: none; margin: 0; padding: 0; }
.tier-features li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 7px 0 7px 22px;
  position: relative;
  border-top: 1px solid var(--border);
}
.tier-features li::before { content: "✓"; position: absolute; left: 2px; color: var(--primary); font-weight: 600; }

.rates-hourly { padding: 80px 0; background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.rates-cols { columns: 2; column-gap: 48px; }
.rate-group { break-inside: avoid; margin-bottom: 40px; }
.rate-group-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.rate-list { list-style: none; margin: 0; padding: 0; }
.rate-list li { display: flex; align-items: baseline; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.rate-name { color: var(--text); }
.rate-dots { flex: 1; border-bottom: 1px dotted var(--border); transform: translateY(-4px); }
.rate-price { font-weight: 600; white-space: nowrap; }

.rates-note { padding: 80px 0 100px; background: var(--bg); text-align: center; }
.rates-note h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; margin-bottom: 14px; }
.rates-note p { font-size: 16px; color: var(--text-muted); max-width: 620px; margin: 0 auto 28px; line-height: 1.7; }

@media (max-width: 900px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tier-grid { grid-template-columns: 1fr; }
  .rates-cols { columns: 1; }
}

/* ─── Campaign landers ─── */
body.lander { background: var(--bg); }

.lander-header {
  position: static;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.lander-header-inner { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; padding-bottom: 14px; }
.lander-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 600; color: var(--primary); text-decoration: none; }
.lander-phone:hover { text-decoration: underline; }

.lander-hero { padding: 64px 0 72px; }
.lander-hero-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 56px; align-items: start; }
.lander-eyebrow { font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.lander-hero-copy h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 20px; }
.lander-hero-copy h1 em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--primary); }
.lander-sub { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; max-width: 560px; }
.lander-checks { list-style: none; margin: 0; padding: 0; }
.lander-checks li { padding: 8px 0 8px 30px; position: relative; font-size: 16px; color: var(--text); }
.lander-checks li::before { content: "✓"; position: absolute; left: 0; top: 8px; width: 20px; height: 20px; border-radius: 50%; background: var(--primary-light); color: var(--primary); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.lander-form-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 30px 28px; box-shadow: 0 16px 48px rgba(13,27,54,0.10); position: sticky; top: 24px; }
.lander-form-title { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.lander-form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.lf-field { margin-bottom: 14px; }
.lf-field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.lf-field input, .lf-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
}
.lf-field input:focus, .lf-field textarea:focus { outline: 2px solid var(--primary); outline-offset: 0; border-color: var(--primary); }
.lf-turnstile { margin: 4px 0 14px; }
.lf-submit {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.lf-submit:hover { background: #1e4e8c; }
.lf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.lf-status { font-size: 14px; margin-top: 10px; min-height: 18px; }
.lf-status.success { color: #15803d; }
.lf-status.error { color: #b91c1c; }
.lf-privacy { font-size: 12px; color: var(--text-muted); margin-top: 10px; text-align: center; }

.platform-row { margin-top: 32px; }
.platform-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.platform-icons { display: flex; gap: 14px; flex-wrap: wrap; }
.p-icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-muted);
  animation: icon-float 3.6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  transition: color 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: default;
}
.p-icon:hover { transform: translateY(-4px) scale(1.12); box-shadow: 0 10px 24px rgba(13,27,54,0.14); animation-play-state: paused; }
.p-fb:hover { color: #1877F2; border-color: #1877F2; }
.p-ig:hover { color: #C13584; border-color: #C13584; }
.p-li:hover { color: #0A66C2; border-color: #0A66C2; }
.p-gb:hover { color: #34A853; border-color: #34A853; }
.p-x:hover  { color: #0D1B36; border-color: #0D1B36; }
.p-yt:hover { color: #FF0000; border-color: #FF0000; }
@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .p-icon { animation: none; }
  .p-icon:hover { transform: none; }
}

.cw-hero-stack { display: flex; margin-top: 36px; padding-left: 8px; }
.cw-stack-card {
  display: block;
  width: 33%;
  min-width: 0;
  margin-right: -28px;
  transform: rotate(var(--tilt, 0deg));
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 14px 36px rgba(13,27,54,0.22);
  position: relative;
  background: var(--card);
  transition: transform 0.25s, box-shadow 0.25s, z-index 0s;
  text-decoration: none;
}
.cw-stack-card:nth-child(2) { margin-top: 14px; }
.cw-stack-card:hover { transform: rotate(0deg) translateY(-8px) scale(1.06); z-index: 3; box-shadow: 0 22px 48px rgba(13,27,54,0.3); }
.cw-stack-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.cw-stack-card span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 10px 8px;
  background: linear-gradient(transparent, rgba(13,27,54,0.85));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .cw-stack-card:hover { transform: rotate(var(--tilt, 0deg)); }
}
@media (max-width: 600px) {
  .cw-hero-stack { padding-left: 0; }
  .cw-stack-card { margin-right: -18px; }
}

.lander-clients { padding: 44px 0; background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lander-clients-label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.lander-clients-row { display: flex; gap: 16px 36px; justify-content: center; align-items: center; flex-wrap: wrap; }
.client-mark { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--text); opacity: 0.55; white-space: nowrap; transition: opacity 0.2s; }
.client-mark:hover { opacity: 1; }

.lander-trust { background: var(--bg-dark); padding: 36px 0; }
.lander-trust-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.lt-stats { display: flex; gap: 48px; }
.lt-stats > div { display: flex; flex-direction: column; }
.lt-num { font-size: 26px; font-weight: 600; color: var(--text-light); }
.lt-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(238,243,255,0.5); }
.lt-badges { display: flex; gap: 28px; align-items: center; }
.lt-badges img { height: 52px; width: auto; background: #fff; border-radius: 8px; padding: 6px 10px; }

.lander-section-title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; margin-bottom: 36px; text-align: center; }

.lander-features { padding: 80px 0; }
.lander-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lander-feature { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.lander-feature h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.lander-feature p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.lander-steps { padding: 0 0 80px; }
.lander-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lander-step { text-align: center; padding: 0 12px; }
.lander-step-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 14px; }
.lander-step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.lander-step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.lander-pricing { padding: 72px 0; background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lander-pricing-sub { text-align: center; color: var(--text-muted); font-size: 16px; max-width: 640px; margin: -20px auto 40px; }
.lander-price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 760px; margin: 0 auto; }
.lander-price-card { border: 1px solid var(--border); border-radius: 12px; padding: 28px; background: var(--bg); }
.lander-price-card.featured { border-color: var(--primary); box-shadow: 0 8px 32px rgba(43,108,176,0.12); }
.lander-price-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.lp-price { font-size: 30px; font-weight: 600; color: var(--primary); margin-bottom: 16px; }
.lp-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.lander-price-card ul { list-style: none; margin: 0; padding: 0; }
.lander-price-card li { font-size: 14px; color: var(--text-muted); padding: 6px 0 6px 20px; position: relative; }
.lander-price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 600; }

.lander-faq { padding: 80px 0; }
.lander-faq-list { max-width: 720px; margin: 0 auto; }
.lander-faq-item { border-bottom: 1px solid var(--border); padding: 4px 0; }
.lander-faq-item summary { font-size: 16px; font-weight: 600; padding: 14px 0; cursor: pointer; list-style: none; position: relative; padding-right: 28px; }
.lander-faq-item summary::after { content: "+"; position: absolute; right: 4px; color: var(--primary); font-size: 20px; font-weight: 400; }
.lander-faq-item[open] summary::after { content: "–"; }
.lander-faq-item p { font-size: 15px; color: var(--text-muted); line-height: 1.7; padding: 0 0 16px; }

.lander-cta { background: var(--bg-dark); padding: 72px 0; text-align: center; }
.lander-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; color: var(--text-light); margin-bottom: 12px; }
.lander-cta h2 em { font-family: 'Playfair Display', serif; font-style: italic; color: #6FA3D8; }
.lander-cta p { color: rgba(238,243,255,0.6); font-size: 16px; margin-bottom: 28px; }
.lander-cta-actions { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.lander-cta-btn { display: inline-block; width: auto; padding: 14px 36px; }
.lander-cta-phone { color: rgba(238,243,255,0.75); font-size: 15px; text-decoration: none; }
.lander-cta-phone:hover { color: #fff; }

.lander-footer { padding: 24px 0; text-align: center; }
.lander-footer p { font-size: 13px; color: var(--text-muted); }
.lander-footer a { color: var(--primary); text-decoration: none; }

@media (max-width: 900px) {
  .lander-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lander-form-card { position: static; }
  .lander-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .lt-stats { gap: 28px; }
}
@media (max-width: 600px) {
  .lander-feature-grid, .lander-step-grid, .lander-price-grid { grid-template-columns: 1fr; }
  .lander-trust-inner { justify-content: center; text-align: center; }
}

/* ─── Sidebar service tags ─── */
.sidebar-meta-item--tags { border-bottom: none; }

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.sidebar-tag {
  display: inline-block;
  padding: 4px 11px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ─── Project layout (2-col with sidebar) ─── */
.project-feat-img { margin-top: 0; }

.project-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
  padding: 72px 0 96px;
}

.project-layout > .article-body {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* ─── Project sidebar ─── */
.project-sidebar { position: sticky; top: 100px; }

.project-sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.sidebar-meta-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-meta-item:first-child { padding-top: 0; }
.sidebar-meta-item:last-of-type { border-bottom: none; }

.sidebar-meta-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.sidebar-meta-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.sidebar-cta {
  display: block;
  text-align: center;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* ─── Project prev/next navigation ─── */
.project-nav {
  border-top: 1px solid var(--border);
  background: var(--card);
}

.project-nav .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.project-nav-item {
  text-decoration: none;
  color: inherit;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
  display: block;
}
.project-nav-item:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.project-nav-next { text-align: right; }

.project-nav-dir {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.project-nav-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* ─── Related work section ─── */
.related-work {
  padding: 72px 0 100px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.related-work-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.related-work-header .index-eyebrow { margin-bottom: 0; }

.related-work-all {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}
.related-work-all:hover { text-decoration: underline; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .project-layout { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 72px; }
  .project-sidebar { position: static; }
  .project-nav .container { grid-template-columns: 1fr; }
  .project-nav-next { text-align: left; }
  .proj-hero { min-height: 420px; }
  .proj-hero-title { font-size: 2.2rem; }
  .proj-cinematic-img { height: 300px; margin-top: -24px; }
}

@media (max-width: 600px) {
  .proj-hero { min-height: 360px; padding-top: 70px; }
  .proj-hero-inner { padding-bottom: 48px; }
  .proj-cinematic-img { height: 220px; border-radius: 10px; margin-top: -16px; }
  .post-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* CTA strip — project pages + process page */
.cta-section {
  padding: 100px 0 120px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.cta-section .btn-pill {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-section h2 em { font-style: italic; }
.cta-section p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  header nav { display: none; }
  .topbar .container { justify-content: center; gap: 20px; }
  .post-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .page-hero { padding: 120px 0 48px; }
  .article-body { padding: 48px 0 72px; }
  .project-meta-bar { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════
   SEO PAGE STYLES — service, location, combo pages
   ═══════════════════════════════════════════════ */

/* ─── Hero lede ─── */
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin-top: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ─── Section scaffolding ─── */
.seo-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.seo-section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: none;
}

.seo-section--tinted {
  background: var(--primary-light);
  border-top: none;
}

.seo-section-h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.seo-section-h2--light { color: var(--text-light); }

.seo-section-lede {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: -24px;
  margin-bottom: 40px;
}

.seo-narrow { max-width: 720px; }

.seo-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ─── Benefits grid ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.benefit-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Process steps ─── */
.process-steps { display: grid; gap: 32px; }

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}

.process-step-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(43, 108, 176, 0.6);
  line-height: 1;
  padding-top: 4px;
}

.seo-section--dark .process-step-num { color: rgba(144, 191, 255, 0.5); }

.process-step-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.seo-section--dark .process-step-body h3 { color: var(--text-light); }

.process-step-body p {
  font-size: 15px;
  line-height: 1.65;
}

.seo-section--dark .process-step-body p { color: rgba(238, 243, 255, 0.7); }

/* ─── Deliverables list ─── */
.deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deliverables-list li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.deliverables-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.deliverables-list--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

/* ─── Trust points ─── */
.trust-points { display: flex; flex-direction: column; gap: 24px; }

.trust-point strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.trust-point p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── FAQ ─── */
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:first-of-type { border-top: 1px solid var(--border); }

.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Related services ─── */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}

.related-service-card:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.related-service-cat {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.related-service-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* ─── Location services grid ─── */
.location-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.location-service-group h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.location-service-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-service-group ul a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.location-service-group ul a:hover { color: var(--primary); }

/* ─── Location about section ─── */
.location-about p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.location-about p + p { margin-top: 1rem; }

/* ─── Nearby grid ─── */
.nearby-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nearby-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  transition: all 0.2s;
}

.nearby-card:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ─── Service index ─── */
.service-category-group { margin-bottom: 56px; }

.service-cat-heading {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.service-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-index-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
  display: block;
}

.service-index-card:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

/* ─── Location index ─── */
.location-region-group { margin-bottom: 48px; }

.location-index-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.location-index-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
  display: block;
}

.location-index-card:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ─── Combo related links ─── */
.related-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-links-list a {
  color: var(--primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.related-links-list a:hover { text-decoration: underline; }

.seo-learn-more {
  margin-top: 24px;
  font-size: 15px;
}

.seo-learn-more a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.seo-learn-more a:hover { text-decoration: underline; }

/* ─── Contact section on SEO pages ─── */
.seo-contact-section {
  padding: 120px 0 140px;
  background: var(--bg-dark);
  color: var(--text-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-trust h2 {
  font-family: var(--sans);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-trust h2 em {
  font-family: var(--serif);
  font-style: italic;
}

.contact-sub {
  font-size: 17px;
  color: rgba(238, 243, 255, 0.6);
  font-weight: 300;
  margin-bottom: 48px;
  line-height: 1.7;
}

.contact-steps {
  list-style: none;
  margin-bottom: 48px;
}

.contact-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-steps li:last-child { margin-bottom: 0; }

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(43, 108, 176, 0.3);
  border: 1px solid rgba(43, 108, 176, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: #90BFFF;
}

.step-text strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 3px;
}

.step-text span {
  font-size: 13px;
  color: rgba(238, 243, 255, 0.5);
}

.contact-info-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid rgba(238, 243, 255, 0.1);
}

.contact-info-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(238, 243, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: color 0.2s;
}

.contact-info-links a:hover { color: #90BFFF; }

.contact-info-links svg {
  opacity: 0.5;
  flex-shrink: 0;
}

/* Form styles (shared with index.html inline — must be duplicated here for SEO templates) */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(238, 243, 255, 0.1);
  border-radius: 12px;
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(238, 243, 255, 0.5);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(238, 243, 255, 0.15);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-light);
  font-family: var(--sans);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(238,243,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-field select option {
  background: #1a2d4a;
  color: var(--text-light);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(238, 243, 255, 0.3);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #2B6CB0;
  background: rgba(43, 108, 176, 0.08);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.hp-field { display: none !important; }

.form-turnstile { margin-bottom: 20px; }

.form-submit-btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.1s;
}

.form-submit-btn:hover { background: #1e4e8c; }
.form-submit-btn:active { transform: scale(0.99); }
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  display: none;
}

.form-status.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
  display: block;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  display: block;
}

.form-success-state {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.form-success-state.visible { display: block; }

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success-state h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-success-state p {
  color: rgba(238, 243, 255, 0.6);
  font-size: 15px;
  font-weight: 300;
}

/* ─── SEO responsive ─── */
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .seo-two-col { grid-template-columns: 1fr; gap: 40px; }
  .location-services-grid { grid-template-columns: repeat(2, 1fr); }
  .related-services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-index-grid { grid-template-columns: repeat(2, 1fr); }
  .location-index-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px 24px; }
  .location-services-grid { grid-template-columns: 1fr 1fr; }
  .related-services-grid { grid-template-columns: 1fr; }
  .service-index-grid { grid-template-columns: 1fr; }
  .location-index-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverables-list--two-col { grid-template-columns: 1fr; }
  .seo-contact-section { padding: 80px 0 100px; }
}

/* ─── Contractor page (/contractor-websites/) ─── */
.cw-hero { padding: 150px 0 72px; }

.cw-showcase { padding: 88px 0; background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cw-showcase-sub { text-align: center; color: var(--text-muted); font-size: 17px; max-width: 620px; margin: -28px auto 56px; }
.cw-case-list { display: flex; flex-direction: column; gap: 64px; }
.cw-case { display: grid; grid-template-columns: 6fr 5fr; gap: 48px; align-items: center; }
.cw-case--flip .cw-case-img { order: 2; }
.cw-case--flip .cw-case-body { order: 1; }
.cw-case-img { display: block; border-radius: 12px; overflow: hidden; box-shadow: 0 16px 48px rgba(13,27,54,0.14); }
.cw-case-img img { display: block; width: 100%; height: auto; transition: transform 0.4s ease; }
.cw-case-img:hover img { transform: scale(1.03); }
.cw-case-industry { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.cw-case-title { font-size: 26px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 12px; }
.cw-case-title a { color: var(--text); text-decoration: none; }
.cw-case-title a:hover { color: var(--primary); }
.cw-case-blurb { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.cw-case-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cw-case-more { font-size: 14px; font-weight: 600; color: var(--primary); text-decoration: none; }
.cw-case-more:hover { text-decoration: underline; }
.cw-case-live { font-size: 13px; color: var(--text-muted); text-decoration: none; border-bottom: 1px dotted var(--border); }
.cw-case-live:hover { color: var(--primary); }
.cw-showcase-all { text-align: center; margin-top: 56px; }
.cw-showcase-all a { font-size: 15px; font-weight: 600; color: var(--primary); text-decoration: none; }
.cw-showcase-all a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .cw-hero { padding-top: 130px; }
  .cw-hero .lander-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .cw-hero .lander-form-card { position: static; }
  .cw-case, .cw-case--flip { grid-template-columns: 1fr; gap: 24px; }
  .cw-case--flip .cw-case-img { order: 0; }
  .cw-case--flip .cw-case-body { order: 1; }
}

/* ─── Unsubscribe page ─── */
.unsub-section { padding: 170px 0 120px; min-height: 60vh; }
.unsub-card { max-width: 520px; margin: 0 auto; position: static; }
.unsub-title { font-size: 30px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; }
.unsub-sub { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.unsub-optional { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--text-muted); }
.unsub-success { text-align: center; padding: 16px 0 8px; }
.unsub-success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.unsub-success h2 { font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.unsub-success p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.unsub-success-note { font-size: 13px; }
.unsub-success-note a { color: var(--primary); text-decoration: none; }
.unsub-success-note a:hover { text-decoration: underline; }
