/* ════════════════════════════════════════════════════════════════
   Brand Pro Inc. — Global Design System
   brandproinc.in · v1.0 · 2026-04-21
   Aesthetic: Linear/Raycast — warm dark, surgical hierarchy
   ════════════════════════════════════════════════════════════════ */

/* ─── FONTS ──────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Instrument+Sans:wght@400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Brand */
  --o:    #E85D04;
  --om:   #ff7a28;
  --od:   #c44d03;
  --obg:  rgba(232, 93, 4, 0.09);
  --obdr: rgba(232, 93, 4, 0.25);

  /* Surfaces */
  --ink:  #080807;
  --bg-1: #0d0c0a;
  --bg-2: #111009;
  --bg-3: #171512;
  --bg-4: #1e1c18;
  --bg-5: #2a2720;
  --bg-6: #383430;

  /* Text */
  --w:    #f0ede6;
  --pale: #a8a294;
  --dim:  #524e47;
  --inv:  #080807;

  /* Semantic */
  --g:    #16a34a;
  --gd:   rgba(22, 163, 74, 0.12);
  --b:    #dc2626;
  --bd:   rgba(220, 38, 38, 0.12);
  --y:    #d97706;
  --yd:   rgba(217, 119, 6, 0.12);

  /* Fonts */
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'Instrument Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing (8px base) */
  --s1:  0.25rem;  --s2:  0.5rem;   --s3:  0.75rem;
  --s4:  1rem;     --s5:  1.25rem;  --s6:  1.5rem;
  --s8:  2rem;     --s10: 2.5rem;   --s12: 3rem;
  --s16: 4rem;     --s20: 5rem;     --s24: 6rem;
  --s32: 8rem;

  /* Layout */
  --container:  1100px;
  --container-lg: 1280px;
  --nav-h: 60px;

  /* Radii */
  --r-sm:   0.25rem;
  --r-md:   0.5rem;
  --r-lg:   0.75rem;
  --r-xl:   1rem;
  --r-2xl:  1.5rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(0,0,0,0.4);
  --shadow-md:   0 4px 8px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.3);
  --shadow-lg:   0 8px 24px rgba(0,0,0,0.6), 0 4px 8px rgba(0,0,0,0.4);
  --shadow-xl:   0 16px 40px rgba(0,0,0,0.7), 0 8px 16px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(232,93,4,0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.64, 0, 0.78, 0);
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--ink); overflow-x: hidden; }
body {
  background: var(--ink);
  color: var(--w);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--o); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--o); }

/* Focus */
:focus-visible { outline: 2px solid var(--o); outline-offset: 3px; border-radius: var(--r-sm); }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
}
.container--lg {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--s6);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(var(--text-3xl), 7vw, var(--text-6xl)); max-width: 100%; overflow-wrap: break-word; letter-spacing: -0.01em; }
h2 { font-size: clamp(var(--text-2xl), 5vw, var(--text-5xl)); max-width: 100%; overflow-wrap: break-word; letter-spacing: -0.01em; }
h3 { font-size: clamp(var(--text-xl), 3vw, var(--text-3xl)); max-width: 100%; overflow-wrap: break-word; letter-spacing: -0.01em; }
h4 { font-size: var(--text-xl); font-weight: 700; max-width: 100%; overflow-wrap: break-word; }
h5 { font-size: var(--text-lg); font-weight: 700; }
h6 { font-size: var(--text-base); font-weight: 700; }
p  { line-height: 1.72; color: var(--pale); max-width: 100%; }
p + p { margin-top: var(--s4); }

.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--o);
}
.mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
}

/* ─── SECTION PATTERN ─────────────────────────────────────────── */
.section { padding: var(--s16) 0; }
.section--alt { background: var(--bg-1); }
.section--tight { padding: var(--s10) 0; }

.sec-head { margin-bottom: var(--s8); }
.sec-head .label { margin-bottom: var(--s3); display: block; }
.sec-head p { max-width: 540px; }

/* ─── GRID ────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--s4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4); }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ─── CARDS ────────────────────────────────────────────────────── */
.card {
  background: var(--bg-3);
  border: 1px solid var(--bg-5);
  border-radius: var(--r-xl);
  padding: var(--s6);
  transition: border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}
.card:hover {
  border-color: var(--obdr);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.card--sm { padding: var(--s5); }
.card--lg { padding: var(--s8); }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: var(--s4) var(--s6);
  border-radius: var(--r-md);
  transition: background var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--o);
  color: var(--w);
}
.btn--primary:hover {
  background: var(--om);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,93,4,0.3);
}
.btn--primary:active { background: var(--od); transform: none; }

.btn--ghost {
  background: transparent;
  color: var(--w);
  border: 1px solid var(--bg-5);
}
.btn--ghost:hover {
  border-color: var(--obdr);
  color: var(--o);
}
.btn--lg { padding: var(--s5) var(--s8); font-size: var(--text-sm); }
.btn--sm { padding: var(--s3) var(--s5); font-size: 11px; }

/* ─── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(8, 8, 7, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--s6);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.nav__logo-dot {
  width: 6px; height: 6px;
  background: var(--o);
  border-radius: 50%;
}
.nav__logo em { color: var(--o); font-style: normal; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s6);
  list-style: none;
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--pale);
  transition: color var(--dur-fast);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--o);
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--ease-out);
}
.nav__links a:hover, .nav__links a.active { color: var(--w); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--w);
  background: var(--o);
  padding: 10px var(--s5);
  transition: background var(--dur-fast);
}
.nav__cta:hover { background: var(--om); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s3);
  cursor: pointer;
  background: none;
  border: none;
}
.nav__hamburger span {
  width: 22px; height: 1.5px;
  background: var(--w);
  display: block;
  transition: all var(--dur-base);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-3);
  border: 1px solid var(--bg-5);
  border-radius: var(--r-xl);
  padding: var(--s3);
  min-width: 220px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  margin-top: 0;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}
.nav__dropdown:hover::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav__dropdown-menu a {
  display: block;
  padding: var(--s3) var(--s4);
  font-size: var(--text-sm);
  color: var(--pale);
  border-radius: var(--r-md);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav__dropdown-menu a:hover { background: var(--obg); color: var(--w); }

/* Drawer (mobile) */
.nav__drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(8, 8, 7, 0.99);
  padding: var(--s6);
  z-index: 190;
  overflow-y: auto;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-size: var(--text-base);
  color: var(--pale);
  padding: var(--s5) 0;
  border-bottom: 1px solid var(--bg-5);
}
.nav__drawer .d-cta {
  margin-top: var(--s6);
  background: var(--o);
  color: var(--w);
  text-align: center;
  padding: var(--s5);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,93,4,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,93,4,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 50vw; height: 50vw;
  max-width: 480px;
  background: radial-gradient(circle, rgba(232,93,4,.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: var(--s10) var(--s6);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero__tag {
  font-size: 13px;
  color: var(--o);
  margin-bottom: var(--s5);
  letter-spacing: 0.08em;
  overflow-wrap: break-word;
  max-width: 100%;
}
.hero__tag span { color: var(--dim); margin: 0 var(--s2); }
.hero h1 {
  margin-bottom: var(--s6);
  line-height: 1.0;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  letter-spacing: -0.02em;
}
.hl { display: block; overflow: hidden; }
.hl span {
  display: block;
  animation: lineIn 0.8s cubic-bezier(0.22,1,0.36,1) both;
}
.hl:nth-child(1) span { animation-delay: 0.28s; }
.hl:nth-child(2) span { animation-delay: 0.42s; color: var(--o); }
.hl:nth-child(3) span { animation-delay: 0.56s; }
.hero__sub {
  font-size: var(--text-lg);
  color: var(--pale);
  line-height: 1.72;
  margin-bottom: var(--s8);
  max-width: 500px;
}
.hero__sub strong { color: var(--w); font-weight: 500; }
.hero__ctas { display: flex; gap: var(--s3); flex-wrap: wrap; }

/* Stats row — 2x2 grid */
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--bg-5);
  margin-top: var(--s16);
  max-width: 600px;
}
.hero__stat {
  padding: var(--s5) var(--s6);
  border-right: 1px solid var(--bg-5);
  border-bottom: 1px solid var(--bg-5);
}
.hero__stat:nth-child(2n) { border-right: none; }
.hero__stat:nth-last-child(-n+2) { border-bottom: none; }
.hero__stat-n {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--o);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero__stat-l {
  font-size: var(--text-xs);
  color: var(--pale);
  margin-top: var(--s2);
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .hero__stats { max-width: 100%; }
  .hero__stat { padding: var(--s4); }
  .hero__stat-n { font-size: var(--text-xl); }
}

/* ─── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--dim);
  margin-bottom: var(--s6);
}
.breadcrumb a { color: var(--pale); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--o); }
.breadcrumb__sep { color: var(--bg-5); }

/* ─── PAGE HEADER (inner pages) ───────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + var(--s12)) 0 var(--s10);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,93,4,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,93,4,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-header h1 { margin-bottom: var(--s4); }
.page-header p { font-size: var(--text-lg); max-width: 560px; }

/* ─── SERVICE CARDS GRID ──────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s4);
}
.svc-card {
  background: var(--bg-3);
  border: 1px solid var(--bg-5);
  border-radius: var(--r-xl);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: border-color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base);
}
.svc-card:hover {
  border-color: var(--obdr);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.svc-card__icon {
  width: 44px; height: 44px;
  background: var(--obg);
  border: 1px solid var(--obdr);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.svc-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
}
.svc-card__desc { font-size: var(--text-sm); flex: 1; }
.svc-card__price {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--o);
}
.svc-card__link {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--o);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  transition: gap var(--dur-fast);
}
.svc-card:hover .svc-card__link { gap: var(--s3); }

/* ─── FAQ ACCORDION ───────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--bg-5); }
.faq-item:first-child { border-top: 1px solid var(--bg-5); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--s5) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--w);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color var(--dur-fast);
}
.faq-q:hover { color: var(--o); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--bg-5);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--o);
  transition: transform var(--dur-base) var(--ease), background var(--dur-fast), border-color var(--dur-fast);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--o); border-color: var(--o); color: var(--w); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a__inner { padding-bottom: var(--s5); }
.faq-a p { font-size: var(--text-sm); }

/* ─── PRICING TIERS ───────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.price-tier {
  background: var(--bg-3);
  border: 1px solid var(--bg-5);
  border-radius: var(--r-2xl);
  padding: var(--s8);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.price-tier--featured {
  background: linear-gradient(160deg, #1a0d00 0%, #120900 100%);
  border-color: var(--o);
  box-shadow: var(--shadow-glow);
}
.price-tier__badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--o);
  color: var(--w);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 0 0 var(--r-md) var(--r-md);
}
.price-tier__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
}
.price-tier__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-tier--featured .price-tier__tag { color: var(--o); }
.price-tier__price {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--o);
  line-height: 1;
}
.price-tier__price sup { font-size: var(--text-xl); vertical-align: super; }
.price-tier__price span { font-size: var(--text-base); color: var(--pale); font-weight: 400; }
.price-tier__features { display: flex; flex-direction: column; gap: var(--s3); flex: 1; }
.price-tier__features li {
  font-size: var(--text-sm);
  color: var(--pale);
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
}
.price-tier__features li::before {
  content: '✓';
  color: var(--o);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}
.price-tier__features li strong { color: var(--w); }
.price-tier__cta {
  display: block;
  text-align: center;
  padding: var(--s4) var(--s6);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--r-md);
  border: 1px solid var(--bg-5);
  color: var(--pale);
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.price-tier__cta:hover { border-color: var(--o); color: var(--w); }
.price-tier--featured .price-tier__cta {
  background: var(--o);
  color: var(--w);
  border-color: var(--o);
}
.price-tier--featured .price-tier__cta:hover { background: var(--om); border-color: var(--om); }

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ─── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  background: var(--bg-1);
  border-top: 1px solid var(--bg-5);
  padding: var(--s20) 0;
  text-align: center;
}
.cta-section h2 { margin-bottom: var(--s4); }
.cta-section p { max-width: 480px; margin: 0 auto var(--s8); }
.cta-section__btns { display: flex; gap: var(--s3); justify-content: center; flex-wrap: wrap; }

/* ─── TRUST / SOCIAL PROOF ───────────────────────────────────── */
.trust-strip {
  display: flex;
  align-items: center;
  gap: var(--s8);
  flex-wrap: wrap;
}
.trust-strip__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--dim);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.trust-strip__logos {
  display: flex;
  align-items: center;
  gap: var(--s6);
  flex-wrap: wrap;
}
.trust-strip__logo {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--dim);
  letter-spacing: 0.04em;
  opacity: 0.6;
  transition: opacity var(--dur-fast);
}
.trust-strip__logo:hover { opacity: 1; }

/* Step row — 80px left col (WhatsApp marketing) */
.step-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 480px) {
  .step-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Step row — 120px left col (Brand identity) */
.step-row--lg {
  grid-template-columns: 120px 1fr;
  gap: 32px;
}
@media (max-width: 640px) {
  .step-row--lg {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Case study cards */
.cs-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: var(--s6);
  box-sizing: border-box;
  max-width: 100%;
}
.cs-card__img {
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .cs-card {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .cs-card__img { aspect-ratio: 16/9; font-size: 28px; }
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--bg-5);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.stats-row__item {
  padding: var(--s6);
  text-align: center;
  border-right: 1px solid var(--bg-5);
  border-bottom: 1px solid var(--bg-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.stats-row__item:nth-child(2n) { border-right: none; }
.stats-row__item:nth-last-child(-n+2) { border-bottom: none; }
.stats-row__n {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--o);
  line-height: 1;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
  color: var(--o);
  line-height: 1;
  flex-shrink: 0;
}
.stats-row__l { font-size: var(--text-xs); color: var(--pale); margin-top: var(--s2); letter-spacing: 0.04em; flex-shrink: 0; white-space: nowrap; }

@media (max-width: 480px) {
  .stats-row__item { padding: var(--s4); }
  .stats-row__n { font-size: var(--text-xl); }
  .stats-row__l { font-size: 10px; }
}

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s4);
}
.testi-card {
  background: var(--bg-3);
  border: 1px solid var(--bg-5);
  border-radius: var(--r-xl);
  padding: var(--s6);
}
.testi-card__stars { color: var(--o); font-size: 14px; margin-bottom: var(--s4); }
.testi-card__text { font-size: var(--text-sm); line-height: 1.7; margin-bottom: var(--s5); }
.testi-card__author { display: flex; align-items: center; gap: var(--s3); }
.testi-card__avatar {
  width: 36px; height: 36px;
  background: var(--obg);
  border: 1px solid var(--obdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--o);
}
.testi-card__name { font-size: var(--text-sm); font-weight: 600; color: var(--w); }
.testi-card__role { font-size: var(--text-xs); color: var(--dim); }

/* ─── PROCESS / STEPS ─────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s4);
}
.process-step {
  padding: var(--s6);
  position: relative;
}
.process-step__num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--o);
  margin-bottom: var(--s4);
  display: block;
}
.process-step h3 { margin-bottom: var(--s3); font-size: var(--text-xl); }
.process-step p { font-size: var(--text-sm); }

/* ─── BLOG CARDS ──────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s4);
}
.blog-card {
  background: var(--bg-3);
  border: 1px solid var(--bg-5);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base);
}
.blog-card:hover {
  border-color: var(--obdr);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.blog-card__img {
  aspect-ratio: 16/9;
  background: var(--bg-4);
  overflow: hidden;
  position: relative;
}
.blog-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,93,4,0.15), transparent);
}
.blog-card__body { padding: var(--s5); }
.blog-card__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--o);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s3);
  display: block;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--s3);
  line-height: 1.2;
}
.blog-card__title:hover { color: var(--o); }
.blog-card__meta { font-size: var(--text-xs); color: var(--dim); }

/* ─── FORMS ───────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: var(--s2); }
.form-label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--pale);
  letter-spacing: 0.04em;
}
.form-input,
.form-select,
.form-textarea {
  background: var(--bg-4);
  border: 1px solid var(--bg-5);
  border-radius: var(--r-md);
  padding: var(--s3) var(--s4);
  color: var(--w);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  width: 100%;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--dim); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--o);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a8a294' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-select option { background: var(--bg-3); color: var(--w); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.form-error { font-size: var(--text-xs); color: var(--b); margin-top: var(--s1); display: none; }
.form-group.error .form-error { display: block; }
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea { border-color: var(--b); }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--bg-5);
  padding: var(--s12) 0 var(--s6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s8);
  margin-bottom: var(--s10);
}
.footer__brand p { font-size: var(--text-sm); max-width: 280px; margin-top: var(--s4); }
.footer__brand .nav__logo { margin-bottom: var(--s4); }
.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--w);
  margin-bottom: var(--s4);
  letter-spacing: 0.04em;
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--s3); }
.footer__col a { font-size: var(--text-sm); color: var(--pale); transition: color var(--dur-fast); }
.footer__col a:hover { color: var(--o); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s6);
  border-top: 1px solid var(--bg-5);
  font-size: var(--text-xs);
  color: var(--dim);
}
.footer__bottom a { color: var(--dim); transition: color var(--dur-fast); }
.footer__bottom a:hover { color: var(--o); }
.footer__bottom-links { display: flex; gap: var(--s5); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--s3); text-align: center; }
}

/* ─── WHATSAPP BUTTON (sticky) ────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: var(--s6);
  right: var(--s6);
  z-index: 150;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
@media (max-width: 480px) {
  body { padding-bottom: 80px; }
  .wa-float { bottom: calc(var(--s6) + env(safe-area-inset-bottom, 0px)); }
}

/* ─── DIVIDER ─────────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--bg-5); margin: var(--s8) 0; }

/* ─── TAG / BADGE ──────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--r-full);
  border: 1px solid var(--bg-5);
  color: var(--pale);
  letter-spacing: 0.06em;
}
.tag--o { border-color: var(--obdr); background: var(--obg); color: var(--o); }
.tag--g { border-color: rgba(22,163,74,.25); background: var(--gd); color: var(--g); }

/* ─── CONTENT PROSE ────────────────────────────────────────────── */
.prose h2 { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); margin-top: var(--s12); margin-bottom: var(--s4); }
.prose h3 { font-size: clamp(var(--text-xl), 3vw, var(--text-2xl)); margin-top: var(--s8); margin-bottom: var(--s3); }
.prose p { margin-bottom: var(--s4); }
.prose ul { margin-bottom: var(--s4); padding-left: var(--s5); }
.prose ul li { list-style: disc; color: var(--pale); margin-bottom: var(--s2); }
.prose ol { margin-bottom: var(--s4); padding-left: var(--s5); }
.prose ol li { list-style: decimal; color: var(--pale); margin-bottom: var(--s2); }
.prose strong { color: var(--w); font-weight: 600; }
.prose a { color: var(--o); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--om); }
.prose blockquote {
  border-left: 3px solid var(--o);
  padding-left: var(--s5);
  margin: var(--s6) 0;
  font-size: var(--text-lg);
  color: var(--pale);
  font-style: italic;
}
.prose table { width: 100%; border-collapse: collapse; margin: var(--s6) 0; font-size: var(--text-sm); }
.prose th {
  background: var(--bg-4);
  padding: var(--s3) var(--s4);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--w);
  border-bottom: 1px solid var(--bg-5);
}
.prose td {
  padding: var(--s3) var(--s4);
  border-bottom: 1px solid var(--bg-5);
  color: var(--pale);
}
.prose tr:hover td { background: var(--bg-3); }

/* ─── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes lineIn {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
@keyframes glow {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 0.9; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

.anim { opacity: 0; }
.anim.visible { animation: fadeUp 0.6s var(--ease-out) forwards; }
.anim--d1 { animation-delay: 0.1s; }
.anim--d2 { animation-delay: 0.2s; }
.anim--d3 { animation-delay: 0.3s; }
.anim--d4 { animation-delay: 0.4s; }
.anim--d5 { animation-delay: 0.5s; }
.anim--d6 { animation-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .anim { opacity: 1; animation: none !important; }
}

/* ─── UTILITY ──────────────────────────────────────────────────── */
.text-o { color: var(--o); }
.text-pale { color: var(--pale); }
.text-dim { color: var(--dim); }
.text-w { color: var(--w); }
.text-g { color: var(--g); }
.mt-auto { margin-top: auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-2 { gap: var(--s2); }
.gap-3 { gap: var(--s3); }
.gap-4 { gap: var(--s4); }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ─── MOBILE OVERRIDES (390px and below) ────────────────────── */
@media (max-width: 390px) {
  h1 { font-size: clamp(1.75rem, 85vw, 1.875rem) !important; word-break: break-word; }
  h2 { font-size: clamp(1.5rem, 80vw, 1.5rem) !important; word-break: break-word; }
  .hero__tag { font-size: 11px; white-space: normal; }
  .hero__sub { font-size: 14px; max-width: 100%; word-break: break-word; }
  .hero__inner { padding: var(--s5); }
  .hero__ctas .btn { font-size: 12px; padding: 12px 16px; }
  .container { padding: 0 var(--s4); }
  .page-header { padding: calc(var(--nav-h) + var(--s8)) 0 var(--s6); }
  .page-header h1 { font-size: clamp(1.75rem, 85vw, 2rem) !important; }
  .cs-card { grid-template-columns: 1fr !important; }
  .step-row { grid-template-columns: 1fr !important; }
  .step-row--lg { grid-template-columns: 1fr !important; }
}
