/* Grand Rapids Web Development — Premium local business site */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0B1F33;
  --navy-deep: #061428;
  --navy-mid: #132d4f;
  --blue: #1E7BFF;
  --blue-bright: #3d9bff;
  --blue-glow: rgba(30, 123, 255, 0.45);
  --blue-soft: #DCEBFF;
  --blue-muted: #a8cfff;
  --white: #FFFFFF;
  --gray-50: #F5F7FA;
  --gray-100: #E8ECF2;
  --gray-200: #D1D9E6;
  --gray-400: #8B9AAB;
  --gray-500: #5C6B7A;
  --charcoal: #1F2933;
  --shadow-sm: 0 2px 8px rgba(11, 31, 51, 0.06);
  --shadow: 0 8px 32px rgba(11, 31, 51, 0.1);
  --shadow-lg: 0 20px 60px rgba(11, 31, 51, 0.14);
  --shadow-blue: 0 12px 40px rgba(30, 123, 255, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --max: 1180px;
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

a:hover { color: var(--blue-bright); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 31, 51, 0.06);
  box-shadow: 0 1px 0 rgba(11, 31, 51, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--navy);
}

.nav-toggle svg { width: 26px; height: 26px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.site-nav a {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
}

.site-nav a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-dropdown-toggle:hover { color: var(--blue); background: var(--blue-soft); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.25s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #1565d8 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 16px 48px rgba(30, 123, 255, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-lg { padding: 1rem 1.75rem; font-size: 0.95rem; }

/* Header CTAs: one per breakpoint (.btn display:inline-flex must not override these) */
.header-inner > .header-cta {
  display: inline-flex;
  margin-left: 0.5rem;
}

.site-nav .nav-cta-mobile {
  display: none;
}

@media (max-width: 768px) {
  .header-inner > .header-cta {
    display: none;
  }

  .site-nav .nav-cta-mobile {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 0.75rem;
  }
}

/* Hero */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  padding: 5rem 0 5.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(30, 123, 255, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(30, 123, 255, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 45%, #0a2540 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 123, 255, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: rgba(30, 123, 255, 0.15);
  border: 1px solid rgba(30, 123, 255, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-muted);
  margin-bottom: 1.25rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 .hero-site-name {
  display: block;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-muted);
  margin-bottom: 0.65rem;
  -webkit-text-fill-color: var(--blue-muted);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue-bright), #60b0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.75rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* Browser mockup */
.browser-mockup {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.75rem;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(30, 123, 255, 0.12);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.browser-screen {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--gray-100);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gray-200);
}

.browser-url {
  flex: 1;
  margin-left: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: var(--white);
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--gray-500);
  border: 1px solid var(--gray-100);
}

.browser-content {
  padding: 1.25rem;
  background: linear-gradient(180deg, var(--blue-soft) 0%, var(--white) 40%);
}

.mock-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mock-nav span {
  padding: 0.25rem 0.6rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 4px;
}

.mock-nav span.muted {
  background: var(--gray-100);
  color: var(--gray-500);
}

.mock-hero-block {
  background: var(--navy);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
}

.mock-hero-block h4 {
  color: var(--white);
  font-size: 0.85rem;
  margin: 0 0 0.5rem;
  font-weight: 800;
}

.mock-hero-block p {
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  margin: 0 0 0.75rem;
  line-height: 1.4;
}

.mock-btn {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--blue);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 4px;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.mock-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 0.6rem;
  font-size: 0.6rem;
  color: var(--gray-500);
  font-weight: 600;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-badge.top { top: -12px; right: 20px; }
.floating-badge.bottom { bottom: 24px; left: -16px; }

.floating-badge .icon-check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Problem band */
.problem-band {
  background: linear-gradient(135deg, var(--blue-soft) 0%, #eef4ff 100%);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(30, 123, 255, 0.1);
}

.problem-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.problem-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), #1565d8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: var(--shadow-blue);
  flex-shrink: 0;
}

.problem-band p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.45;
}

/* Sections */
.section { padding: 5rem 0; position: relative; }
.section-alt {
  background: var(--gray-50);
  background-image: radial-gradient(circle at 100% 0%, rgba(30, 123, 255, 0.04) 0%, transparent 40%);
}
.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-header { max-width: 720px; margin-bottom: 3rem; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-dark .section-label { color: var(--blue-muted); }

.section-header h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  color: var(--navy);
  margin: 0 0 0.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-dark .section-header h2 { color: var(--white); }

.section-header p {
  color: var(--gray-500);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-dark .section-header p { color: rgba(255,255,255,0.72); }

/* Homepage: lighter visual rhythm — front door, not the full pitch */
.page-home .section { padding: 3.25rem 0; }
.page-home .section-header { margin-bottom: 2rem; }
.page-home .section-header h2 { font-size: 1.65rem; }
.page-home .section-header p { font-size: 0.98rem; }
.page-home .problem-band { padding: 1.75rem 0; }
.page-home .proof-strip { padding: 1.25rem 0; }

/* Cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 123, 255, 0.2);
}

.card:hover::before { opacity: 1; }

.card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 0.65rem;
  font-weight: 800;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.card-link { display: block; text-decoration: none; color: inherit; }
.card-link:hover { color: inherit; }

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue-soft), #e8f2ff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(30, 123, 255, 0.15);
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.audience-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.25rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}

.audience-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* Diff list */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.diff-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.diff-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--blue), #1565d8);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.content-panel {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.content-panel h3 {
  font-size: 1.25rem;
  margin: 0 0 1rem;
  font-weight: 800;
}

.content-panel p {
  font-size: 0.92rem;
  opacity: 0.85;
  margin: 0 0 1rem;
  line-height: 1.65;
}

.content-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-panel li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  opacity: 0.9;
}

/* Process */
.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-soft));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), #1565d8);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-blue);
  border: 3px solid var(--white);
}

.process-step h3 {
  font-size: 0.88rem;
  color: var(--navy);
  margin: 0 0 0.4rem;
  font-weight: 800;
}

.process-step p {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.45;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-card:last-child:nth-child(3n + 1) {
    grid-column: 1 / -1;
    max-width: calc((100% - 3rem) / 3);
    margin-inline: auto;
    width: 100%;
  }
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.03);
}

.portfolio-body { padding: 1.35rem; }
.portfolio-body h3 { font-size: 1rem; color: var(--navy); margin: 0 0 0.4rem; font-weight: 800; }
.portfolio-body p { font-size: 0.85rem; color: var(--gray-500); margin: 0; line-height: 1.55; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 3rem;
  color: var(--blue-soft);
  font-weight: 800;
  line-height: 1;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), #1565d8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin: 0 0 1rem;
  line-height: 1.65;
  font-style: normal;
}

.testimonial-card strong {
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 700;
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #0a3060 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(30, 123, 255, 0.2) 0%, transparent 50%);
}

.cta-band .container { position: relative; z-index: 1; }

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 0.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 auto 1.75rem;
  max-width: 580px;
  opacity: 0.88;
  font-size: 1.05rem;
}

.cta-band .hero-actions { justify-content: center; }

/* Page hero */
.page-hero {
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(30, 123, 255, 0.15) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 0.85rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0 auto;
  max-width: 640px;
  opacity: 0.88;
  font-size: 1.05rem;
}

.page-hero .breadcrumbs,
.page-hero .breadcrumb {
  justify-content: center;
}

/* FAQ page */
.faq-hero {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(165deg, #061628 0%, var(--navy-deep) 35%, var(--navy) 100%);
}

.faq-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}

.faq-page-section {
  background:
    linear-gradient(180deg, var(--gray-50) 0%, var(--white) 12%),
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(30, 123, 255, 0.06) 0%, transparent 55%);
  padding: 3.5rem 0 4.5rem;
}

.faq-accordion {
  max-width: 880px;
  margin: 0 auto;
}

.faq-accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq-accordion-item[open] {
  border-color: rgba(30, 123, 255, 0.35);
  box-shadow: var(--shadow-md);
}

.faq-accordion-item summary {
  padding: 1.2rem 1.4rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.4;
}

.faq-accordion-item summary::-webkit-details-marker { display: none; }

.faq-accordion-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-top: 0.1rem;
}

.faq-accordion-item[open] summary::after {
  content: '−';
}

.faq-accordion-item summary:hover {
  color: var(--blue);
}

.faq-answer {
  padding: 0 1.4rem 1.35rem;
  border-top: 1px solid var(--gray-100);
}

.faq-answer p {
  margin: 1rem 0 0;
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-page-note {
  max-width: 880px;
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.faq-page-note a {
  color: var(--blue);
  font-weight: 700;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--white); }

.breadcrumbs {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumbs a { color: rgba(255,255,255,0.8); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs > span { color: rgba(255,255,255,0.45); }

/* Prose */
.prose { max-width: 760px; }
.prose p { margin: 0 0 1.1rem; color: var(--charcoal); line-height: 1.75; }
.prose h2 { font-size: 1.4rem; color: var(--navy); margin: 2rem 0 0.75rem; font-weight: 800; }
.prose h3 { font-size: 1.1rem; color: var(--navy); margin: 1.5rem 0 0.5rem; font-weight: 700; }
.prose ul { margin: 0 0 1.25rem; padding-left: 1.25rem; }
.prose li { margin-bottom: 0.4rem; color: var(--charcoal); }

.faq-list { max-width: 760px; }

.breadcrumb-nav {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.breadcrumb-nav a {
  color: var(--blue);
  font-weight: 600;
}

.breadcrumb-nav a:hover {
  color: var(--navy);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.fit-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.fit-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
  color: var(--navy);
}

.fit-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.65;
}

.fit-card.not-fit {
  background: var(--gray-50);
}

.mock-badge-row {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.mock-mini-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: rgba(30, 123, 255, 0.15);
  color: var(--blue);
}

.mock-form-preview {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
}

/* FAQ */
.prose a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose a:hover {
  color: var(--navy);
}
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 1.35rem 0;
}
.faq-item h3 { font-size: 1.05rem; color: var(--navy); margin: 0 0 0.5rem; font-weight: 800; }
.faq-item p { margin: 0; font-size: 0.92rem; color: var(--gray-500); line-height: 1.65; }
.faq-item a { color: var(--blue); font-weight: 700; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 { font-size: 1.6rem; color: var(--navy); margin: 0 0 1rem; font-weight: 800; }
.contact-info p { color: var(--gray-500); margin: 0 0 1rem; font-size: 0.95rem; }
.contact-detail { margin-bottom: 0.75rem; font-size: 0.95rem; }
.contact-detail strong { color: var(--navy); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-group { margin-bottom: 0.85rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 123, 255, 0.12);
}

.form-group textarea { min-height: 110px; resize: vertical; }

.form-card h2 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 1.5rem;
  font-weight: 800;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand img {
  height: 72px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  opacity: 0.75;
}

.footer-col h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin: 0 0 1.15rem;
  font-weight: 800;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-links a:hover { color: var(--blue-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.55;
}

/* Proof strip (below hero) */
.proof-strip {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.15rem 0;
}

.proof-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
}

.proof-strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
}

.proof-strip-item svg {
  flex-shrink: 0;
  color: var(--blue);
}

.portfolio-body .portfolio-meta {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0.35rem 0 0.5rem;
}

.portfolio-body .portfolio-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--blue);
  text-decoration: none;
}

.portfolio-body .portfolio-link:hover {
  color: var(--navy);
}

.testimonial-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

/* Trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-100);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.trust-item svg { color: var(--blue); flex-shrink: 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  position: relative;
}

.pricing-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
  font-weight: 800;
}

.pricing-range {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0.5rem 0 0.25rem;
  line-height: 1.2;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.pricing-card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  flex-grow: 1;
}

.pricing-card li {
  margin-bottom: 0.45rem;
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 1.5;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.92rem;
}

.pricing-table th,
.pricing-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
}

.pricing-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

.pricing-table tr:nth-child(even) td {
  background: var(--gray-50);
}

.case-study-block {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.case-study-block .portfolio-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.case-study-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.case-study-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--navy);
}

.case-study-teaser {
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.case-study-details {
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

.case-study-details details {
  margin-bottom: 0.75rem;
}

.case-study-details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.case-study-details p,
.case-study-details ul {
  margin: 0.5rem 0 0;
  color: var(--charcoal);
  font-size: 0.9rem;
  line-height: 1.6;
}

.case-study-details ul {
  padding-left: 1.15rem;
}

.proof-mini-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.proof-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.proof-mini-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.proof-mini-card p { color: var(--charcoal); font-size: 0.92rem; margin-bottom: 0.75rem; }
.proof-mini-card .portfolio-link { font-weight: 700; color: var(--blue); font-size: 0.88rem; }

/* Mobile */
@media (max-width: 1024px) {
  .hero-layout, .hero-grid, .contact-grid, .diff-grid { grid-template-columns: 1fr; }
  .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(3, 1fr); }
  .process-track::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .browser-mockup { transform: none; }
  .floating-badge.bottom { left: 0; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
    align-items: stretch;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a, .nav-dropdown-toggle { width: 100%; text-align: left; }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 0.5rem;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }

  .fit-grid { grid-template-columns: 1fr; }
  .cards-2, .cards-3, .cards-4, .portfolio-grid, .testimonials-grid, .audience-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid { grid-template-columns: 1fr; }

  .process-track { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .problem-inner { grid-template-columns: 1fr; text-align: center; }
  .problem-icon { margin: 0 auto; }
  .hero { padding: 3.5rem 0 4rem; }
  .floating-badge { display: none; }

  /* Mobile layout, overflow, and touch targets */
  :root { --header-h: 80px; }
  html { overflow-x: clip; }
  body { overflow-x: clip; }
  .container { padding: 0 1rem; }

  .logo-link img {
    height: 48px;
    max-width: min(110px, 32vw);
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 0.65rem;
    flex-shrink: 0;
  }

  .header-simple .header-cta {
    display: inline-flex;
    padding: 0.5rem 0.7rem;
    font-size: 0.68rem;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
    max-width: 46%;
    flex-shrink: 1;
  }

  .hero-layout > div:first-child {
    text-align: center;
  }

  .hero-badge {
    justify-content: center;
    font-size: 0.72rem;
    padding: 0.35rem 0.85rem;
    max-width: 100%;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .hero-lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-band .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .hero-stats {
    justify-content: center;
    gap: 1rem 1.25rem;
  }

  .hero-stat {
    text-align: center;
    min-width: 0;
    flex: 1 1 40%;
  }

  .browser-mockup { display: none; }

  .section { padding: 3rem 0; }
  .page-hero { padding: 2.75rem 0; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .page-hero p { font-size: 0.95rem; }
  .faq-hero { padding: 3rem 0 3.5rem; }

  h1, h2, h3, .section-header h2 {
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .proof-strip-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }

  .proof-strip-item {
    justify-content: center;
    text-align: center;
    max-width: 100%;
    font-size: 0.8rem;
  }

  .trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .cta-band .hero-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0.25rem;
  }

  .pricing-range {
    font-size: clamp(1.35rem, 5vw, 1.65rem);
  }

  .pricing-card .btn { width: 100%; }

  .faq-accordion-item summary {
    font-size: 0.9rem;
    padding: 1rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .faq-answer { padding: 0 1rem 1.15rem; }

  .breadcrumbs,
  .breadcrumb,
  .breadcrumb-nav {
    justify-content: center;
    text-align: center;
    font-size: 0.78rem;
    overflow-wrap: anywhere;
  }

  .case-study-body { padding: 1.25rem 1rem; }

  .site-footer { padding: 3rem 0 1.5rem; }
  .footer-grid {
    text-align: center;
    gap: 2rem;
  }

  .footer-brand img {
    height: 56px;
    max-width: 110px;
    margin: 0 auto 1rem;
  }

  .footer-col { text-align: center; }
  .footer-links { text-align: center; }

  .form-card { padding: 1.25rem 1rem; }
  .contact-grid { gap: 2rem; }

  .contact-info a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pricing-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .btn {
    min-height: 44px;
  }

  .btn-lg {
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
  }

  .prose { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-stat {
    flex: 1 1 100%;
  }

  .hero-stats {
    gap: 1rem;
  }

  .card h3,
  .card p,
  .pricing-card h3,
  .pricing-card li {
    overflow-wrap: break-word;
  }

  .header-simple .header-cta {
    max-width: 42%;
    font-size: 0.62rem;
  }
}

/* Desktop layout — restore full-width grids and left-aligned hero/footer */
@media (min-width: 769px) {
  .container {
    padding: 0 2rem;
  }

  .hero-layout > div:first-child {
    text-align: left;
  }

  .hero-badge {
    justify-content: flex-start;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .btn,
  .cta-band .hero-actions .btn {
    width: auto;
    white-space: nowrap;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .hero-stat {
    text-align: left;
    flex: none;
  }

  .proof-strip-inner {
    flex-direction: row;
    align-items: center;
  }

  .proof-strip-item {
    justify-content: flex-start;
    text-align: left;
  }

  .trust-bar {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .footer-grid {
    text-align: left;
  }

  .footer-brand img {
    margin: 0 0 1rem;
  }

  .footer-col,
  .footer-links {
    text-align: left;
  }

  .site-nav a,
  .nav-dropdown-toggle {
    width: auto;
  }

  .pricing-card .btn {
    width: auto;
  }

  .cta-band .hero-actions {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
}
