/* ===========================================================
   SHAAZFORD — Brand stylesheet
   Colors: Orange E75300 · Near Black 111111 · White FFFFFF
   Type: Inter (closest free analogue to Pilate) → Arial fallback
   =========================================================== */

/* ===== Brand font: Pilat (refined OTF set) =====
   New family ships Thin→Bold (no Black/Heavy). The previously ultra-heavy
   headings (800/900) are intentionally aliased to Bold for a softer,
   calmer, more soothing read — real Pilat Bold, never synthetic faux-bold. */
@font-face { font-family:'Pilat'; font-style:normal; font-weight:100; font-display:swap;
  src:url('../fonts/Pilat-Thin.otf') format('opentype'); }
@font-face { font-family:'Pilat'; font-style:normal; font-weight:300; font-display:swap;
  src:url('../fonts/Pilat-Light.otf') format('opentype'); }
@font-face { font-family:'Pilat'; font-style:normal; font-weight:400; font-display:swap;
  src:url('../fonts/Pilat-Book.otf') format('opentype'); }
@font-face { font-family:'Pilat'; font-style:normal; font-weight:500; font-display:swap;
  src:url('../fonts/Pilat-Regular.otf') format('opentype'); }
@font-face { font-family:'Pilat'; font-style:normal; font-weight:600; font-display:swap;
  src:url('../fonts/Pilat-Demi.otf') format('opentype'); }
@font-face { font-family:'Pilat'; font-style:normal; font-weight:700; font-display:swap;
  src:url('../fonts/Pilat-Bold.otf') format('opentype'); }
@font-face { font-family:'Pilat'; font-style:normal; font-weight:800; font-display:swap;
  src:url('../fonts/Pilat-Bold.otf') format('opentype'); }
@font-face { font-family:'Pilat'; font-style:normal; font-weight:900; font-display:swap;
  src:url('../fonts/Pilat-Bold.otf') format('opentype'); }

:root {
  --orange: #E75300;
  --orange-dark: #C04400;
  --orange-light: #FF6A1F;
  --black: #111111;
  --black-soft: #1A1A1A;
  --gray-900: #2A2A2A;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-300: #CCCCCC;
  --gray-100: #F5F5F5;
  --gray-50:  #FAFAFA;
  --white: #FFFFFF;

  --container: 1240px;
  --container-narrow: 960px;
  --radius: 6px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.12);

  --transition: 200ms cubic-bezier(.2,.8,.2,1);
}

/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Pilat', 'Inter', Arial, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ===== Container ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.16; margin: 0 0 16px; letter-spacing: -0.012em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { margin: 0 0 16px; font-size: 1.05rem; color: var(--gray-900); }
.lead { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.5; color: var(--gray-900); font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }
.text-gray   { color: var(--gray-700); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--black); color: var(--white); }
.btn-secondary:hover { background: var(--gray-900); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--black); border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-ghost { color: var(--black); padding: 16px 0; }
.btn-ghost:hover { color: var(--orange); }
.btn-ghost::after {
  content: " →"; transition: var(--transition);
}
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--gray-100); }
.btn-lg { padding: 20px 36px; font-size: 1.1rem; }

/* Brand-arrow icon inside buttons (from the logo arrow) */
.btn-arrow {
  display: inline-block; width: 1.05em; height: 1.05em;
  background-color: currentColor;
  -webkit-mask: url(../img/favicon.svg) no-repeat center / contain;
          mask: url(../img/favicon.svg) no-repeat center / contain;
  transition: transform var(--transition);
}
.btn:hover .btn-arrow { transform: translate(3px, -3px); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-300);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: inline-flex; align-items: center; line-height: 0;
  font-size: 1.45rem; font-weight: 900; color: var(--black); letter-spacing: -0.04em;
}
.logo .dot { color: var(--orange); }
.logo-img { height: 80px; width: auto; display: block; }
@media (max-width: 980px) { .logo-img { height: 68px; } }
.nav-links {
  display: flex; align-items: center; gap: 22px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--gray-900);
  transition: color var(--transition); position: relative;
  white-space: nowrap;
}
@media (min-width: 1280px) {
  .nav-links { gap: 28px; }
  .nav-links a { font-size: 0.95rem; }
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); font-weight: 600; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: -16px;
  background: var(--white); border: 1px solid var(--gray-300);
  border-radius: var(--radius); padding: 12px; min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition);
  margin-top: 8px;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 8px 12px; border-radius: 4px;
  font-size: 0.93rem;
}
.dropdown a:hover { background: var(--gray-100); color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.menu-toggle span {
  width: 22px; height: 2px; background: var(--black);
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 980px) {
  .nav-links {
    position: fixed; top: 104px; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; gap: 0;
    padding: 32px 24px; overflow-y: auto;
    transform: translateX(100%); transition: transform var(--transition);
    border-top: 1px solid var(--gray-300);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--gray-100); }
  .nav-links a { display: block; padding: 16px 0; font-size: 1.1rem; }
  .menu-toggle { display: flex; }
  .nav-cta .btn:not(.btn-primary) { display: none; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding-left: 16px; margin: 0;
    background: transparent; display: none;
  }
  .has-dropdown.expanded .dropdown { display: block; }
}

/* ===== Hero ===== */
.hero {
  padding: 96px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-dark {
  background: var(--black); color: var(--white);
}
.hero-dark h1, .hero-dark p, .hero-dark .lead { color: var(--white); }
.hero h1 .accent { color: var(--orange); }
.hero-content { max-width: 900px; }
.hero .eyebrow { color: var(--orange); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-meta {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--gray-300);
  display: flex; flex-wrap: wrap; gap: 32px;
  font-size: 0.9rem; color: var(--gray-700);
}
.hero-dark .hero-meta { border-color: var(--gray-900); color: var(--gray-300); }
.hero-meta strong { color: var(--orange); font-weight: 700; }

/* Decorative orange shape */
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: var(--orange); opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}
.hero-dark::after { opacity: 0.18; }

/* ===== Sections ===== */
section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-dark p { color: var(--gray-300); }
.section-gray { background: var(--gray-50); }

.section-head { margin-bottom: 48px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== Stats strip ===== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: var(--orange); line-height: 1; letter-spacing: -0.04em;
}
.stat-label {
  font-size: 0.92rem; color: var(--gray-700); margin-top: 8px;
  font-weight: 500;
}
.section-dark .stat-label { color: var(--gray-300); }

@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ===== Service / feature cards ===== */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 980px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 350ms cubic-bezier(.2,.8,.2,1),
              box-shadow 350ms ease,
              border-color 200ms ease;
  display: flex; flex-direction: column;
  will-change: transform;
}
.card:hover {
  border-color: var(--orange);
  transform: translateY(-8px) scale(1.035);
  box-shadow:
    0 0 0 1.5px var(--orange),
    var(--shadow-lg);
}
.card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  transition: color 220ms ease;
}
.card:hover h3 { color: var(--orange); }
.card-icon {
  width: 48px; height: 48px; background: var(--orange);
  border-radius: 10px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 900; font-size: 1.4rem;
  transition: transform 280ms cubic-bezier(.2,.8,.2,1);
}
.card:hover .card-icon { transform: scale(1.08); }
.card p { font-size: 0.96rem; color: var(--gray-700); margin-bottom: 16px; }
.card .btn-ghost { margin-top: auto; }

.card-dark { background: var(--black-soft); border-color: var(--gray-900); color: var(--white); }
.card-dark h3 { color: var(--white); }
.card-dark p { color: var(--gray-300); }

/* ===== Pricing cards ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--white); border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg); padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.price-card.featured {
  background: var(--black); color: var(--white);
  border-color: var(--black); position: relative;
  transform: scale(1.03);
}
.price-card.featured h3 { color: var(--white); }
.price-card.featured::before {
  content: "MOST POPULAR";
  position: absolute; top: -14px; right: 24px;
  background: var(--orange); color: var(--white);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 6px 12px; border-radius: 4px;
}
.price-card h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.price-amount {
  font-size: 2.4rem; font-weight: 900; color: var(--orange);
  margin: 12px 0 4px; letter-spacing: -0.03em;
}
.price-amount .small { font-size: 1rem; color: var(--gray-500); font-weight: 500; }
.price-card.featured .price-amount { color: var(--orange-light); }
.price-card.featured .price-amount .small { color: var(--gray-300); }
.price-desc { font-size: 0.9rem; color: var(--gray-700); margin-bottom: 24px; min-height: 40px; }
.price-card.featured .price-desc { color: var(--gray-300); }
.price-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  flex: 1;
}
.price-features li {
  padding: 8px 0 8px 28px; position: relative; font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-100);
}
.price-card.featured .price-features li { border-color: var(--gray-900); }
.price-features li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 16px; height: 16px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='black'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='black'/></svg>") no-repeat center / contain;
}

/* ===== Callout / quote ===== */
.callout {
  background: var(--orange); color: var(--white);
  padding: 36px 40px; border-radius: var(--radius-lg);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 700; line-height: 1.3;
  letter-spacing: -0.01em;
}
.quote {
  border-left: 4px solid var(--orange);
  padding: 24px 28px;
  background: var(--gray-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.quote p { font-size: 1.2rem; font-style: italic; margin-bottom: 8px; }
.quote cite { font-size: 0.9rem; color: var(--gray-700); font-style: normal; font-weight: 600; }

/* ===== Bullets / checks ===== */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  padding: 10px 0 10px 32px; position: relative;
  border-bottom: 1px solid var(--gray-100);
  font-size: 1rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 18px; height: 18px; background: var(--orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
}

.numbered-list { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.numbered-list li {
  padding: 18px 0 18px 64px; position: relative; counter-increment: step;
  border-bottom: 1px solid var(--gray-100);
}
.numbered-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 18px;
  font-size: 1.4rem; font-weight: 900; color: var(--orange);
}
.numbered-list li:last-child { border: none; }
.numbered-list li strong { display: block; font-size: 1.1rem; margin-bottom: 4px; color: var(--black); }

/* ===== Industry pills ===== */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill {
  padding: 8px 16px; border-radius: 100px; font-size: 0.9rem;
  background: var(--gray-100); color: var(--gray-900); font-weight: 500;
  border: 1px solid var(--gray-300);
}

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--black); color: var(--white);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; left: -200px; bottom: -200px;
  width: 500px; height: 500px;
  background: var(--orange); opacity: 0.15;
  border-radius: 50%; pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: var(--gray-300); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }

/* ===== Form ===== */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 600px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block; font-size: 0.88rem; font-weight: 600;
  margin-bottom: 8px; color: var(--gray-900);
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 14px 16px; font-size: 1rem;
  border: 1px solid var(--gray-300); border-radius: var(--radius);
  font-family: inherit; background: var(--white);
  transition: var(--transition);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(231,83,0,0.12);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-checks { display: flex; flex-wrap: wrap; gap: 12px; }
.form-checks label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border: 1px solid var(--gray-300);
  border-radius: 100px; cursor: pointer; font-size: 0.88rem;
  font-weight: 500; transition: var(--transition); margin: 0;
}
.form-checks input { width: auto; margin: 0; }
.form-checks label:has(input:checked) {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}

/* ===== Newsletter ===== */
.newsletter {
  display: flex; gap: 10px; max-width: 500px;
}
.newsletter input {
  flex: 1; padding: 14px 18px; font-size: 1rem;
  border: 1px solid var(--gray-300); border-radius: var(--radius);
  font-family: inherit;
}
.newsletter input:focus { outline: none; border-color: var(--orange); }
.section-dark .newsletter input { background: var(--gray-900); border-color: var(--gray-900); color: var(--white); }
.section-dark .newsletter input::placeholder { color: var(--gray-500); }

/* ===== Comparison table ===== */
.compare-table {
  width: 100%; border-collapse: collapse; margin: 32px 0;
}
.compare-table th, .compare-table td {
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--gray-300); font-size: 0.95rem;
}
.compare-table th {
  background: var(--gray-100); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-900);
}
.compare-table td:first-child { font-weight: 600; }
.compare-table .us { background: rgba(231,83,0,0.06); }

/* ===== Logo wall placeholder ===== */
.logo-wall {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
  align-items: center; padding: 24px 0;
}
@media (max-width: 768px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } }
.logo-wall-item {
  display: flex; align-items: center; justify-content: center;
  padding: 16px; border: 1px dashed var(--gray-300); border-radius: 8px;
  color: var(--gray-500); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gray-50); min-height: 64px;
}

/* ===== Ecommerce store mockups (pure CSS, brand colors) ===== */
.mockups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .mockups { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .mockups { grid-template-columns: 1fr; } }

.mockup {
  background: var(--white); border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.mockup:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.mk-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; background: var(--black); }
.mk-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--gray-700); display: block; }
.mk-bar i:first-child { background: var(--orange); }
.mk-url {
  margin-left: 14px; flex: 1; font-size: 0.68rem; color: var(--gray-300);
  background: var(--gray-900); padding: 5px 12px; border-radius: 100px; letter-spacing: 0.02em;
}
.mk-top {
  height: 38px; background: var(--black);
  display: flex; align-items: center; justify-content: space-between; padding: 0 16px;
}
.mk-logo { width: 58px; height: 11px; background: var(--orange); border-radius: 2px; }
.mk-nav { display: flex; gap: 9px; }
.mk-nav span { width: 26px; height: 6px; background: var(--gray-700); border-radius: 2px; display: block; }
.mk-hero {
  height: 132px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; padding: 0 20px;
  background: linear-gradient(120deg, var(--black) 0%, var(--gray-900) 100%);
}
.mk-hero::after {
  content: ""; position: absolute; right: -34px; top: -34px;
  width: 120px; height: 120px; border-radius: 50%; background: var(--orange); opacity: 0.20;
}
.mk-h1 { width: 62%; height: 15px; background: var(--orange); border-radius: 3px; margin-bottom: 9px; }
.mk-h2 { width: 44%; height: 8px; background: var(--gray-500); border-radius: 3px; margin-bottom: 14px; }
.mk-btn { width: 92px; height: 22px; background: var(--orange); border-radius: 4px; }
.mk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; padding: 16px; }
.mk-card { height: 58px; background: var(--gray-100); border: 1px solid var(--gray-300); border-radius: 6px; position: relative; }
.mk-card::after {
  content: ""; position: absolute; left: 9px; right: 9px; bottom: 9px;
  height: 6px; background: var(--orange); border-radius: 2px; opacity: 0.55;
}
/* v2 — light hero, orange top accent */
.mockup.v2 .mk-top { background: var(--white); border-bottom: 2px solid var(--orange); }
.mockup.v2 .mk-logo { background: var(--black); }
.mockup.v2 .mk-nav span { background: var(--gray-300); }
.mockup.v2 .mk-hero { background: var(--gray-100); }
.mockup.v2 .mk-hero::after { background: var(--orange); opacity: 0.14; }
.mockup.v2 .mk-h1 { background: var(--black); }
/* v3 — full orange hero */
.mockup.v3 .mk-hero { background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%); }
.mockup.v3 .mk-hero::after { background: var(--white); opacity: 0.16; }
.mockup.v3 .mk-h1 { background: var(--white); }
.mockup.v3 .mk-h2 { background: rgba(255,255,255,0.6); }
.mockup.v3 .mk-btn { background: var(--black); }
.mockup.v3 .mk-card::after { background: var(--black); opacity: 0.4; }
/* v4 — dark store, two-column grid */
.mockup.v4 .mk-hero { background: var(--black-soft); height: 108px; }
.mockup.v4 .mk-grid { grid-template-columns: repeat(2, 1fr); }
.mockup.v4 .mk-card { height: 64px; background: var(--gray-100); }
/* v5 — minimal editorial, big hero, no grid */
.mockup.v5 .mk-hero { height: 196px; background: var(--gray-50); }
.mockup.v5 .mk-hero::after { background: var(--orange); opacity: 0.12; }
.mockup.v5 .mk-h1 { background: var(--black); width: 70%; height: 18px; }
.mockup.v5 .mk-h2 { width: 52%; }
.mockup.v5 .mk-grid { display: none; }
/* v6 — promo / sale strip */
.mockup.v6 .mk-top { background: var(--orange); }
.mockup.v6 .mk-logo { background: var(--white); }
.mockup.v6 .mk-nav span { background: rgba(255,255,255,0.55); }
.mockup.v6 .mk-hero { background: linear-gradient(120deg, var(--gray-900), var(--black)); }
.mockup.v6 .mk-h1 { background: var(--orange); width: 70%; }

/* Real screenshot inside the browser frame */
.mockup figure, figure.mockup { margin: 0; }
.mk-shot {
  display: block; width: 100%; height: 270px;
  object-fit: cover; object-position: top center;
  background: var(--gray-100);
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}
.mockup:hover .mk-shot { transform: scale(1.05); }
@media (max-width: 620px) { .mk-shot { height: 220px; } }

/* ===== Footer ===== */
.site-footer {
  background: var(--black); color: var(--white);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { color: var(--white); font-size: 1.6rem; }
.footer-brand .logo-img { height: 116px; }
@media (max-width: 620px) { .footer-brand .logo-img { height: 96px; } }
.footer-brand p { color: var(--gray-300); font-size: 0.95rem; margin-top: 12px; }
.footer-col h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange); margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--gray-300); font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid var(--gray-900); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem; color: var(--gray-500);
}
.social-row { display: flex; gap: 16px; }
.social-row a { color: var(--gray-500); }
.social-row a:hover { color: var(--orange); }

/* ===== Utility ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ===== Page-header (sub-pages) ===== */
.page-header {
  padding: 96px 0 64px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-300);
}
.page-header h1 { margin-bottom: 16px; }
.page-header .lead { max-width: 720px; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  font-size: 0.85rem; color: var(--gray-500);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gray-700); }
.breadcrumb a:hover { color: var(--orange); }

/* ===========================================================
   Industries — kinetic intro hero (scoped, JS-driven)
   Activates only on industries.html. Narrates the page's own
   DOM copy, then settles seamlessly into the real .page-header.
   =========================================================== */
.page-header.sf-stage-host { position: relative; overflow: hidden; }

/* Real header content stays in flow (no layout shift) but is
   visually hidden behind the stage until the intro resolves. */
.sf-stage-host.sf-intro-pending > .container { visibility: hidden; }

.sf-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 96px 24px 64px;
  background: var(--gray-50);
  text-align: center;
  z-index: 2;
  opacity: 1;
  transition: opacity 700ms cubic-bezier(.4,0,.2,1);
}
.sf-stage.sf-stage-out { opacity: 0; pointer-events: none; }

.sf-stage-inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  min-height: 1px;
}

/* A scene line: animates in/out via opacity + transform */
.sf-line {
  margin: 0 auto;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 480ms cubic-bezier(.16,1,.3,1),
    transform 560ms cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.sf-line.sf-in  { opacity: 1; transform: translateY(0); }
.sf-line.sf-out { opacity: 0; transform: translateY(-16px);
  transition: opacity 240ms cubic-bezier(.4,0,1,1),
              transform 240ms cubic-bezier(.4,0,1,1); }

.sf-eyebrow {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
}
.sf-kicker {
  display: block;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.sf-kicker b { color: var(--orange); }

.sf-headline {
  font-weight: 900;
  font-size: clamp(2.1rem, 6.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--black);
}
.sf-headline .sf-w {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) rotate(2deg);
  transition: opacity 520ms cubic-bezier(.16,1,.3,1),
              transform 620ms cubic-bezier(.16,1,.3,1);
}
.sf-headline.sf-in .sf-w { opacity: 1; transform: none; }
.sf-em { color: var(--orange); }
.sf-headline .sf-w.sf-pop {
  transform: translateY(28px) scale(.6);
}
.sf-headline.sf-in .sf-w.sf-pop { transform: none; }

.sf-name {
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--orange);
}
.sf-desc {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.5; font-weight: 500;
  color: var(--gray-900);
  max-width: 760px;
  margin: 20px auto 0;
}
.sf-lead {
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  line-height: 1.5; font-weight: 500;
  color: var(--gray-900);
  max-width: 780px;
}
.sf-count {
  margin-top: 26px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600; color: var(--gray-700);
  letter-spacing: 0.01em;
}
.sf-count .sf-num {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--orange);
  letter-spacing: -0.03em;
  display: inline-block;
  min-width: 1.4em;
}

/* Skip control */
.sf-skip {
  position: absolute;
  right: 24px; bottom: 22px;
  z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  font: inherit; font-size: 0.82rem; font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}
.sf-skip:hover { border-color: var(--orange); color: var(--orange); }
.sf-skip kbd {
  font: inherit; font-size: 0.72rem; font-weight: 700;
  color: var(--gray-500);
  border: 1px solid var(--gray-300); border-radius: 4px;
  padding: 1px 5px;
}

/* Progress bar */
.sf-progress {
  position: absolute; left: 0; bottom: 0;
  height: 3px; width: 0%;
  background: var(--orange);
  z-index: 4;
  transition: width 140ms linear;
}

@media (max-width: 620px) {
  .sf-skip { right: 16px; bottom: 16px; padding: 7px 12px; }
  .sf-stage { padding: 80px 18px 56px; }
}

/* Respect reduced motion — JS also bypasses, this is a safety net */
@media (prefers-reduced-motion: reduce) {
  .sf-stage { display: none !important; }
  .sf-stage-host.sf-intro-pending > .container { visibility: visible !important; }
}
.breadcrumb .sep { margin: 0 8px; color: var(--gray-300); }

/* ===== Animations ===== */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Counter animation ===== */
.counter { display: inline-block; }

/* ===========================================================
   Free Audit form + page animation suite (used on many pages)
   =========================================================== */

/* Page-scoped typewriter cursor (orange, doesn't clash with hero) */
.page-header h1 .accent { color: var(--orange); }
.page-header h1 .tw-cursor {
  display: inline-block; color: var(--orange);
  font-weight: 400; margin-left: 3px;
  animation: pageTwBlink 0.85s steps(1) infinite;
}
@keyframes pageTwBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* Checklist scroll-reveal — only fires for items with .reveal-step (so existing
   non-animated checklists on other pages keep their default behaviour) */
.checklist li.reveal-step,
.numbered-list li.reveal-step {
  opacity: 0; transform: translateX(-14px);
  transition: opacity 650ms ease,
              transform 650ms cubic-bezier(.2,.8,.2,1);
}
.checklist li.reveal-step.visible,
.numbered-list li.reveal-step.visible {
  opacity: 1; transform: translateX(0);
}
.checklist li.reveal-step:nth-child(1).visible,
.numbered-list li.reveal-step:nth-child(1).visible { transition-delay: 0ms; }
.checklist li.reveal-step:nth-child(2).visible,
.numbered-list li.reveal-step:nth-child(2).visible { transition-delay: 80ms; }
.checklist li.reveal-step:nth-child(3).visible,
.numbered-list li.reveal-step:nth-child(3).visible { transition-delay: 160ms; }
.checklist li.reveal-step:nth-child(4).visible,
.numbered-list li.reveal-step:nth-child(4).visible { transition-delay: 240ms; }
.checklist li.reveal-step:nth-child(5).visible,
.numbered-list li.reveal-step:nth-child(5).visible { transition-delay: 320ms; }
.checklist li.reveal-step:nth-child(6).visible,
.numbered-list li.reveal-step:nth-child(6).visible { transition-delay: 400ms; }
.checklist li.reveal-step:nth-child(7).visible,
.numbered-list li.reveal-step:nth-child(7).visible { transition-delay: 480ms; }

/* Pricing callout shine sweep */
.callout.shine-callout { position: relative; overflow: hidden; }
.callout.shine-callout::after {
  content: ""; position: absolute;
  top: 0; bottom: 0; left: -150%; width: 45%;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255,255,255,0.10) 35%,
    rgba(255,255,255,0.30) 50%,
    rgba(255,255,255,0.10) 65%,
    transparent 100%);
  transform: skewX(-22deg);
  animation: shineSweep 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shineSweep {
  0%       { left: -150%; }
  55%,100% { left: 160%; }
}

/* ────────── Free Audit form ────────── */
.audit-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  border-top: 1px solid var(--gray-300);
}
.audit-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 900px) {
  .audit-wrap { grid-template-columns: 1fr; gap: 36px; }
}
.audit-intro h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin: 8px 0 12px; }
.audit-intro h2 .accent { color: var(--orange); }
.audit-intro .lead { font-size: clamp(1rem, 1.6vw, 1.1rem); margin-bottom: 0; }
.audit-bullets { list-style: none; padding: 0; margin: 24px 0 0; }
.audit-bullets li {
  padding: 10px 0 10px 32px; position: relative;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.98rem; font-weight: 500;
}
.audit-bullets li:last-child { border-bottom: none; }
.audit-bullets li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 18px; height: 18px;
  background: var(--orange);
  -webkit-mask: url(../img/favicon.svg) no-repeat center / contain;
          mask: url(../img/favicon.svg) no-repeat center / contain;
}
.audit-form {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 32px 32px 26px;
  box-shadow: var(--shadow-md);
}
.audit-form .form-row { margin-bottom: 16px; }
.audit-form .form-row > label {
  display: block;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.audit-form input[type="text"],
.audit-form input[type="email"],
.audit-form input[type="url"],
.audit-form input[type="tel"],
.audit-form select,
.audit-form textarea {
  width: 100%; padding: 13px 16px; font-size: 1rem;
  border: 1px solid var(--gray-300); border-radius: var(--radius);
  font-family: inherit; background: var(--white);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.audit-form select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  padding-right: 36px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E75300'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat; background-position: right 8px center;
}
.audit-form textarea { min-height: 80px; resize: vertical; }
.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(231, 83, 0, 0.12);
}
.audit-form .form-checks { display: flex; flex-wrap: wrap; gap: 8px; }
.audit-form .form-checks label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border: 1.5px solid var(--gray-300);
  border-radius: 100px; cursor: pointer;
  font-size: 0.9rem; font-weight: 600; color: var(--gray-900);
  transition: var(--transition); margin: 0;
  letter-spacing: 0; text-transform: none;
}
.audit-form .form-checks input {
  width: auto; margin: 0; accent-color: var(--orange);
}
.audit-form .form-checks label:has(input:checked) {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.audit-submit { width: 100%; justify-content: center; margin-top: 14px; }
.audit-fineprint {
  margin: 14px 0 0; font-size: 0.78rem;
  color: var(--gray-500); text-align: center; line-height: 1.5;
}
.audit-success { display: none; text-align: center; padding: 40px 16px; }
.audit-success.show { display: block; }
.audit-form.sent { display: none; }
.audit-success h3 { color: var(--orange); font-size: 1.4rem; margin: 12px 0 8px; }
.audit-success .check-circle {
  width: 56px; height: 56px;
  background: var(--orange); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(231,83,0,0.45);
}
.audit-success .check-circle i {
  display: block; width: 28px; height: 28px;
  background: var(--white);
  -webkit-mask: url(../img/favicon.svg) no-repeat center / contain;
          mask: url(../img/favicon.svg) no-repeat center / contain;
}

@media (prefers-reduced-motion: reduce) {
  .checklist li.reveal-step,
  .numbered-list li.reveal-step { opacity: 1; transform: none; transition: none; }
  .callout.shine-callout::after { display: none; }
}

/* ── Header: Client Login text link (sits before the Free Audit CTA) ── */
.client-login-link {
  display: inline-flex;
  align-items: center;
  margin-left: 18px;
  margin-right: 6px;
  padding: 6px 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
  border-left: 1px solid var(--gray-300);
  padding-left: 18px;
}
.client-login-link:hover { color: var(--orange); }
@media (max-width: 980px) {
  .client-login-link { display: none; } /* hidden on mobile to save room */
}
