/* ============================================
   BRAND DIRECT page styles
   ============================================ */

.bd-hero {
  padding: clamp(64px, 7vw, 112px) 0 clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.bd-hero .container {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}

.bd-hero h1 {
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 600;
  letter-spacing: -0.036em;
  line-height: 0.98;
  margin-top: 22px;
}

.bd-hero h1 em {
  font-style: normal;
  color: var(--green);
  position: relative;
  white-space: nowrap;
}

.bd-hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.08em;
  background: var(--green);
  opacity: 0.2;
  border-radius: 2px;
}

.bd-hero .lead {
  margin-top: 24px;
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 56ch;
}

/* Hero side card — animated metric tile */
.bd-stat-card {
  position: relative;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 380px;
}

.bd-stat-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63,143,111,0.35), transparent 70%);
  top: -100px;
  right: -100px;
}

.bd-stat-card .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9b9f9b;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.bd-stat-card .lbl .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s var(--ease) infinite;
}

.bd-stat-card .big {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
}

.bd-stat-card .big small {
  font-size: 18px;
  color: var(--green);
  font-weight: 500;
  margin-left: 8px;
}

.bd-stat-card .chart {
  position: relative;
  height: 100px;
  margin-top: auto;
}

.bd-stat-card .chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.bd-stat-card .chart-foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #6B6F6B;
  margin-top: 8px;
  position: relative;
}

@media (max-width: 820px) {
  .bd-hero .container { grid-template-columns: 1fr; }
  .bd-stat-card { min-height: 320px; }
}

/* Positioning block */
.pos-block {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-tint);
}

.pos-block .container {
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 120px);
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.pos-block .pos-pillar {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: var(--ink);
}

.pos-block .pos-pillar em {
  font-style: normal;
  color: var(--green);
}

.pos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 56px;
}

.pos-cell h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pos-cell h4::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--green);
}

.pos-cell p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  padding-left: 34px;
}

@media (max-width: 820px) {
  .pos-block .container { grid-template-columns: 1fr; }
  .pos-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Services grid */
.svc-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}

.svc-head .eyebrow { justify-content: center; }
.svc-head h2 { margin-top: 18px; }
.svc-head .lead { margin: 18px auto 0; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-pure);
}

.svc {
  padding: 32px 28px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  position: relative;
  transition: background 0.2s var(--ease);
}

.svc:hover { background: var(--green-tint); }

.svc:nth-child(4n) { border-right: none; }
.svc:nth-last-child(-n+4) { border-bottom: none; }

.svc .ic {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--bg-tint);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}

.svc:hover .ic { background: var(--green); color: white; }

.svc .ic svg { width: 18px; height: 18px; }

.svc h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.svc p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  margin-top: auto;
}

.svc .idx {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.06em;
}

@media (max-width: 980px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .svc:nth-child(4n) { border-right: 1px solid var(--line); }
  .svc:nth-child(2n) { border-right: none; }
  .svc:nth-last-child(-n+2) { border-bottom: none; }
  .svc:nth-last-child(-n+4):not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc { border-right: none; border-bottom: 1px solid var(--line); }
  .svc:last-child { border-bottom: none; }
}

/* How it works */
.how {
  background: var(--ink);
  color: white;
}

.how-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.how-head .eyebrow { color: var(--green); }
.how-head .eyebrow::before { background: var(--green); }

.how-head h2 {
  color: white;
  font-size: clamp(32px, 3.6vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 22ch;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.how-steps::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 32px;
  height: 1px;
  background: linear-gradient(to right, transparent, #2A2D2A 10%, #2A2D2A 90%, transparent);
  z-index: 0;
}

.step {
  background: rgba(255,255,255,0.02);
  border: 1px solid #2A2D2A;
  border-radius: var(--radius);
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.step .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 14px;
}

.step h3 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.step p {
  color: #9b9f9b;
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
}

/* CTA section */
.cta-section {
  text-align: center;
  padding: clamp(72px, 9vw, 140px) 0;
}

.cta-section h2 {
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.032em;
  line-height: 1;
}

.cta-section .lead {
  margin: 24px auto 36px;
  font-size: clamp(17px, 1.4vw, 20px);
}

.cta-section .btn { font-size: 16px; padding: 18px 30px; }
