/* ── HERO VISUAL ─────────────────────────────── */
.ws-hero .hero-inner {
  grid-template-columns: 55% 1fr;
  align-items: center;
}

.ws-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-product-card {
  width: 100%;
  max-width: 300px;
  background: #1a1f2e;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.ws-product-img {
  height: 160px;
  background: linear-gradient(135deg, rgba(217,79,30,0.25), rgba(217,79,30,0.05));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ws-product-info {
  padding: 16px 20px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ws-product-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.ws-product-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--orange);
}

.ws-product-cta {
  margin: 0 16px 16px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
}

.ws-stat-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.ws-stat-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.ws-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--mid);
}

.ws-stat-1 { bottom: -16px; left: -24px; }
.ws-stat-2 { top: -16px; right: -24px; }

/* ── SHARED SECTION STYLES ───────────────────── */
.ws-section { padding: 100px 0; }

.ws-section-header { margin-bottom: 56px; }

.ws-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 18px;
}

.ws-eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

.ws-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}

.ws-headline em {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

/* ── DELIVERABLES ────────────────────────────── */
.ws-deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ws-del-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(15,22,41,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ws-del-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15,22,41,0.08);
}

.ws-del-icon {
  width: 44px;
  height: 44px;
  background: rgba(217,79,30,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ws-del-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.ws-del-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid);
}

/* ── APPROACH ────────────────────────────────── */
.ws-approach {
  padding: 100px 0;
  background: var(--dark);
}

.ws-approach .ws-eyebrow { color: rgba(255,255,255,0.4); }
.ws-approach .ws-headline { color: #fff; }

.ws-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}

.ws-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 8px;
}

.ws-step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
}

.ws-step-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.ws-step-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
}

.ws-step-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  margin: 28px 24px 0;
}

/* ── CASES ───────────────────────────────────── */
.ws-cases-section { background: #f6f6f1; }

.ws-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ws-case-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15,22,41,0.07);
  text-decoration: none;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ws-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(15,22,41,0.1);
}

.ws-case-img {
  height: 220px;
  overflow: hidden;
  background: #eee;
}

.ws-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ws-case-card:hover .ws-case-img img { transform: scale(1.04); }

.ws-case-body { padding: 28px; }

.ws-case-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.ws-case-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.ws-case-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 20px;
}

.ws-case-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.ws-case-card:hover .ws-case-link { gap: 10px; }

/* ── CTA ─────────────────────────────────────── */
.ws-cta-section {
  padding: 120px 0;
  background: var(--dark);
}

.ws-cta-inner { max-width: 620px; }

.ws-cta-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.ws-cta-label span {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

.ws-cta-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.ws-cta-headline em {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

.ws-cta-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
}

/* ── CTA BUTTON FIX (dark background) ───────── */
.ws-cta-btn {
  background: var(--orange) !important;
}
.ws-cta-btn:hover {
  background: #bf4318 !important;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .ws-hero .hero-inner { grid-template-columns: 1fr; }
  .ws-hero-visual { display: none; }
  .ws-steps { grid-template-columns: 1fr; gap: 32px; }
  .ws-step-divider { display: none; }
}

@media (max-width: 768px) {
  .ws-deliverables { grid-template-columns: 1fr 1fr; }
  .ws-cases { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .ws-deliverables { grid-template-columns: 1fr; }
}

/* Clean emphasis style */
em {
  font-style: normal !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
}
