/* ============================================================
   INTERNET HAPPENS -- SITE DESIGN SYSTEM
   Plain CSS, no build step, no framework.
============================================================ */

:root {
  --white: #ffffff;
  --ink: #232326;
  --ink-soft: #63636b;
  --indigo: #2b2b2e;
  --indigo-dark: #17171a;
  --violet: #45454b;
  --lime: #f8cc23;
  --lime-dark: #e0b815;
  --gold-tint: #FFF6D6;
  --bg-soft: #FAFAFA;
  --bg-soft2: #F5F5F6;
  --border: #E7E7EA;
  --footer-bg: #1c1c1e;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(20,20,22,0.06);
  --shadow-lg: 0 20px 50px rgba(20,20,22,0.11);
  --max-width: 1180px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink); background: var(--white); line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============ UTILITY BAR ============ */
.ih-utility-bar {
  background: var(--ink); color: var(--white); display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 20px; padding: 8px 24px; font-size: 13px;
}
.ih-utility-tagline { text-align: center; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.82); margin: 0; white-space: nowrap; }
.ih-utility-phone { display: flex; align-items: center; gap: 6px; color: var(--white); font-weight: 600; }
.ih-utility-phone .ih-icon { stroke: var(--lime); }
.ih-utility-social { display: flex; gap: 14px; }
.ih-utility-social a { display: flex; align-items: center; color: rgba(255,255,255,0.75); transition: color .15s ease; }
.ih-utility-social a:hover { color: var(--lime); }
.ih-utility-social .ih-icon { fill: currentColor; }

@media (max-width: 1000px) {
  .ih-utility-tagline { display: none; }
  .ih-utility-bar { grid-template-columns: auto auto; justify-content: space-between; }
}

/* ============ HEADER ============ */
.ih-header { background: var(--white); border-bottom: 1px solid var(--border); position: relative; z-index: 50; }
.ih-header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 14px 24px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
}
.ih-logo { justify-self: center; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ih-logo img { height: 68px; width: auto; }
.ih-logo-text { font-size: 12.5px; font-weight: 800; letter-spacing: .03em; color: var(--ink); text-transform: lowercase; }
.ih-nav { display: flex; align-items: center; gap: 22px; }
.ih-nav-left { justify-self: start; }
.ih-nav-right { justify-self: end; }
.ih-nav a {
  display: flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 700; color: var(--ink);
  transition: color .15s ease;
}
.ih-nav a:hover { color: var(--lime-dark); }
.ih-nav .ih-icon { stroke: var(--ink); fill: none; }
.ih-nav a:hover .ih-icon { stroke: var(--lime-dark); }
.ih-nav-cta {
  background: var(--lime); color: var(--ink) !important; padding: 10px 18px; border-radius: 8px;
  font-weight: 800 !important;
}
.ih-nav-cta:hover { background: var(--lime-dark); }
.ih-nav-cta .ih-icon { stroke: var(--ink) !important; }

/* Services dropdown (desktop) -- text link navigates normally, the
   separate chevron button toggles the dropdown. Not click-to-open on
   the text itself, matching how every other nav link behaves. */
.ih-nav-dropdown { position: relative; display: flex; align-items: center; gap: 2px; }
.ih-nav-dropdown-link {
  display: flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 700; color: var(--ink);
}
.ih-nav-dropdown-link:hover { color: var(--lime-dark); }
.ih-nav-dropdown-link .ih-icon { stroke: var(--ink); fill: none; }
.ih-nav-dropdown-link:hover .ih-icon { stroke: var(--lime-dark); }
.ih-nav-dropdown-trigger {
  display: flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer;
  padding: 4px; border-radius: 4px;
}
.ih-nav-dropdown-trigger .ih-icon { stroke: var(--ink); fill: none; transition: transform .15s ease; }
.ih-nav-dropdown-trigger:hover .ih-icon { stroke: var(--lime-dark); }
.ih-nav-dropdown-trigger[aria-expanded="true"] .ih-icon { stroke: var(--lime-dark); transform: rotate(180deg); }
.ih-nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; padding-top: 14px; min-width: 220px; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(-6px); pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.ih-nav-dropdown:hover .ih-nav-dropdown-menu,
.ih-nav-dropdown-menu.open {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.ih-nav-dropdown-menu-inner {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-lg); padding: 8px;
}
.ih-nav-dropdown-menu-inner a {
  display: block; padding: 10px 12px; border-radius: 6px; font-size: 14px; font-weight: 600; color: var(--ink);
  transition: background .15s ease;
}
.ih-nav-dropdown-menu-inner a:hover { background: var(--gold-tint); color: var(--ink); }

.ih-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.ih-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

.ih-mobile-nav { display: none; }

@media (max-width: 900px) {
  .ih-nav-left, .ih-nav-right { display: none; }
  .ih-nav-toggle { display: block; }
  .ih-header-inner { grid-template-columns: auto 1fr auto; }
  .ih-logo { justify-self: start; }
  .ih-logo img { height: 46px; }
  .ih-logo-text { font-size: 10.5px; }
  .ih-mobile-nav[hidden] { display: none; }
  .ih-mobile-nav {
    display: flex; flex-direction: column; padding: 12px 24px 20px; border-top: 1px solid var(--border);
  }
  .ih-mobile-nav a, .ih-mobile-accordion-toggle {
    padding: 12px 0; font-size: 15px; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--bg-soft2);
    display: flex; align-items: center; justify-content: space-between; background: none; border-left: none; border-right: none; border-top: none;
    width: 100%; text-align: left; font-family: inherit; cursor: pointer;
  }
  .ih-mobile-accordion { display: flex; flex-direction: column; padding-left: 14px; }
  .ih-mobile-accordion[hidden] { display: none; }
  .ih-mobile-accordion a { border-bottom: none; font-weight: 600; font-size: 14px; color: var(--ink-soft); padding: 9px 0; }
  .ih-mobile-accordion-toggle .ih-icon { transition: transform .15s ease; }
  .ih-mobile-accordion-toggle[aria-expanded="true"] .ih-icon { transform: rotate(180deg); }
  .ih-mobile-nav .ih-nav-cta { background: var(--lime); color: var(--ink); border-radius: 8px; padding: 12px; justify-content: center; margin-top: 10px; }
  .ih-utility-bar { grid-template-columns: 1fr; justify-items: center; gap: 6px; text-align: center; }
  .ih-utility-tagline { display: none; }
}

/* ============ FOOTER ============ */
.ih-footer { background: var(--footer-bg); padding: 52px 0 0; }
.ih-footer-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px 32px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px;
}
.ih-footer-logo { font-size: 19px; font-weight: 800; color: var(--white); margin: 0 0 10px; }
.ih-footer-logo em { font-style: normal; color: var(--lime); }
.ih-footer-tagline { font-size: 13px; color: #9c9c9c; margin: 0 0 18px; line-height: 1.6; }
.ih-footer-social { display: flex; gap: 12px; }
.ih-footer-social a {
  width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex;
  align-items: center; justify-content: center; color: #9c9c9c; transition: color .15s ease, background .15s ease;
}
.ih-footer-social a:hover { color: var(--lime); background: rgba(248,204,35,0.12); }
.ih-footer-heading { font-size: 12px; color: var(--lime); letter-spacing: .06em; text-transform: uppercase; margin: 0 0 14px; font-weight: 800; }
.ih-footer-col a { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #b0b0ac; margin-bottom: 10px; }
.ih-footer-col a:hover { color: var(--lime); }
.ih-footer-col .ih-icon { stroke: var(--lime); fill: none; flex-shrink: 0; }
.ih-footer-bottom {
  border-top: 1px solid rgba(248,204,35,0.15); padding: 16px 24px; max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.ih-footer-bottom p { font-size: 11.5px; color: #9c9c99; margin: 0; }
.ih-footer-legal { display: flex; gap: 16px; }
.ih-footer-legal a { font-size: 11.5px; color: #9c9c99; }
.ih-footer-legal a:hover { color: var(--lime); }

@media (max-width: 880px) { .ih-footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .ih-footer-inner { grid-template-columns: 1fr; }
  .ih-footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ GEOMETRIC OVERLAYS ============ */
.ih-overlay { position: absolute; inset: 0; width: 100%; height: 100%; color: currentColor; opacity: 0.05; pointer-events: none; }

/* ============================================================
   PAGE CONTENT SYSTEM -- scoped under .ih-lp, used by every
   internal page (home, about, service pages, etc.)
============================================================ */
.ih-lp { color: var(--ink); }
.ih-lp img { max-width: 100%; display: block; }
.ih-lp a { text-decoration: none; }
.ih-lp section { padding: 76px 24px; position: relative; overflow: hidden; }
.ih-lp .wrap { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1; }
.ih-lp h1, .ih-lp h2, .ih-lp h3, .ih-lp h4 { margin: 0 0 14px; color: var(--ink); line-height: 1.18; font-weight: 800; }
.ih-lp h1 { font-size: clamp(32px, 4.6vw, 52px); }
.ih-lp h2 { font-size: clamp(26px, 3.4vw, 36px); }
.ih-lp h3 { font-size: 20px; }
.ih-lp p { margin: 0 0 16px; color: var(--ink-soft); font-size: 17px; }
.ih-lp .center { text-align: center; }
.ih-lp .center p { max-width: 700px; margin-left: auto; margin-right: auto; }
.ih-lp .eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink); background: var(--gold-tint);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.ih-lp .bg-fade-soft { background: var(--bg-soft); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============ COOKIE CONSENT BANNER ============ */
.ih-cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; max-width: 640px; margin: 0 auto;
  background: var(--ink); color: var(--white); border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 16px 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.ih-cookie-banner[hidden] { display: none; }
.ih-cookie-banner p { margin: 0; font-size: 13.5px; color: #D4D4D8; flex: 1 1 320px; }
.ih-cookie-banner a { color: var(--lime); text-decoration: underline; }
.ih-cookie-banner button {
  background: var(--lime); color: var(--ink); border: none; border-radius: 7px; padding: 9px 18px;
  font-weight: 800; font-size: 13.5px; cursor: pointer; flex-shrink: 0;
}
.ih-cookie-banner button:hover { background: var(--lime-dark); }
@media (max-width: 500px) {
  .ih-cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .ih-cookie-banner button { width: 100%; }
}
.ih-lp .why-band, .ih-lp .services-band { background: var(--bg-soft); }
.ih-lp .bg-dots { position: relative; }
.ih-lp .bg-dots::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(43,43,46,0.09) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 78%);
}
.ih-lp .bg-lines { position: relative; }
.ih-lp .bg-lines::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(115deg, rgba(43,43,46,0.05) 0px, rgba(43,43,46,0.05) 1px, transparent 1px, transparent 64px);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 85%);
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 85%);
}

/* PROCESS GRID (Website Design / Internet Marketing "how I work" sections) */
.ih-lp .process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 40px; counter-reset: step; }
.ih-lp .process-step {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 22px; text-align: center; box-shadow: var(--shadow); position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.ih-lp .process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ih-lp .process-step .step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--lime);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-weight: 800; font-size: 16px; counter-increment: step;
}
.ih-lp .process-step .step-num::before { content: counter(step); }
.ih-lp .process-step h3 { font-size: 16.5px; margin-bottom: 6px; }
.ih-lp .process-step p { font-size: 13.5px; margin-bottom: 0; }
@media (max-width: 980px) { .ih-lp .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ih-lp .process-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BUSINESS DIRECTORY -- archive grid, filter pills, single
   listing layout. Charcoal/gold, matching the rest of the site
   (this replaces the directory's older standalone green/amber
   design entirely).
============================================================ */
.ih-lp .biz-filter-bar { margin: 32px 0 8px; }
.ih-lp .biz-filter-group { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.ih-lp .biz-filter-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); margin-right: 4px; font-weight: 700; }
.ih-lp .biz-filter-pill {
  display: inline-block; font-size: 13px; font-weight: 600; padding: 7px 15px; border: 1px solid var(--border);
  border-radius: 999px; background: var(--white); color: var(--ink-soft); transition: all .15s ease;
}
.ih-lp .biz-filter-pill:hover { border-color: var(--ink); color: var(--ink); }
.ih-lp .biz-filter-pill.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.ih-lp .biz-filter-dropdown { position: relative; }
.ih-lp .biz-filter-trigger {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700;
  padding: 10px 18px; border: 1px solid var(--border); border-radius: 999px; background: var(--white);
  color: var(--ink); cursor: pointer; font-family: inherit;
}
.ih-lp .biz-filter-trigger:hover { border-color: var(--ink); }
.ih-lp .biz-filter-trigger[aria-expanded="true"] { border-color: var(--ink); background: var(--gold-tint); }
.ih-lp .biz-filter-trigger .ih-icon { stroke: var(--ink); fill: none; transition: transform .15s ease; }
.ih-lp .biz-filter-trigger[aria-expanded="true"] .ih-icon { transform: rotate(180deg); }
.ih-lp .biz-filter-dropdown .ih-nav-dropdown-menu-inner { max-height: 320px; overflow-y: auto; min-width: 200px; }
.ih-lp .biz-filter-dropdown .ih-nav-dropdown-menu-inner a.is-active { background: var(--gold-tint); font-weight: 800; }

.ih-lp .biz-archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; margin-top: 30px; }
.ih-lp .biz-archive-card {
  display: block; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; text-decoration: none; color: inherit; box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ih-lp .biz-archive-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ih-lp .biz-archive-logo {
  width: 64px; height: 64px; border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; background: var(--white); padding: 8px; margin-bottom: 16px;
}
.ih-lp .biz-archive-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ih-lp .biz-archive-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); margin: 0 0 8px; font-weight: 700; }
.ih-lp .biz-archive-card h3 { font-size: 18px; margin-bottom: 6px; }
.ih-lp .biz-archive-tagline { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 14px; line-height: 1.5; }
.ih-lp .biz-archive-link { font-size: 13px; font-weight: 700; color: var(--ink); }

.ih-lp .biz-hero {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px clamp(20px,5vw,48px) 36px; box-shadow: var(--shadow); margin-bottom: 28px; position: relative; overflow: hidden;
}
.ih-lp .biz-hero::before { content: ""; position: absolute; top: 0; left: 32px; width: 96px; height: 6px; background: var(--lime); border-radius: 0 0 3px 3px; }
.ih-lp .biz-hero-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.ih-lp .biz-logo-wrap {
  flex-shrink: 0; width: 84px; height: 84px; border: 1px solid var(--border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; background: var(--white); padding: 8px;
}
.ih-lp .biz-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ih-lp .biz-hero h1 { font-size: clamp(28px,4.5vw,40px); margin: 0 0 8px; }
.ih-lp .biz-rating { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 20px; }
.ih-lp .biz-rating .stars { color: var(--lime-dark); letter-spacing: 1px; }
.ih-lp .biz-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.ih-lp .biz-contact-rail {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 28px;
}
.ih-lp .biz-contact-item { background: var(--white); padding: 20px 22px; }
.ih-lp .biz-contact-item .label { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); margin: 0 0 6px; font-weight: 700; }
.ih-lp .biz-contact-item .value { font-size: 15.5px; margin: 0; }
.ih-lp .biz-contact-item a { color: var(--ink); font-weight: 700; }
@media (max-width: 620px) { .ih-lp .biz-contact-rail { grid-template-columns: 1fr; } }

.ih-lp .biz-links { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px clamp(20px,5vw,44px) 32px; }
.ih-lp .biz-link-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.ih-lp .biz-link-entry { background: var(--white); display: flex; align-items: center; gap: 10px; padding: 14px 18px; text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 600; transition: background .12s ease; }
.ih-lp .biz-link-entry:hover { background: var(--gold-tint); }
@media (max-width: 560px) { .ih-lp .biz-link-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG -- hero card, article grid, single-post content
============================================================ */
.ih-lp .blog-hero-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none; color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.ih-lp .blog-hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ih-lp .blog-hero-media { background: var(--bg-soft2); min-height: 280px; }
.ih-lp .blog-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ih-lp .blog-hero-content { padding: 36px clamp(20px,4vw,44px); display: flex; flex-direction: column; justify-content: center; }
.ih-lp .blog-hero-eyebrow {
  display: inline-block; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink); background: var(--gold-tint); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; width: fit-content;
}
.ih-lp .blog-hero-content h2 { margin-bottom: 10px; }
.ih-lp .blog-meta { font-size: 13px; color: var(--ink-soft); margin: 0 0 12px; }
.ih-lp .blog-excerpt { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 20px; }

.ih-lp .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.ih-lp .blog-card {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ih-lp .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ih-lp .blog-card-media { background: var(--bg-soft2); aspect-ratio: 16/10; }
.ih-lp .blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ih-lp .blog-card-content { padding: 20px 22px 24px; }
.ih-lp .blog-card-content h3 { font-size: 17px; margin-bottom: 8px; }
.ih-lp .blog-card-content .blog-excerpt { font-size: 14px; margin-bottom: 0; }

.ih-lp .blog-content { font-size: 17px; line-height: 1.75; color: var(--ink); }
.ih-lp .blog-content h2 { margin-top: 40px; font-size: 26px; }
.ih-lp .blog-content h3 { margin-top: 28px; font-size: 20px; }
.ih-lp .blog-content p { color: var(--ink); margin-bottom: 18px; }
.ih-lp .blog-content ul, .ih-lp .blog-content ol { margin: 0 0 18px; padding-left: 22px; color: var(--ink); }
.ih-lp .blog-content li { margin-bottom: 8px; }
.ih-lp .blog-content a { color: var(--lime-dark); text-decoration: underline; }
.ih-lp .blog-content img { border-radius: 10px; margin: 24px 0; }
.ih-lp .blog-content .video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin: 24px 0; border-radius: 10px; }
.ih-lp .blog-content .video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; border-radius: 10px; }

@media (max-width: 860px) {
  .ih-lp .blog-hero-card { grid-template-columns: 1fr; }
  .ih-lp .blog-hero-media { min-height: 220px; }
  .ih-lp .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ih-lp .blog-grid { grid-template-columns: 1fr; }
}

/* BUTTONS */
.ih-lp .btn {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 15.5px;
  padding: 15px 30px; border-radius: 9px; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.ih-lp .btn:hover { transform: translateY(-2px); }
.ih-lp .btn-primary { background: var(--lime); color: var(--ink); }
.ih-lp .btn-primary:hover { background: var(--lime-dark); box-shadow: 0 10px 24px rgba(248,204,35,0.45); }
.ih-lp .btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.ih-lp .btn-outline:hover { background: var(--ink); color: var(--white); }
.ih-lp .btn-outline.on-dark { color: var(--white); border-color: rgba(255,255,255,0.55); }
.ih-lp .btn-outline.on-dark:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.ih-lp .btn-ghost { background: var(--white); color: var(--ink); border-color: var(--border); margin-top: 18px; }
.ih-lp .btn-ghost:hover { border-color: var(--ink); }

/* HERO */
.ih-lp .hero { background: var(--white); padding: 64px 24px 76px; }
.ih-lp .hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(43,43,46,0.10) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 72%);
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 72%);
}
.ih-lp .hero .wrap { text-align: center; }
.ih-lp .hero p.lead { color: var(--ink-soft); max-width: 740px; margin: 0 auto 30px; font-size: 19px; }
.ih-lp .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.ih-lp .hero-stats { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.ih-lp .hero-stat-box {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 26px; box-shadow: var(--shadow); min-width: 168px;
}
.ih-lp .hero-stat-box.on-dark { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); }
.ih-lp .hero-stat-box .stat-num { display: block; color: var(--ink); font-size: 26px; font-weight: 800; }
.ih-lp .hero-stat-box.on-dark .stat-num { color: var(--lime); }
.ih-lp .hero-stat-box .stat-label { color: var(--ink-soft); font-size: 12.5px; letter-spacing: .03em; text-transform: uppercase; }
.ih-lp .hero-stat-box.on-dark .stat-label { color: #D4D4D8; }
.ih-lp .hero-stats-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 36px; position: relative; z-index: 1; }

/* CTA SPLIT */
.ih-lp .cta-split {
  background: linear-gradient(135deg, var(--violet) 0%, var(--indigo) 100%);
  position: relative; overflow: hidden;
}
.ih-lp .cta-split::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1.6px, transparent 1.6px);
  background-size: 24px 24px;
}
.ih-lp .cta-split-inner {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.ih-lp .cta-split-left h2 { color: var(--white); }
.ih-lp .cta-split-left p.lead { color: #D4D4D8; font-size: 18px; margin-bottom: 26px; }
.ih-lp .cta-split-left .final-ctas { justify-content: flex-start; }
.ih-lp .form-card { background: var(--white); border-radius: var(--radius); padding: 34px 32px; box-shadow: var(--shadow-lg); }
.ih-lp .form-card h3 { color: var(--ink); font-size: 21px; margin-bottom: 6px; text-align: center; }
.ih-lp .form-card .form-sub { color: var(--ink-soft); font-size: 14px; text-align: center; margin-bottom: 20px; }
.ih-lp .form-card label {
  display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .03em;
}
.ih-lp .form-card input, .ih-lp .form-card select, .ih-lp .form-card textarea {
  width: 100%; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; font-size: 15px; font-family: inherit; margin-bottom: 16px;
}
.ih-lp .form-card button[type="submit"] {
  width: 100%; background: var(--lime); color: var(--ink); border: none; border-radius: 8px;
  padding: 14px; font-size: 15.5px; font-weight: 800; cursor: pointer;
}
.ih-lp .form-card button[type="submit"]:hover { background: var(--lime-dark); }
.ih-lp .form-honeypot { position: absolute; left: -9999px; }
.ih-lp .form-status { font-size: 14px; margin-top: 10px; text-align: center; }
.ih-lp .form-status.success { color: #1a7d3c; }
.ih-lp .form-status.error { color: #c23434; }

/* PROFILE / STAT / CREDENTIAL cards (shared skeleton reused by About-style pages) */
.ih-lp .credential-grid, .ih-lp .stat-grid2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.ih-lp .credential-card, .ih-lp .stat-card2 {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease;
}
.ih-lp .credential-card.on-dark {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); box-shadow: none;
}
.ih-lp .credential-card.on-dark:hover { transform: none; }
.ih-lp .credential-card:hover, .ih-lp .stat-card2:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ih-lp .credential-card .num, .ih-lp .stat-card2 .num { display: block; font-size: 32px; font-weight: 800; color: var(--ink); }
.ih-lp .credential-card .label, .ih-lp .stat-card2 .label { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }

/* AREA CARDS */
.ih-lp .area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.ih-lp .area-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow); text-align: center; transition: transform .15s ease, box-shadow .15s ease;
}
.ih-lp .area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ih-lp .area-card .icon-badge, .ih-lp .service-tile .icon-badge {
  width: 50px; height: 50px; border-radius: 12px; background: var(--gold-tint);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.ih-lp .area-card .icon-badge svg { width: 24px; height: 24px; stroke: var(--ink); }
.ih-lp .area-card h3 { font-size: 17px; margin-bottom: 6px; }
.ih-lp .area-card p { font-size: 14px; margin-bottom: 0; }

/* PILLAR CARDS */
.ih-lp .pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.ih-lp .pillar-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.ih-lp .pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ih-lp .pillar-card .icon-badge {
  width: 56px; height: 56px; border-radius: 14px; background: var(--ink);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.ih-lp .pillar-card .icon-badge svg { width: 28px; height: 28px; stroke: var(--lime); }
.ih-lp .pillar-card .tag {
  display: inline-block; font-size: 11.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .05em; color: var(--ink); background: var(--gold-tint); padding: 4px 10px;
  border-radius: 999px; margin-bottom: 12px; width: fit-content;
}
.ih-lp .pillar-card ul { margin: 0 0 22px; padding: 0; list-style: none; flex-grow: 1; }
.ih-lp .pillar-card li { position: relative; padding-left: 24px; margin-bottom: 9px; color: var(--ink-soft); font-size: 15px; }
.ih-lp .pillar-card li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--ink); font-weight: 800; font-size: 14px; }

/* SERVICE TILE GRID */
.ih-lp .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.ih-lp .service-tile {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px 18px; text-align: center; transition: transform .15s ease, box-shadow .15s ease;
}
.ih-lp .service-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ih-lp .service-tile .icon-badge { background: var(--ink); width: 46px; height: 46px; border-radius: 11px; }
.ih-lp .service-tile .icon-badge svg { width: 22px; height: 22px; stroke: var(--lime); }
.ih-lp .service-tile h3 { font-size: 15.5px; margin-bottom: 6px; }
.ih-lp .service-tile p { font-size: 13px; margin-bottom: 0; }

/* SERVE GRID */
.ih-lp .serve-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 40px; }
.ih-lp .serve-card { text-align: center; padding: 22px 10px; }
.ih-lp .serve-card .icon-badge {
  width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, var(--indigo), var(--violet));
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.ih-lp .serve-card .icon-badge svg { width: 26px; height: 26px; stroke: var(--lime); }
.ih-lp .serve-card h3 { font-size: 15px; margin-bottom: 0; }

/* DIRECTORY BAND */
.ih-lp .directory-band { background: linear-gradient(135deg, var(--ink) 0%, var(--violet) 100%); border-radius: var(--radius); }
.ih-lp .directory-inner { padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.ih-lp .directory-inner .content { flex: 1 1 420px; }
.ih-lp .directory-inner .eyebrow { background: rgba(248,204,35,0.20); color: var(--lime); }
.ih-lp .directory-inner h2 { color: var(--white); margin-bottom: 10px; }
.ih-lp .directory-inner p { color: #D4D4D8; margin-bottom: 0; }
.ih-lp .directory-inner .cta-side { flex: 0 0 auto; }

/* FAQ */
.ih-lp .faq-list { margin-top: 40px; max-width: 860px; margin-left: auto; margin-right: auto; }
.ih-lp details { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 4px 22px; margin-bottom: 12px; box-shadow: var(--shadow); }
.ih-lp summary { font-weight: 700; color: var(--ink); font-size: 16.5px; padding: 18px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.ih-lp summary::-webkit-details-marker { display: none; }
.ih-lp summary::after { content: "+"; font-size: 22px; color: var(--ink); font-weight: 400; flex-shrink: 0; }
.ih-lp details[open] summary::after { content: "\2212"; }
.ih-lp details p { padding-bottom: 18px; margin: 0; font-size: 15.5px; }

/* FINAL CTA */
.ih-lp .final-cta { background: linear-gradient(135deg, var(--violet) 0%, var(--indigo) 100%); text-align: center; border-radius: var(--radius); position: relative; overflow: hidden; }
.ih-lp .final-cta::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.12) 1.6px, transparent 1.6px); background-size: 24px 24px; }
.ih-lp .final-cta .wrap { position: relative; z-index: 1; }
.ih-lp .final-cta h2 { color: var(--white); }
.ih-lp .final-cta p.lead { color: #D4D4D8; max-width: 640px; margin: 0 auto 28px; }
.ih-lp .final-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .ih-lp .cta-split-inner { grid-template-columns: 1fr; gap: 34px; }
  .ih-lp .cta-split-left { text-align: center; }
  .ih-lp .cta-split-left .final-ctas { justify-content: center; }
  .ih-lp .credential-grid, .ih-lp .stat-grid2 { grid-template-columns: 1fr 1fr; }
  .ih-lp .area-grid { grid-template-columns: 1fr 1fr; }
  .ih-lp .pillar-grid { grid-template-columns: 1fr; }
  .ih-lp .services-grid { grid-template-columns: 1fr 1fr; }
  .ih-lp .serve-grid { grid-template-columns: repeat(3, 1fr); }
  .ih-lp .directory-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .ih-lp .credential-grid, .ih-lp .stat-grid2 { grid-template-columns: 1fr; }
  .ih-lp section { padding: 52px 18px; }
  .ih-lp .area-grid { grid-template-columns: 1fr; }
  .ih-lp .services-grid { grid-template-columns: 1fr; }
  .ih-lp .serve-grid { grid-template-columns: 1fr 1fr; }
  .ih-lp .hero-stats { gap: 14px; }
}
