/**
 * Product Discovery Workshop landing page (scoped under .pdw-lander).
 */

.pdw-lander {
  --pdw-teal: #2eb69b;
  --pdw-teal-dark: #249a82;
  --pdw-teal-soft: #e8f7f4;
  --pdw-ink: #0f172a;
  --pdw-muted: #5c6578;
  --pdw-line: #e2e8f0;
  --pdw-radius: 12px;
  --pdw-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--pdw-ink);
  background: #fff;
}

.pdw-lander * {
  box-sizing: border-box;
}

.pdw-lander a {
  color: var(--pdw-teal-dark);
}

.pdw-lander .pdw-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* —— Hero —— */
.pdw-hero {
  padding: 48px 0 64px;
  background: linear-gradient(180deg, #f8fffc 0%, #fff 55%);
  border-bottom: 1px solid var(--pdw-line);
}

.pdw-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .pdw-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}

.pdw-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pdw-teal-dark);
  margin-bottom: 12px;
}

.pdw-hero__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
  font-weight: 800;
  color: var(--pdw-ink);
}

.pdw-hero__title em {
  font-style: normal;
  color: var(--pdw-teal);
}

.pdw-hero__lead {
  margin: 0 0 28px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--pdw-muted);
  max-width: 36rem;
}

.pdw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pdw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pdw-btn:hover {
  transform: translateY(-1px);
}

.pdw-btn--primary {
  background: var(--pdw-teal);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(46, 182, 155, 0.35);
}

.pdw-btn--primary:hover {
  background: var(--pdw-teal-dark);
  color: #fff !important;
}

.pdw-btn--ghost {
  background: #fff;
  color: var(--pdw-teal-dark) !important;
  border-color: var(--pdw-teal);
}

.pdw-btn--ghost:hover {
  background: var(--pdw-teal-soft);
}

.pdw-hero__visual {
  border-radius: var(--pdw-radius);
  background: linear-gradient(145deg, #fff 0%, var(--pdw-teal-soft) 100%);
  border: 1px solid var(--pdw-line);
  box-shadow: var(--pdw-shadow);
  padding: 28px 24px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.pdw-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(46, 182, 155, 0.15), transparent 50%);
  pointer-events: none;
}

.pdw-hero__notepad {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 8px;
  padding: 18px 20px;
  border: 1px solid var(--pdw-line);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pdw-hero__notepad h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
}

.pdw-hero__notepad ul {
  margin: 0;
  padding-left: 18px;
  color: var(--pdw-muted);
  font-size: 14px;
  line-height: 1.55;
}

.pdw-hero__tag {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 12px;
  background: var(--pdw-teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
}

/* —— Section titles —— */
.pdw-section {
  padding: 72px 0;
}

.pdw-section--muted {
  background: #f8fafb;
}

.pdw-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.pdw-section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pdw-teal-dark);
  margin: 0 0 10px;
}

.pdw-section__title {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--pdw-ink);
}

.pdw-section__sub {
  margin: 12px 0 0;
  color: var(--pdw-muted);
  line-height: 1.6;
}

/* —— Process tabs —— */
.pdw-process__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.pdw-process__tab {
  border: 1px solid var(--pdw-line);
  background: #fff;
  color: var(--pdw-muted);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pdw-process__tab:hover {
  border-color: var(--pdw-teal);
  color: var(--pdw-teal-dark);
}

.pdw-process__tab.is-active {
  background: var(--pdw-teal);
  border-color: var(--pdw-teal);
  color: #fff;
}

.pdw-process__panel {
  display: none;
  max-width: 900px;
  margin: 0 auto;
}

.pdw-process__panel.is-active {
  display: block;
}

.pdw-process__layout {
  display: grid;
  gap: 28px;
}

@media (min-width: 768px) {
  .pdw-process__layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.pdw-process__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: pdw;
}

.pdw-process__steps li {
  position: relative;
  padding: 16px 0 16px 48px;
  border-bottom: 1px solid var(--pdw-line);
  font-size: 15px;
  line-height: 1.55;
  color: var(--pdw-muted);
}

.pdw-process__steps li::before {
  counter-increment: pdw;
  content: counter(pdw);
  position: absolute;
  left: 0;
  top: 18px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--pdw-teal-soft);
  color: var(--pdw-teal-dark);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdw-process__aside {
  background: linear-gradient(160deg, var(--pdw-teal) 0%, #1a9b82 100%);
  color: #fff;
  padding: 28px 24px;
  border-radius: var(--pdw-radius);
  box-shadow: var(--pdw-shadow);
}

.pdw-process__aside h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.pdw-process__aside p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

/* —— What you get —— */
.pdw-grid4 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pdw-grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .pdw-grid4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pdw-card {
  background: #fff;
  border: 1px solid var(--pdw-line);
  border-radius: var(--pdw-radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.pdw-card:hover {
  box-shadow: var(--pdw-shadow);
  transform: translateY(-3px);
}

.pdw-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: var(--pdw-teal-soft);
  color: var(--pdw-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.pdw-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
}

.pdw-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--pdw-muted);
}

/* —— Pricing —— */
.pdw-pricing {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 992px) {
  .pdw-pricing {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

.pdw-price-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pdw-price-wrap--popular {
  padding-top: 22px;
}

.pdw-price__popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: var(--pdw-teal-dark);
  white-space: nowrap;
}

.pdw-price-wrap .pdw-price {
  flex: 1;
}

.pdw-price {
  background: #fff;
  border: 2px solid var(--pdw-line);
  border-radius: var(--pdw-radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.pdw-price--basic {
  border-color: #1a7a6f;
}

.pdw-price--accent {
  border-color: var(--pdw-line);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.pdw-price--custom {
  justify-content: flex-start;
}

.pdw-price .pdw-price__amt {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--pdw-ink);
  margin: 0 0 10px;
  line-height: 1.1;
}

.pdw-price h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pdw-ink);
}

.pdw-price__tagline {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--pdw-muted);
}

.pdw-price__custom-head {
  margin: 0 0 6px;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--pdw-ink);
  line-height: 1.1;
}

.pdw-price__desc {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--pdw-muted);
  text-align: center;
  flex: 1;
}

.pdw-price .pdw-price__amt span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pdw-muted);
}

.pdw-price ul {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pdw-price li {
  padding: 10px 0;
  border-bottom: 1px solid var(--pdw-line);
  font-size: 14px;
  color: var(--pdw-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.pdw-price li::before {
  content: "✓";
  color: var(--pdw-teal);
  font-weight: 800;
  flex-shrink: 0;
}

.pdw-price .pdw-btn {
  width: 100%;
}

/* —— Portfolio strip —— */
.pdw-portfolio__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .pdw-portfolio__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.pdw-portfolio__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .pdw-portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .pdw-portfolio__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.pdw-portfolio__cell {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
  text-decoration: none;
  color: inherit;
}

.pdw-portfolio__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* —— Gallery —— */
.pdw-gallery {
  column-count: 2;
  column-gap: 14px;
}

@media (min-width: 768px) {
  .pdw-gallery {
    column-count: 3;
  }
}

@media (min-width: 992px) {
  .pdw-gallery {
    column-count: 4;
  }
}

.pdw-gallery__item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
  background: #e2e8f0;
}

.pdw-gallery__item img {
  width: 100%;
  display: block;
  vertical-align: middle;
}

/* —— Testimonials —— */
.pdw-quote {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.pdw-quote img {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 16px;
}

.pdw-quote blockquote {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.5;
  font-weight: 600;
  color: var(--pdw-ink);
}

.pdw-quote cite {
  font-style: normal;
  font-size: 14px;
  color: var(--pdw-muted);
}

.pdw-testimonial-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pdw-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .pdw-testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pdw-tcard {
  background: #fff;
  border: 1px solid var(--pdw-line);
  border-radius: var(--pdw-radius);
  padding: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--pdw-muted);
}

.pdw-tcard strong {
  display: block;
  margin-top: 12px;
  color: var(--pdw-ink);
}

/* —— FAQ —— */
.pdw-faq {
  max-width: 760px;
  margin: 0 auto;
}

.pdw-faq details {
  border: 1px solid var(--pdw-line);
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 0 18px;
  background: #fff;
}

.pdw-faq summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
}

.pdw-faq summary::-webkit-details-marker {
  display: none;
}

.pdw-faq details[open] summary {
  border-bottom: 1px solid var(--pdw-line);
  margin-bottom: 12px;
}

.pdw-faq details p {
  margin: 0 0 16px;
  color: var(--pdw-muted);
  line-height: 1.6;
  font-size: 14px;
}

/* —— Blog cards —— */
.pdw-blog {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pdw-blog {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pdw-blog article {
  background: #fff;
  border: 1px solid var(--pdw-line);
  border-radius: var(--pdw-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.pdw-blog article a {
  text-decoration: none;
  color: inherit;
}

.pdw-blog .pdw-blog__thumb {
  aspect-ratio: 16 / 10;
  background: #e2e8f0;
}

.pdw-blog .pdw-blog__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdw-blog .pdw-blog__body {
  padding: 18px;
}

.pdw-blog h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.pdw-blog p {
  margin: 0;
  font-size: 14px;
  color: var(--pdw-muted);
  line-height: 1.5;
}

/* —— Case study —— */
.pdw-case {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 992px) {
  .pdw-case {
    grid-template-columns: 1fr 1.1fr;
  }
}

.pdw-case__shot {
  border-radius: var(--pdw-radius);
  overflow: hidden;
  border: 1px solid var(--pdw-line);
  box-shadow: var(--pdw-shadow);
}

.pdw-case__shot img {
  width: 100%;
  display: block;
}

/* —— CTA band —— */
.pdw-cta {
  padding: 64px 0;
  background: linear-gradient(110deg, #2eb69b 0%, #1a7a6f 48%, #0f5c52 100%);
  text-align: center;
}

.pdw-cta h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
}

.pdw-cta .pdw-btn--primary {
  background: #fff;
  color: var(--pdw-teal-dark) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.pdw-cta .pdw-btn--primary:hover {
  background: var(--pdw-teal-soft);
}

/* —— Editor content (optional) —— */
.pdw-editor {
  padding: 48px 0;
  border-top: 1px solid var(--pdw-line);
}

.pdw-editor .entry-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  color: var(--pdw-muted);
}
