/* Industry solution landing pages — luxury aesthetic, modular sections, scaled typography, strict SVG sizing, NO EMOJIS */

:root {
  --brand-dark: #2C2018;
  --brand-warm: #8B6F47;
  --brand-cream: #F5EDD8;
  --brand-offwhite: #FDFAF6;
  --brand-muted: #C9B8A0;
  --text-primary: #1A1410;
  --text-secondary: #6B5E4A;
  --text-tertiary: #9A8A7A;
  --border: #E8E0D4;
  --border-strong: #C9B8A0;
  --brand-wordmark-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --brand-wordmark-weight: 200;
  --brand-wordmark-tracking: 0.22em;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: #fff;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* ── STRICT GLOBAL SVG CONSTRAINTS ── */
svg {
  box-sizing: content-box;
}

/* ── BUTTONS ── */
.btn-primary, a.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  background: var(--brand-dark);
  color: var(--brand-cream);
  border: 1px solid var(--brand-dark);
  border-radius: 9px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s, background 0.15s, transform 0.15s;
  text-align: center;
  line-height: 1;
}

.btn-primary:hover, a.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-demo, a.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  background: #fff;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
  text-align: center;
  line-height: 1;
}

.btn-demo:hover, a.btn-demo:hover {
  border-color: var(--brand-warm);
  background: var(--brand-offwhite);
  transform: translateY(-1px);
}

.btn-light, a.btn-light {
  display: inline-block;
  padding: 16px 36px;
  background: var(--brand-cream);
  color: var(--brand-dark);
  border-radius: 9px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
  line-height: 1;
}

.btn-light:hover, a.btn-light:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ── HERO SECTION (2-COL WITH BOUNDED MOCKUP) ── */
.ind-hero {
  background: var(--brand-offwhite);
  border-bottom: 1px solid var(--border);
  padding: 72px 24px 64px;
}

.ind-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 56px 64px;
  align-items: center;
}

.ind-hero-copy {
  display: flex;
  flex-direction: column;
}

.ind-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-warm);
  margin-bottom: 16px;
}

.ind-hero h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(44px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}

.ind-hero h1 em {
  font-style: italic;
  color: var(--brand-warm);
}

.ind-hero-lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 34em;
}

.ind-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 0;
}

.ind-hero .ind-browser-bar {
  display: none;
}

/* ── BOUNDED BROWSER PREVIEW ── */
.ind-browser-wrap {
  width: 100%;
}

.ind-browser {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 64px rgba(44, 32, 24, 0.12);
  margin: 0;
  max-height: 640px;
  display: flex;
  flex-direction: column;
}

.ind-browser-bar {
  background: #f7f3ee;
  border-bottom: 1px solid var(--border);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ind-browser-dots {
  display: flex;
  gap: 6px;
}

.ind-browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d9d0c5;
}

.ind-browser-url {
  font-size: 11.5px;
  font-family: monospace;
  color: var(--text-tertiary);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 12px;
  margin-left: 8px;
  flex: 1;
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ind-browser-viewport {
  overflow-y: auto;
  flex: 1;
  max-height: 600px;
  scrollbar-width: thin;
}

.ind-browser-viewport img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  background: #f0ebe4;
}

.ind-browser-viewport video {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  background: #f5f0eb;
}

.ind-booking-flow-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.ind-booking-video {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #f5f0eb;
  box-shadow: 0 24px 64px rgba(44, 32, 24, 0.12);
}

.ind-booking-video video {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

/* ── FULL-WIDTH MODULAR SECTIONS ── */
.ind-section {
  padding: 72px 24px;
  border-bottom: 1px solid var(--border);
}

.ind-section--warm {
  background: var(--brand-offwhite);
}

.ind-section--white {
  background: #fff;
}

.ind-section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.ind-section-head h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.ind-section-head h2 em {
  font-style: italic;
  color: var(--brand-warm);
}

.ind-section-head p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── 3-COLUMN CORE PLATFORM CARDS ── */
.ind-grid-3 {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ind-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 28px;
  box-shadow: 0 4px 18px rgba(44, 32, 24, 0.035);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ind-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-cream);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.ind-card-icon svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  stroke: var(--brand-dark);
}

.ind-card h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.35;
}

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

/* ── 3-STEP TIMELINE WORKFLOW ── */
.ind-steps {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.ind-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.ind-step-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 42px;
  font-style: italic;
  color: var(--brand-warm);
  line-height: 1;
  margin-bottom: 16px;
}

.ind-step h3 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.ind-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   1. CHARTER: Vessel Fleet Grid + Connected Departure Timeline
   ══════════════════════════════════════════════════════════════ */
.ind-fleet-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.ind-vessel-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(44, 32, 24, 0.05);
}

.ind-vessel-photo {
  aspect-ratio: 16 / 9;
  background: #e8f1ed;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.ind-vessel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ind-vessel-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ind-vessel-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0B6E4F;
  background: #E8F1ED;
  padding: 5px 12px;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 14px;
}

.ind-vessel-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.ind-vessel-specs {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.ind-vessel-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.ind-vessel-stat {
  display: flex;
  flex-direction: column;
}

.ind-vessel-stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 3px;
}

.ind-vessel-stat-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ── CONNECTED STEPPER TIMELINE ── */
.ind-stepper-track {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 36px;
}

.ind-stepper-track::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 32px;
  left: 12px;
  width: 2px;
  background: var(--border-strong);
}

.ind-stepper-node {
  position: relative;
  margin-bottom: 24px;
}

.ind-stepper-node:last-child {
  margin-bottom: 0;
}

.ind-stepper-dot {
  position: absolute;
  left: -36px;
  top: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #2B5A8A;
  box-shadow: 0 0 0 4px var(--brand-offwhite);
  z-index: 2;
}

.ind-stepper-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 16px rgba(44, 32, 24, 0.03);
}

.ind-stepper-time {
  font-family: monospace;
  font-size: 14.5px;
  font-weight: 600;
  color: #2B5A8A;
  background: #F0F5FA;
  padding: 6px 14px;
  border-radius: 7px;
  flex-shrink: 0;
}

.ind-stepper-desc {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  flex: 1;
}

/* ══════════════════════════════════════════════════════════════
   2. NAILS: Visual Reference Inspo Showcase + Tiered Art
   ══════════════════════════════════════════════════════════════ */
.ind-inspo-widget {
  max-width: 1020px;
  margin: 0 auto 48px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 6px 24px rgba(44, 32, 24, 0.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ind-inspo-widget-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}

.ind-inspo-badge {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #B88490;
  background: #FAF6F7;
  padding: 5px 12px;
  border-radius: 6px;
}

.ind-inspo-title {
  font-size: 21px;
  font-weight: 600;
  color: var(--text-primary);
}

.ind-inspo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ind-inspo-thumb {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f7f3ee;
}

.ind-inspo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ind-inspo-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.ind-meta-chip {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--brand-offwhite);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 7px;
}

.ind-booking-modes {
  max-width: 900px;
  margin: -8px auto 40px;
  text-align: center;
}

.ind-booking-modes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-warm);
  margin-bottom: 14px;
}

.ind-booking-modes-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ind-booking-mode-pill {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  user-select: none;
}

.ind-booking-mode-pill.is-active {
  color: var(--brand-dark);
  background: var(--brand-cream);
  border-color: var(--brand-warm);
  box-shadow: 0 4px 14px rgba(139, 111, 71, 0.12);
  transform: translateY(-1px);
}

.ind-booking-modes-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
  min-height: 1.55em;
  transition: opacity 0.3s ease;
}

.ind-booking-modes-desc.is-fading {
  opacity: 0;
}

.ind-nail-tiers {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ind-nail-tier-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(44, 32, 24, 0.03);
}

.ind-nail-tier-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.ind-nail-tier-title {
  font-weight: 600;
  font-size: 19px;
  color: var(--text-primary);
}

.ind-nail-tier-badge {
  font-size: 13px;
  font-weight: 600;
  color: #B88490;
  background: #FAF6F7;
  padding: 3px 10px;
  border-radius: 6px;
}

.ind-nail-tier-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   3. BARBER: Old Way vs Bookking Way Comparison
   ══════════════════════════════════════════════════════════════ */
.ind-compare-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ind-compare-card {
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ind-compare-card--old {
  background: #FAF7F5;
  border: 1px solid #EADBCE;
}

.ind-compare-card--new {
  background: #FFFDF9;
  border: 1.5px solid var(--brand-warm);
  box-shadow: 0 8px 32px rgba(139, 111, 71, 0.08);
}

.ind-compare-title {
  font-size: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ind-compare-tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
}

.ind-compare-tag--old {
  background: #E8D6DA;
  color: #8A2B3D;
}

.ind-compare-tag--new {
  background: #E8F1ED;
  color: #0B6E4F;
}

.ind-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ind-compare-list li {
  font-size: 15px;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
}

.ind-compare-list li strong {
  color: var(--text-primary);
}

/* ══════════════════════════════════════════════════════════════
   4. TATTOO: Portfolio gallery slide strip
   ══════════════════════════════════════════════════════════════ */
.ind-tattoo-gallery-viewport {
  width: 100%;
  overflow: hidden;
  margin: 0 auto 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ind-tattoo-gallery-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(14px, 2vw, 20px);
  width: max-content;
  padding: 4px 0 12px;
  animation: ind-tattoo-gallery-scroll 42s linear infinite;
  will-change: transform;
}

.ind-tattoo-gallery-viewport:hover .ind-tattoo-gallery-track {
  animation-play-state: paused;
}

.ind-tattoo-gallery-item {
  flex: 0 0 auto;
  width: min(280px, 78vw);
  height: clamp(320px, 42vw, 420px);
  border-radius: 12px;
  overflow: hidden;
  background: #1a1410;
  box-shadow: 0 8px 28px rgba(44, 32, 24, 0.12);
}

.ind-tattoo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ind-tattoo-gallery-note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.ind-tattoo-gallery-note a {
  color: var(--brand-dark);
  font-weight: 500;
  text-decoration: none;
}

.ind-tattoo-gallery-note a:hover {
  text-decoration: underline;
}

@keyframes ind-tattoo-gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ind-tattoo-gallery-track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-inline: clamp(12px, 4vw, 28px);
    -webkit-overflow-scrolling: touch;
  }
  .ind-tattoo-gallery-viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .ind-tattoo-gallery-item {
    scroll-snap-align: center;
  }
  .ind-tattoo-gallery-item[aria-hidden="true"] {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   3b. BARBER: Live demo screenshots (team + member profile)
   ══════════════════════════════════════════════════════════════ */
.ind-barber-duo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: clamp(16px, 2.5vw, 28px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.ind-barber-capture-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.ind-barber-capture {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a08;
  box-shadow: 0 24px 64px rgba(44, 32, 24, 0.14);
}

.ind-barber-capture img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.ind-barber-capture-label {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(232, 224, 208, 0.55);
  background: #0a0a08;
}

.ind-barber-capture--phone {
  border-radius: 28px;
  box-shadow:
    0 32px 64px rgba(44, 32, 24, 0.18),
    0 0 0 1px rgba(44, 32, 24, 0.06);
}

.ind-barber-member-showcase {
  max-width: 420px;
  margin: 0 auto;
}

.ind-barber-capture--phone img {
  max-width: 393px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .ind-barber-duo-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

.ind-barber-team-note {
  max-width: 720px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.ind-barber-team-note a {
  color: var(--brand-dark);
  font-weight: 500;
  text-decoration: none;
}

.ind-barber-team-note a:hover {
  text-decoration: underline;
}

.ind-seo-links {
  max-width: 820px;
  margin: 0 auto;
  padding: 8px 16px 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.ind-seo-links a {
  color: var(--brand-dark);
  font-weight: 500;
  text-decoration: none;
}

.ind-seo-links a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════════
   4. TATTOO: Custom Intake Blueprint Card (legacy)
   ══════════════════════════════════════════════════════════════ */
.ind-intake-card {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid var(--border-strong);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 6px 24px rgba(44, 32, 24, 0.04);
}

.ind-intake-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.ind-intake-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
}

.ind-intake-status {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0B6E4F;
  background: #E8F1ED;
  padding: 4px 10px;
  border-radius: 5px;
}

.ind-intake-field {
  background: var(--brand-offwhite);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ind-intake-label {
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.ind-intake-val {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ══════════════════════════════════════════════════════════════
   5. TRAINER: Packages & Subscriptions Matrix
   ══════════════════════════════════════════════════════════════ */
.ind-package-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ind-package-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(44, 32, 24, 0.035);
}

.ind-package-type {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C9A96E;
  margin-bottom: 8px;
}

.ind-package-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.ind-package-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   6. WEBSITE BUILDER HUB MATRIX
   ══════════════════════════════════════════════════════════════ */
.builder-themes-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.builder-theme-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none !important;
  color: inherit;
  box-shadow: 0 4px 16px rgba(44, 32, 24, 0.03);
}

.builder-theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(44, 32, 24, 0.08);
}

.builder-theme-thumb {
  background: #f5f0e8;
  border-bottom: 1px solid var(--border);
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.builder-theme-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.builder-theme-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.builder-theme-tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-warm);
  margin-bottom: 6px;
}

.builder-theme-info h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.builder-theme-info p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.builder-theme-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ── FOOTER CTA ── */
.footer-cta {
  background: var(--brand-dark);
  color: var(--brand-cream);
  text-align: center;
  padding: 96px 24px;
}

.footer-cta h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.footer-cta p {
  font-size: 18px;
  color: #b5a695;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 1020px) {
  .ind-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ind-hero {
    padding: 48px 20px 52px;
  }
  .ind-browser {
    max-height: 520px;
  }
  .ind-browser-viewport {
    max-height: 480px;
  }
  .ind-grid-3, .ind-steps, .builder-themes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .ind-hero {
    padding: 40px 16px 44px;
  }
  .ind-hero h1 {
    font-size: clamp(36px, 9vw, 44px);
  }
  .ind-hero-lead {
    font-size: 17px;
    margin-bottom: 24px;
  }
  .ind-hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 24px;
  }
  .ind-hero-actions .btn-primary,
  .ind-hero-actions .btn-demo {
    width: 100%;
  }
  .ind-browser {
    max-height: 380px;
  }
  .ind-browser-viewport {
    max-height: 340px;
  }
  .ind-booking-video video {
    max-height: none;
    width: 100%;
  }
  .ind-booking-modes {
    margin-bottom: 32px;
  }
  .ind-booking-mode-pill {
    font-size: 12.5px;
    padding: 7px 13px;
  }
  .ind-booking-modes-desc {
    font-size: 14px;
    padding: 0 4px;
  }
  .ind-fleet-grid,
  .ind-nail-tiers,
  .ind-compare-grid,
  .ind-package-grid,
  .ind-inspo-gallery-grid {
    grid-template-columns: 1fr;
  }
  .ind-stepper-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ind-section {
    padding: 56px 16px;
  }
  .ind-section-head {
    margin-bottom: 32px;
  }
  .ind-section-head h2 {
    font-size: clamp(28px, 7.5vw, 36px);
  }
  .ind-section-head p {
    font-size: 16px;
  }
  .ind-vessel-body {
    padding: 24px 20px;
  }
  .ind-card {
    padding: 28px 22px;
  }
  .footer-cta {
    padding: 72px 20px;
  }
  .footer-cta h2 {
    font-size: clamp(30px, 8vw, 40px);
  }
  .footer-cta p {
    font-size: 16px;
  }
}
