/* H4Services – Sand Tan #e1b382, Sand Tan Shadow #c89666, Night Blue #2d545e, Night Blue Shadow #12343b */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Nunito:wght@600;700;800&display=swap');

:root {
  --sand-tan: #e1b382;
  --sand-tan-shadow: #c89666;
  --night-blue: #2d545e;
  --night-blue-shadow: #12343b;
  --primary: var(--night-blue);
  --primary-dark: var(--night-blue-shadow);
  --primary-light: rgba(45, 84, 94, 0.45);
  --accent: var(--primary);
  --accent-dark: var(--primary-dark);
  --bg: rgba(225, 179, 130, 0.1);
  --bg-alt: rgba(225, 179, 130, 0.22);
  --bg-primary-tint: rgba(45, 84, 94, 0.08);
  --bg-dark: var(--night-blue-shadow);
  --bg-dark-accent: var(--night-blue);
  --text: var(--night-blue-shadow);
  --text-muted: var(--night-blue);
  --white: #fffefc;
  --border: var(--sand-tan-shadow);
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -2px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --glow: 0 0 0 1px var(--primary), 0 0 20px rgba(45, 84, 94, 0.25);
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-logo: "Nunito", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; font-family: var(--font-body); font-size: 18px; line-height: 1.6; color: var(--text); background: var(--bg); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.skip-link { position: absolute; top: -3rem; left: 0.5rem; padding: 0.5rem 1rem; background: var(--accent); color: #fff; font-weight: 600; z-index: 100; border-radius: 0 0 6px 6px; min-height: 44px; display: inline-flex; align-items: center; }
.skip-link:focus { top: 0; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* Header – midnight teal at top (legible), blur on scroll */
.site-header {
  background: var(--night-blue-shadow);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.25rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header .logo,
.site-header .site-nav a:not(.nav-cta):not(.nav-cta-venu),
.site-header .site-nav-toggle { color: var(--white); }
.site-header .logo:hover { color: var(--sand-tan); }
.site-header .site-nav a:not(.nav-cta):not(.nav-cta-venu):hover { color: var(--sand-tan); }

.site-header-scrolled {
  background: rgba(18, 52, 59, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.08);
}
.site-header-scrolled .nav-cta { background: var(--sand-tan); color: var(--night-blue-shadow); border-color: var(--sand-tan-shadow); }
.site-header-scrolled .nav-cta:hover { background: var(--sand-tan-shadow); color: var(--night-blue-shadow); }
.site-header-scrolled .nav-cta-venu { background: #6B0F2A; color: #fff; border-color: #5a0d24; }
.site-header-scrolled .nav-cta-venu:hover { background: #5a0d24; color: #fff; }

.site-header .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.logo { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-logo); font-size: 1.4rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; min-height: 44px; }
.logo-icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  vertical-align: middle;
  object-fit: contain;
  transform-origin: center center;
}
.site-header .logo-icon {
  width: 5rem;
  height: 5rem;
  filter: brightness(0) invert(1);
}
.site-header .logo:hover .logo-icon { opacity: 0.85; }
.logo:hover .logo-icon { opacity: 0.9; }
.site-footer .footer-logo { filter: brightness(0); }
/* H and 4 on same baseline, like normal text on lined paper */
.logo .logo-num {
  vertical-align: baseline;
  margin-left: -0.28em;
}
.page-header .logo-num {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  top: -0.16em;
  margin-left: -0.06em;
}
.logo:hover { text-decoration: none; color: var(--primary); }
.site-nav { display: flex; gap: 1.75rem; flex-wrap: wrap; align-items: center; }
.site-nav a { font-weight: 500; color: var(--text); font-size: 0.95rem; min-height: 44px; display: inline-flex; align-items: center; }
.site-nav a:hover { color: var(--primary); }
.site-nav .nav-cta {
  padding: 0.5rem 1rem;
  background: var(--sand-tan);
  color: var(--night-blue-shadow);
  border: 2px solid var(--sand-tan-shadow);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.site-nav .nav-cta:hover { background: var(--sand-tan-shadow); color: var(--night-blue-shadow); border-color: var(--sand-tan-shadow); text-decoration: none; }
.site-nav .nav-cta-venu {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  background: #6B0F2A;
  color: #fff;
  border-color: #5a0d24;
}
.site-nav .nav-cta-venu:hover { background: #5a0d24; color: #fff; border-color: #4a0b1e; text-decoration: none; }

/* Mobile: menu toggle button (hidden on desktop) */
.site-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}
.site-nav-toggle:hover { color: var(--primary); background: rgba(45, 84, 94, 0.08); }
.site-nav-toggle:focus { outline: 2px solid var(--primary); outline-offset: 2px; }
.site-nav-toggle[aria-expanded="true"] { color: var(--primary); }

/* Hero – bold, two CTAs (Hunt-style) */
.hero {
  padding: 4rem 0 4.5rem;
  text-align: center;
  background: linear-gradient(165deg, var(--bg-dark) 0%, var(--bg-dark-accent) 50%, var(--night-blue) 100%);
  color: var(--white);
}
.hero .container { max-width: 840px; }
.hero .hero-label { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--sand-tan); margin-bottom: 0.75rem; }
.hero .btn { background: var(--sand-tan); color: var(--night-blue-shadow); border: none; }
.hero .btn:hover { background: var(--sand-tan-shadow); color: var(--night-blue-shadow); text-decoration: none; }
.hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 1rem; line-height: 1.15; font-weight: 700; }
.hero h1 .line2 { display: block; }
.hero .hero-lead { font-size: 1.15rem; line-height: 1.65; opacity: 0.92; margin: 0 0 2rem; }
.hero .btn-group { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero .btn { margin: 0; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.75rem; }
.hero .btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.hero .btn-ghost:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.1); text-decoration: none; }

.hero .btn-get-started { position: relative; }
@media (prefers-reduced-motion: no-preference) {
  .hero .btn-get-started { animation: h4-pulse 2.5s ease-in-out infinite; }
}
@media (prefers-reduced-motion: reduce) {
  .hero .btn-get-started { animation: none; }
}
@keyframes h4-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225, 179, 130, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(225, 179, 130, 0); }
}

/* Hero – Trades (Websites That Book Jobs) */
.hero-trades {
  min-height: 500px;
  padding: 3rem 0 4rem;
  text-align: left;
  position: relative;
}
.hero-trades::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-trades .hero-trades-container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px; /* override .hero .container 840px for two-column layout */
}
@media (min-width: 900px) {
  .hero-trades { min-height: 600px; padding: 4rem 0 5rem; }
  .hero-trades-container { grid-template-columns: 1fr 1fr; gap: 3rem; text-align: left; }
}
.hero-trades-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: var(--white);
}
@media (min-width: 900px) {
  .hero-trades-headline { font-size: 56px; }
}
@media (max-width: 599px) {
  .hero-trades-headline { font-size: 36px; }
}
.hero-trades-subhead {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  margin: 0 0 2rem;
  color: rgba(255, 254, 252, 0.92);
}
@media (min-width: 900px) {
  .hero-trades-subhead { font-size: 20px; }
}
@media (max-width: 599px) {
  .hero-trades-subhead { font-size: 16px; }
}
.hero-trades-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-trades-btns .btn {
  min-height: 48px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
}
.hero-btn-primary {
  background: var(--sand-tan) !important;
  color: var(--night-blue-shadow) !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.hero-btn-primary:hover {
  background: var(--sand-tan-shadow) !important;
  color: var(--night-blue-shadow) !important;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.hero-btn-outline {
  background: transparent !important;
  color: var(--white) !important;
  border: 2px solid var(--sand-tan) !important;
}
.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  border-color: var(--sand-tan) !important;
  text-decoration: none;
}
.hero-trades-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 14px;
  color: rgba(255, 254, 252, 0.8);
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-trust-check {
  color: var(--sand-tan);
  font-weight: 700;
}
.hero-trades-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
@media (min-width: 900px) {
  .hero-trades-visual { min-height: 320px; justify-content: flex-end; }
}

/* Hero device mockup – laptop only */
.hero-devices {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  display: none;
}

@media (min-width: 900px) {
  .hero-devices {
    display: block;
  }
}

.laptop-mockup {
  position: relative;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35)) drop-shadow(0 10px 25px rgba(0,0,0,0.2));
}

.laptop-bezel {
  background: linear-gradient(145deg, #2a2a2e 0%, #1c1c20 50%, #111113 100%);
  border-radius: 12px 12px 0 0;
  padding: 14px 14px 10px 14px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom: none;
}

.laptop-bezel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px 12px 0 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  pointer-events: none;
}

.laptop-camera {
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #1a2a3a 30%, #0a0a15 70%);
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.1);
  margin: 0 auto 8px auto;
  position: relative;
}

.laptop-camera::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 2px;
  height: 2px;
  background: #1a3a2a;
  border-radius: 50%;
}

.laptop-screen {
  background: #0a0a0a;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
  border: 1px solid rgba(255,255,255,0.04);
}

.laptop-screen iframe {
  width: 200%;
  height: 200%;
  transform: scale(0.5);
  transform-origin: top left;
  border: none;
  pointer-events: none;
}

.laptop-screen-static {
  background: #0a0a0a;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.laptop-body {
  background: linear-gradient(to bottom, #333338, #28282c);
  height: 18px;
  border-radius: 0 0 2px 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-left: 1px solid rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.04);
}

.laptop-keyboard-area {
  width: 70%;
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 4px,
    transparent 4px,
    transparent 5px
  );
  border-radius: 1px;
}

.laptop-trackpad {
  width: 25%;
  height: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
  border: 0.5px solid rgba(255,255,255,0.06);
}

.laptop-lip {
  width: 104%;
  margin-left: -2%;
  height: 6px;
  background: linear-gradient(to bottom, #3a3a3e, #2a2a2e);
  border-radius: 0 0 8px 8px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.04);
  border-top: none;
}

.laptop-lip::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: rgba(0,0,0,0.3);
  border-radius: 0 0 4px 4px;
}

.laptop-glare {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 30px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0) 65%,
    rgba(255,255,255,0.02) 100%
  );
  pointer-events: none;
  z-index: 3;
}

@media (prefers-reduced-motion: no-preference) {
  .laptop-mockup {
    animation: laptopFloat 6s ease-in-out infinite;
  }

  @keyframes laptopFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(0.3deg); }
  }
}

.hero-phone {
  position: absolute;
  width: 140px;
  aspect-ratio: 9 / 19;
  background: linear-gradient(145deg, #3d3d3d 0%, #2a2a2a 50%, #1f1f1f 100%);
  border-radius: 1.5rem;
  padding: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
@media (min-width: 900px) {
  .hero-phone { width: 160px; }
}
.hero-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  padding: 0.5rem;
  line-height: 1.3;
}
@media (min-width: 900px) {
  .hero-phone-screen { font-size: 0.75rem; }
}
.hero-phone-back {
  left: 50%;
  transform: translate(-70%, 0) rotate(-8deg);
  z-index: 0;
}
@media (min-width: 900px) {
  .hero-phone-back { left: auto; right: 20%; transform: translate(0, 0) rotate(-8deg); }
}
.hero-phone-front {
  left: 50%;
  transform: translate(-30%, 0) rotate(6deg);
  z-index: 1;
}
@media (min-width: 900px) {
  .hero-phone-front { left: auto; right: 5%; transform: translate(0, 0) rotate(6deg); }
}
.hero-phone-home { border: 1px solid rgba(45, 84, 94, 0.2); }
.hero-phone-book { border: 1px solid rgba(45, 84, 94, 0.3); background: rgba(45, 84, 94, 0.12); }

/* Buttons – primary (teal) for secondary actions, accent (pink) for main CTAs */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0.85rem 1.75rem; font-weight: 600; border-radius: 8px; background: var(--accent); color: #fff; border: none; cursor: pointer; font-size: 1rem; transition: background 0.2s, color 0.2s; }
.btn:hover { background: var(--accent-dark); color: #fff; text-decoration: none; }
.btn:focus { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Section defaults */
.section { padding: 3.5rem 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid rgba(45, 84, 94, 0.15); border-bottom: 1px solid rgba(45, 84, 94, 0.15); }
.section--muted { background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-primary-tint) 100%); }
.section-title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3.5vw, 1.85rem); margin: 0 0 0.5rem; color: var(--text); }
.section-lead { font-size: 1.05rem; color: var(--text-muted); margin: 0 0 2rem; max-width: 600px; }
.section .container > .section-lead { margin-left: auto; margin-right: auto; text-align: center; }

/* About page: center section titles and leads */
.page-about .section-title,
.page-about .section-lead { text-align: center; }
.page-about .section .container > .section-lead { margin-left: auto; margin-right: auto; }

/* Problem / solution block (Hunt “Your business deserves better”) */
.problem-solution .section-title { text-align: center; }
.problem-solution .section-lead { text-align: center; margin-left: auto; margin-right: auto; }
.problem-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin: 2rem 0; }
.problem-card {
  background: var(--white);
  border: 1px solid rgba(45, 84, 94, 0.2);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 8px 24px -8px rgba(45, 84, 94, 0.2);
}
@media (prefers-reduced-motion: reduce) {
  .problem-card { transition: box-shadow 0.2s; }
  .problem-card:hover { transform: none; }
}
.problem-card h3 { font-size: 1.1rem; margin: 0 0 0.5rem; color: var(--primary-dark); }
.problem-card p { margin: 0; font-size: 0.95rem; color: var(--text-muted); }
.solution-text { text-align: center; font-size: 1.1rem; color: var(--text); margin: 1.5rem 0 0; padding-top: 1.5rem; border-top: 2px solid var(--primary-light); }

/* Case study cards (Hunt “Work we've done”) */
.section:has(.case-grid) .section-title,
.section:has(.case-grid) .section-lead { text-align: center; }
.section:has(.case-grid) .section-lead { margin-left: auto; margin-right: auto; }
.case-grid {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 769px) {
  .case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    overflow: visible;
    scroll-snap-type: none;
  }
}
.case-grid::after { content: ""; flex: 0 0 1px; }
@media (min-width: 769px) { .case-grid::after { display: none; } }
.case-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.case-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), var(--glow);
  border-color: var(--primary-light);
}
@media (min-width: 769px) {
  .case-card { flex: none; }
  .case-card:hover { transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce) {
  .case-card { transition: box-shadow 0.2s, border-color 0.2s; }
  .case-card:hover { transform: none; }
}
.case-card > a { display: block; text-decoration: none; color: inherit; }
.case-card > a:hover { text-decoration: none; }
.case-card-image { height: 160px; background: var(--bg-alt) center/cover no-repeat; }
.case-card-image-rotate { position: relative; overflow: hidden; }
.case-card-image-rotate .case-card-image-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-alt) center/cover no-repeat;
  transition: transform 0.5s ease;
}
.case-card-image-rotate .case-card-image-slide.slide-in { transform: translateX(0); }
.case-card-image-rotate .case-card-image-slide.slide-out { transform: translateX(-100%); }
.case-card-image-rotate .case-card-image-slide.slide-next { transform: translateX(100%); }
.case-card { position: relative; }
.case-card-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.case-card-body { padding: 1.5rem; }
.case-card-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.35rem; }
.case-card-title { font-family: var(--font-heading); font-size: 1.25rem; margin: 0 0 0.35rem; color: var(--text); }
.case-card-venu { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.6rem; letter-spacing: 0.02em; }
.case-card-link { font-weight: 600; color: var(--primary); font-size: 0.95rem; }
.case-card-link:hover { text-decoration: underline; }
.case-grid-footer { text-align: center; margin-top: 2rem; }

/* Stats bar */
.stats { padding: 2rem 0; background: linear-gradient(180deg, var(--bg-alt) 0%, rgba(45, 84, 94, 0.08) 100%); border-top: 2px solid var(--sand-tan-shadow); border-bottom: 2px solid var(--sand-tan-shadow); }
.stats-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); justify-items: center; text-align: center; }
.stats-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
.stats-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.25rem; }

/* CTA block (Hunt “Ready to get a website that works?”) */
/* CTA block: dark bubble on home page for contrast with light section background */
.cta-block {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--night-blue-shadow);
  background: linear-gradient(165deg, var(--night-blue-shadow) 0%, var(--night-blue) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 52, 59, 0.9);
  box-shadow: 0 8px 32px rgba(18, 52, 59, 0.35);
}
.cta-block .section-title { color: var(--white); margin-bottom: 0.75rem; }
.cta-block .section-lead { color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; text-align: center; margin-left: auto; margin-right: auto; max-width: 560px; }
.cta-block .btn-group { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-block .btn { background: var(--sand-tan); color: var(--night-blue-shadow); border: none; }
.cta-block .btn:hover { background: var(--sand-tan-shadow); color: var(--night-blue-shadow); text-decoration: none; }
.cta-block .btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.cta-block .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); text-decoration: none; }

/* Pricing cards (Hunt-style two columns) */
.pricing-intro { text-align: center; margin-bottom: 2.5rem; }
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 681px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
.pricing-card-wrap { position: relative; }
.pricing-badge {
  display: block;
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  white-space: nowrap;
  z-index: 1;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--glow);
  border-color: var(--primary-light);
}
@media (prefers-reduced-motion: reduce) {
  .pricing-card { transition: box-shadow 0.2s, border-color 0.2s; }
  .pricing-card:hover { transform: none; }
}
.pricing-card h2 { font-family: var(--font-heading); font-size: 1.35rem; margin: 0 0 0.5rem; color: var(--text); }
.pricing-price { font-size: 2rem; font-weight: 700; color: var(--text); margin: 0 0 0.25rem; }
.pricing-price-note { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.pricing-card ul { flex: 1; min-height: 0; list-style: none; padding: 0; margin: 0 0 1.5rem; }
.pricing-card li { padding: 0.4rem 0; padding-left: 1.5rem; position: relative; color: var(--text-muted); font-size: 0.95rem; }
.pricing-card li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.pricing-card .btn { width: 100%; text-align: center; margin-top: auto; min-height: 44px; }

/* Premium card – pops visually, includes full Venu+ */
.pricing-card-premium-wrap { align-self: stretch; }
.pricing-card-premium-wrap .pricing-card {
  min-height: 100%;
  min-height: 26rem; /* Premium card ~10% taller than typical Standard */
  padding-bottom: 2.5rem;
  border-left: 3px solid var(--sand-tan);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(225, 179, 130, 0.2);
}
.pricing-card-premium-wrap .pricing-card:hover {
  box-shadow: var(--shadow-lg), 0 4px 20px rgba(225, 179, 130, 0.15), 0 0 0 1px rgba(225, 179, 130, 0.25);
}
.pricing-badge-premium {
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sand-tan);
  color: var(--night-blue-shadow);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}
.pricing-card-headline {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.pricing-card-list { flex: 0 0 auto; min-height: 0; }
.pricing-card-premium .pricing-card-list { margin-bottom: 0.75rem; }
.pricing-venu-title,
.pricing-section-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0 0.5rem;
  padding: 0;
}
.pricing-venu-list {
  margin-bottom: 0.75rem;
  padding: 0.75rem 0 0.75rem 1rem;
  border-left: 3px solid var(--sand-tan);
  background: rgba(225, 179, 130, 0.12);
  border-radius: 0 8px 8px 0;
}
.pricing-venu-list li { font-weight: 500; color: var(--text); }
.pricing-venu-callout {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(45, 84, 94, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
}
.pricing-venu-callout-heading { margin: 0 0 0.5rem; font-weight: 700; color: var(--text); font-size: 0.95rem; }
.pricing-venu-callout p { margin: 0 0 0.5rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.pricing-venu-callout p:last-of-type { margin-bottom: 0.75rem; }
.pricing-venu-callout-link {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}
.pricing-venu-callout-link:hover { text-decoration: underline; }
.pricing-premium-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  text-align: center;
}

/* Pricing comparison: table (desktop) + cards (mobile) */
.pricing-compare { margin-top: 3rem; }
.pricing-compare-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0 0 1.5rem;
  color: var(--text);
  text-align: center;
}
.pricing-compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}
.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.pricing-compare-table th,
.pricing-compare-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-compare-table th {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--text);
}
.pricing-compare-table th:first-child { border-radius: var(--radius) 0 0 0; }
.pricing-compare-table th:nth-child(2),
.pricing-compare-table th:nth-child(3) { text-align: center; }
.pricing-compare-table td:nth-child(2),
.pricing-compare-table td:nth-child(3) { text-align: center; }
.pricing-compare-table tbody tr:last-child td { border-bottom: none; }
.pricing-compare-table td:first-child { color: var(--text); }
.pricing-compare-table td:nth-child(2),
.pricing-compare-table td:nth-child(3) { color: var(--text-muted); }
.pricing-compare-cards { display: none; }
@media (max-width: 680px) {
  .pricing-compare-table-wrap { display: none; }
  .pricing-compare-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0;
  }
  .pricing-compare-card {
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .pricing-compare-card h3 { font-size: 0.95rem; margin: 0 0 0.75rem; color: var(--text); }
  .pricing-compare-card ul { margin: 0; padding-left: 1.25rem; font-size: 0.9rem; color: var(--text-muted); }
  .pricing-compare-card-premium { border-left: 3px solid var(--sand-tan); }
}
@media (max-width: 480px) {
  .pricing-compare-cards { grid-template-columns: 1fr; }
}

/* Page header (inner pages) */
.page-header { padding: 2.5rem 0 2rem; text-align: center; background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-primary-tint) 100%); border-bottom: 2px solid var(--primary-light); }
.page-header h1 { font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.25rem); margin: 0 0 0.5rem; color: var(--primary-dark); }
.page-header p { margin: 0; color: var(--text-muted); }
.page-header-lead { font-weight: 700; }
.page-header-note { font-size: 0.7rem; font-weight: 400; margin-top: 0.5rem !important; }

/* What's Next splash – dark theme, white text, centered */
.whats-next-splash {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--night-blue-shadow) 0%, var(--night-blue) 50%, var(--night-blue-shadow) 100%);
  color: #fff;
}
.whats-next-splash .container { max-width: 560px; margin-left: auto; margin-right: auto; }
.whats-next-splash h1 { font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.25rem); margin: 0 0 2rem; color: #fff; }
.whats-next-step {
  opacity: 0;
  transform: translateY(1.25rem);
  animation: whats-next-fade-up 1s ease-out forwards;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  max-width: 480px;
}
.whats-next-step:nth-child(2) { animation-delay: 0.5s; }
.whats-next-step:nth-child(3) { animation-delay: 1.5s; }
.whats-next-step:nth-child(4) { animation-delay: 2.5s; }
.whats-next-step strong { color: #fff; font-weight: 700; }
.whats-next-cta {
  opacity: 0;
  transform: translateY(1.25rem);
  animation: whats-next-fade-up 0.8s ease-out forwards;
  animation-delay: 3.5s;
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.terms-consent {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  font-weight: 400;
  margin: 1.5rem auto 0;
  max-width: 480px;
  opacity: 0;
  transform: translateY(1.25rem);
  animation: whats-next-fade-up 0.8s ease-out forwards;
  animation-delay: 4.2s;
}
.terms-consent a { color: #fff; text-decoration: underline; }
.terms-consent a:hover { color: #fff; }
.btn-customize { background: #fff !important; color: var(--primary-dark) !important; border: none !important; }
.btn-customize:hover { background: rgba(255,255,255,0.9) !important; color: var(--primary-dark) !important; text-decoration: none !important; }
@keyframes whats-next-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Discovery form – 6-tab wizard, one panel at a time in a compact window */
.discovery-form { max-width: 560px; margin: 2rem auto; padding: 0 1rem; }
.discovery-window {
  background: var(--night-blue-shadow);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  min-height: 320px;
  color: #fff;
}
.discovery-step-counter { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 0.75rem; text-align: center; }
.discovery-progress {
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.discovery-progress-fill {
  height: 100%;
  width: 16.666%;
  max-width: 100%;
  background: var(--sand-tan);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.discovery-form .discovery-panel { display: none !important; }
.discovery-form .discovery-panel.is-active { display: block !important; }
.discovery-panel h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.discovery-window .form-block { margin-bottom: 0; }
.discovery-window .form-block label {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
  margin-top: 1rem;
}
.discovery-window .form-block label:first-of-type { margin-top: 0; }
.discovery-window .form-block input,
.discovery-window .form-block textarea,
.discovery-window .form-block select {
  display: block;
  width: 100%;
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  margin-bottom: 0;
  background: rgba(255,255,255,0.08);
  color: #fff;
  margin-top: 0;
  box-sizing: border-box;
}
.discovery-window .form-block input::placeholder,
.discovery-window .form-block textarea::placeholder { color: rgba(255,255,255,0.5); }
.discovery-window .form-block input:focus,
.discovery-window .form-block textarea:focus,
.discovery-window .form-block select:focus {
  outline: none;
  border-color: var(--sand-tan);
  box-shadow: 0 0 0 2px rgba(225, 179, 130, 0.3);
}
.discovery-window .form-block select option { background: var(--night-blue-shadow); color: #fff; }
.discovery-actions { margin-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.discovery-actions .btn { min-width: 120px; }
.discovery-actions .btn-back { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.discovery-actions .btn-back:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }
.discovery-actions .btn:not(.btn-back) { background: var(--sand-tan); color: var(--night-blue-shadow); border: none; }
.discovery-actions .btn:not(.btn-back):hover { background: var(--sand-tan-shadow); color: var(--night-blue-shadow); text-decoration: none; }
.discovery-actions a.btn { background: var(--sand-tan); color: var(--night-blue-shadow); border: none; }
.discovery-actions a.btn:hover { background: var(--sand-tan-shadow); color: var(--night-blue-shadow); text-decoration: none; }
.discovery-file-drop {
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  background: rgba(255,255,255,0.06);
  margin-top: 1rem;
  margin-bottom: 0;
  transition: border-color 0.2s, background 0.2s;
  color: rgba(255,255,255,0.9);
}
.discovery-file-drop:hover, .discovery-file-drop.is-dragover { border-color: var(--sand-tan); background: rgba(255,255,255,0.1); }
.discovery-file-drop label { color: var(--sand-tan) !important; margin-top: 0 !important; }
.discovery-features { list-style: none; padding: 0; margin: 1rem 0 0; }
.discovery-features li { margin-bottom: 0.65rem; display: flex; align-items: center; gap: 0.5rem; }
.discovery-features input { width: auto; margin: 0; accent-color: var(--sand-tan); flex-shrink: 0; }
.discovery-features label { margin: 0; font-weight: 500; cursor: pointer; color: #fff; }
.discovery-form select { width: 100%; font: inherit; padding: 0.65rem 0.85rem; border: 1px solid rgba(255,255,255,0.35); border-radius: 8px; margin-bottom: 0; margin-top: 0; background: rgba(255,255,255,0.08); color: #fff; }
.discovery-form select:focus { outline: none; border-color: var(--sand-tan); box-shadow: 0 0 0 2px rgba(225, 179, 130, 0.3); }
.discovery-panel p { color: rgba(255,255,255,0.85); margin: 0 0 1rem; font-size: 0.95rem; }
.discovery-panel-desc { color: #fff !important; margin: 0 0 1rem; font-size: 0.95rem; }
.discovery-panel-desc:last-of-type { margin-bottom: 1.5rem; }
.discovery-panel textarea { margin-top: 0.35rem; min-height: 100px; }
.discovery-textarea-block label { display: block; margin-top: 0; margin-bottom: 0.35rem; }
.discovery-textarea-block textarea { margin-top: 0.35rem; min-height: 180px; width: 100%; display: block; }
.discovery-file-drop-text { margin: 0; font-size: 0.95rem; }
.discovery-file-drop-text label { cursor: pointer; color: var(--sand-tan); text-decoration: underline; }
.discovery-window .form-block > label + input,
.discovery-window .form-block > label + select { margin-top: 0.25rem; }

/* Premium-feature modal (Standard users who check Premium options on Step 4) */
.discovery-premium-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.discovery-premium-modal[hidden] { display: none !important; }
.discovery-premium-modal:not([hidden]) { display: flex; }
.discovery-premium-modal.is-open { opacity: 1; visibility: visible; }
.discovery-premium-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.discovery-premium-modal-content {
  position: relative;
  background: var(--night-blue-shadow);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.discovery-premium-modal-title { font-family: var(--font-heading); font-size: 1.25rem; margin: 0 0 0.75rem; color: #fff; text-align: center; }
.discovery-premium-modal-text { margin: 0 0 1.5rem; font-size: 1rem; line-height: 1.5; color: rgba(255,255,255,0.95); }
.discovery-premium-modal-text strong { color: var(--sand-tan); }
.discovery-premium-modal-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.discovery-premium-modal-actions .btn { min-width: 140px; }
.discovery-premium-modal-actions .btn-back { color: #fff; border-color: rgba(255,255,255,0.6); }
.discovery-premium-modal-actions .btn-back:hover { background: rgba(255,255,255,0.1); color: #fff; }
.discovery-premium-modal-actions .btn:not(.btn-back) { background: var(--sand-tan); color: var(--night-blue-shadow); border: none; }
.discovery-premium-modal-actions .btn:not(.btn-back):hover { background: var(--sand-tan-shadow); color: var(--night-blue-shadow); }

/* Footer */
/* Terms of Service page */
.container-narrow { max-width: 52rem; margin-left: auto; margin-right: auto; }
.terms-content .terms-block { margin-bottom: 2rem; }
.terms-content .terms-block:last-child { margin-bottom: 0; }
.terms-h2 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--primary-dark); margin: 0 0 0.75rem; }
.terms-content .terms-block p { margin: 0 0 0.75rem; font-size: 0.9375rem; line-height: 1.65; color: var(--text); }
.terms-content .terms-block p:last-child { margin-bottom: 0; }
.terms-content .terms-block a { color: var(--primary); }
.terms-content .terms-block a:hover { text-decoration: underline; }

.site-footer { padding: 2rem 1.5rem; border-top: 2px solid var(--primary); font-size: 0.9rem; color: var(--text-muted); text-align: center; background: linear-gradient(180deg, var(--bg-alt) 0%, var(--white) 100%); }
.site-footer .container { text-align: center; }
.site-footer p { text-align: center; margin: 0; }
.site-footer .footer-logo-wrap { margin: 1.25rem 0 0; display: flex; justify-content: center; }
.site-footer .footer-logo { width: 4rem; height: 4rem; }
.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--primary); }

/* Contact assurance */
.contact-assurance {
  max-width: 520px;
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(45, 84, 94, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  color: var(--text);
}
.contact-assurance strong { color: var(--primary); }
.contact-success {
  max-width: 520px;
  padding: 1.5rem 1.25rem;
  background: rgba(45, 84, 94, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
}

/* Payment portal */
/* Pricing page: secure Stripe callout */
.pricing-secure-stripe {
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  background: rgba(45, 84, 94, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
}
.pricing-secure-stripe strong { color: var(--primary); }

.payment-assurance {
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  background: rgba(45, 84, 94, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--text);
}
.payment-assurance strong { color: var(--primary); }
.payment-plan-desc { margin: 0 0 1.25rem; font-size: 0.95rem; color: var(--text-muted); }
.payment-portal-grid .pricing-card .btn { width: 100%; text-align: center; }
.payment-footer-note { text-align: center; margin-top: 2rem; color: var(--text-muted); font-size: 0.95rem; }

/* Pricing: custom quote CTA – centered bubble underneath plans */
/* H4 pricing: Venu+ standalone callout – Venu deep red theme, white text, gold Venu+ */
.pricing-venu-standalone-callout {
  max-width: 32rem;
  margin: 2.5rem auto 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(107, 15, 42, 0.92) 0%, rgba(139, 21, 56, 0.88) 50%, rgba(107, 15, 42, 0.9) 100%); /* Venu red, soft gradient but rich */
  border: 1px solid rgba(139, 21, 56, 0.5);
  border-radius: var(--radius);
  text-align: center;
}
.pricing-venu-standalone-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: #fffefc;
}
.pricing-venu-standalone-callout p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: #fffefc;
  line-height: 1.5;
}
.pricing-venu-standalone-callout p:last-of-type { margin-bottom: 1rem; }
.pricing-venu-plus-gold {
  color: #B8860B;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(184, 134, 11, 0.5), 0 0 20px rgba(184, 134, 11, 0.25);
}
.pricing-venu-standalone-link {
  display: inline-block;
  font-weight: 600;
  color: #fffefc;
  border: 1px solid rgba(255,254,252,0.5);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-top: 0.25rem;
}
.pricing-venu-standalone-link:hover { background: rgba(255,255,255,0.1); color: #fffefc; text-decoration: none; }

.pricing-quote-bubble-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  width: 100%;
}
.pricing-quote-cta {
  display: block;
  max-width: 420px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  text-align: center;
  background: var(--bg-primary-tint);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.pricing-quote-bubble-wrap .pricing-quote-cta { margin: 0; }
.pricing-quote-bubble {
  border-radius: 2.5rem;
  padding: 1rem 1.75rem;
  box-shadow: 0 2px 12px rgba(45, 84, 94, 0.12);
}
.pricing-quote-cta:hover {
  background: rgba(45, 84, 94, 0.1);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(45, 84, 94, 0.18);
  color: var(--text);
  text-decoration: none;
}
.pricing-quote-bubble:hover { box-shadow: 0 4px 16px rgba(45, 84, 94, 0.22); }
.pricing-quote-cta-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 0.25rem; }
.pricing-quote-cta-text { font-size: 1rem; font-weight: 500; }

/* Forms */
.form-block { max-width: 520px; margin: 2rem 0; }
form label { display: block; font-weight: 600; margin-bottom: 0.35rem; color: var(--text); }
form input, form textarea { width: 100%; font: inherit; padding: 0.65rem 0.85rem; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 1rem; background: var(--white); }
form input:focus, form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45, 84, 94, 0.15); }
form .btn { margin-top: 0.25rem; }
.form-field-label { font-weight: 600; margin: 0 0 0.5rem; color: var(--text); font-size: 1rem; }
.form-radio-group { display: flex; gap: 1.25rem; margin-bottom: 1rem; flex-wrap: wrap; }
.form-radio-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.form-radio-option:hover { border-color: var(--primary); }
.form-radio-option input { margin: 0; width: 1.1rem; height: 1.1rem; accent-color: var(--primary); }
.form-checkbox-group { display: flex; gap: 1.25rem; margin-bottom: 1rem; flex-wrap: wrap; }
.form-checkbox-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.form-checkbox-option:hover { border-color: var(--primary); }
.form-checkbox-option input { margin: 0; width: 1.1rem; height: 1.1rem; accent-color: var(--primary); }
.form-website-url-wrap { margin-bottom: 1rem; }
.form-website-url-wrap label { display: block; }
.form-website-url-wrap input { margin-bottom: 0; }

/* About page list */
.values-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.values-list li { padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.values-list li:last-child { border-bottom: none; }
.values-list strong { display: block; margin-bottom: 0.2rem; }

/* Why Us page – centered content, fade-up on scroll, mobile */
.why-us-container { display: flex; justify-content: center; }
.why-us-content {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.why-us-content .section-title,
.why-us-content .section-lead { text-align: center; }
.why-us-content .section-lead { margin-left: auto; margin-right: auto; }
.why-us-content .values-list { text-align: center; margin-left: auto; margin-right: auto; max-width: 520px; }
.why-us-content .values-list li { text-align: center; }
.why-us-content .why-us-quote { text-align: center; margin-left: auto; margin-right: auto; }
.why-us-content .no-wrap { white-space: nowrap; }

.why-us-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.why-us-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-us-quote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--bg-primary-tint);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary-dark);
  max-width: 100%;
  box-sizing: border-box;
}
.why-us-quote p { margin: 0; text-align: center; font-weight: 700; overflow-wrap: break-word; }

@media (max-width: 768px) {
  .why-us-content { padding: 0 1rem; }
  .why-us-content .section-title { font-size: clamp(1.25rem, 4vw, 1.5rem); }
  .why-us-content .section-lead { font-size: 1rem; }
  .why-us-content .values-list { max-width: 100%; padding-left: 0; padding-right: 0; }
  .why-us-content .values-list li { padding: 0.75rem 0; }
  .why-us-quote { padding: 1rem 1.25rem; font-size: 1.05rem; max-width: 100%; }
  .page-header .why-us-content { padding-top: 0.5rem; padding-bottom: 0.5rem; }
}

/* Mobile: tabbed organizer (same as mock sites – full-width menu below header) */
@media (max-width: 768px) {
  .site-header .container { flex-wrap: wrap; gap: 0.5rem; }
  .site-nav-toggle { display: flex; color: var(--white); }
  .site-nav-toggle:hover { color: var(--sand-tan); }
  .site-nav {
    display: none;
    width: 100%;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 0;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    background: var(--white);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    display: block;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .site-nav a:last-child { border-bottom: none; }
  /* Collapsible menu: page links (Home, About, Why Us, Contact, Case Studies) in midnight teal on light dropdown */
  .site-header .site-nav.is-open a:not(.nav-cta):not(.nav-cta-venu) {
    color: var(--night-blue-shadow);
  }
  .site-header .site-nav.is-open a:not(.nav-cta):not(.nav-cta-venu):hover {
    color: var(--night-blue);
  }
  .site-nav .nav-cta { margin: 0.5rem 1rem 0; padding: 0.65rem 1rem; text-align: center; border-radius: 8px; color: var(--night-blue-shadow); }
  .site-nav .nav-cta-venu { color: #fff; }
  .logo { font-size: 1.2rem; }
  .logo-icon { width: 2rem; height: 2rem; }
  .site-header .logo-icon { width: 4rem; height: 4rem; }
}
.site-footer .footer-logo {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 640px) {
  .hero { padding: 3rem 0 3.5rem; }
  .section { padding: 2.5rem 0; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
}
@media (max-width: 390px) {
  .container { padding: 0 1rem; }
  .hero { padding: 2.5rem 0 3rem; }
}

/* Floating Chat button – midnight teal, bottom right, links to contact */
.h4-chat-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.625rem 1.25rem;
  background: var(--night-blue-shadow);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(18, 52, 59, 0.4);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.h4-chat-btn:hover { background: var(--night-blue); color: var(--white); text-decoration: none; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(18, 52, 59, 0.5); }
@media (prefers-reduced-motion: reduce) { .h4-chat-btn:hover { transform: none; } }
@media (max-width: 390px) { .h4-chat-btn { right: 1rem; bottom: 1rem; padding: 0.5rem 1rem; font-size: 0.8125rem; } }
