/* ══════════════════════════════════════════
   Service: Email Marketing — Page-Specific Styles
   ══════════════════════════════════════════ */

/* SVC HERO — grid layout variant */
.svc-hero {
  background: var(--red);
  padding: 0;
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}
.svc-hero-content { padding: 80px 64px; min-width: 0; }
.svc-hero-graphic { overflow: hidden; }
.svc-hero-graphic img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* PROBLEM SECTION */
.problem {
  padding: 80px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.problem-left { display: flex; flex-direction: column; gap: 0; }
.problem-header { margin-bottom: 24px; }
.problem h2 { margin-bottom: 20px; }
.problem-content { color: var(--muted); font-size: 1.5rem; line-height: 1.8; }
.problem-content p { margin-bottom: 16px; }
.problem-content p:last-child { margin-bottom: 0; }
.pain-list { display: flex; flex-direction: column; gap: 14px; }
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(61,43,31,0.07);
}
.pain-x {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #fee2e0;
  color: var(--red);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pain-item h4 { font-size: 1.5rem; font-weight: 700; color: var(--brown); margin-bottom: 4px; }
.pain-item p { font-size: 1.3rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* WHAT'S INCLUDED */
.included {
  padding: 80px 64px;
  background: var(--cream-dark);
  max-width: 1280px;
  margin: 0 auto;
}
.included h2 { margin-bottom: 48px; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.inc-card {
  position: relative;
  background: white;
  border-radius: 0;
  padding: 40px 36px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(61,43,31,0.07);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  overflow: hidden;
}
.inc-card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  opacity: 0.05;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.inc-card-icon i {
  font-size: 12rem;
}
.inc-card h3,
.inc-card p {
  position: relative;
  z-index: 1;
}
.inc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(61,43,31,0.08); }
.inc-card h3 { font-size: 1.3rem; color: var(--brown); margin-bottom: 12px; }
.inc-card p { font-size: 1.1rem; color: var(--muted); line-height: 1.75; }

/* PROCESS */
.svc-process {
  padding: 80px 64px;
  background: var(--cream-dark);
  max-width: 1280px;
  margin: 0 auto;
}
.svc-process .section-label { color: var(--red); }
.svc-process h2 { color: var(--brown); margin-bottom: 16px; }
.svc-process > p { color: var(--muted); font-size: 1.5rem; line-height: 1.7; max-width: none; margin-bottom: 48px; }
.proc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.proc-card {
  background: white;
  border: 1px solid rgba(61,43,31,0.07);
  border-radius: 0;
  padding: 32px;
  transition: all 0.2s;
}
.proc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(61,43,31,0.08); }
.proc-num { font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.proc-card h3 { font-size: 1.1rem; color: var(--brown); margin-bottom: 10px; }
.proc-card p { font-size: 1.1rem; color: var(--muted); line-height: 1.7; }

/* MINI CASE STUDY */
.mini-case {
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.case-result {
  background: var(--red);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.case-metric { display: flex; align-items: baseline; gap: 12px; }
.case-metric-val { font-family: 'Inter Tight', sans-serif; font-weight: 900; font-size: 3.5rem; color: white; line-height: 1; }
.case-metric-label { font-size: 0.88rem; color: #fff; }
.case-text .section-label { margin-bottom: 16px; }
.case-text h2 { margin-bottom: 16px; }
.case-text p { color: var(--muted); font-size: 1.5rem; line-height: 1.8; margin-bottom: 16px; }
.case-quote {
  background: var(--cream-dark);
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--brown);
  line-height: 1.6;
  margin-top: 20px;
}
.case-quote-author { font-size: 0.75rem; color: var(--muted); font-style: normal; margin-top: 8px; }

/* TOOLS */
.tools {
  padding: 48px 64px;
  background: var(--cream-dark);
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}
.tools h3 { font-size: 1.15rem; color: var(--brown); margin-bottom: 28px; }
.tools-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.tool-pill {
  background: white;
  border: 1px solid rgba(61,43,31,0.08);
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
}

/* RELATED ARTICLES (matches front-page articles-section) */
.articles-section {
  padding: 20px 0px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--brown);
}
.articles-header h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 0; }
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s;
}
.view-all:hover { gap: 10px; }

/* FAQ & OTHER SERVICES (single-service) */
body.single-service .faq {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0px;
}
body.single-service .other-svc {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0 80px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .svc-hero { padding: 0; grid-template-columns: 1fr; }
  .svc-hero-content { padding: 48px 24px; }
  .svc-hero-graphic { display: none; }
  .problem,
  .included,
  .svc-process,
  .mini-case { padding: 48px 24px; }
  .problem,
  .mini-case { grid-template-columns: 1fr; }
  .included-grid,
  .proc-grid,
  .articles-grid { grid-template-columns: 1fr; }
  .inc-card { aspect-ratio: auto; }
  .tools { padding: 40px 24px; }
  .articles-section { padding: 40px 24px 48px; }
  .articles-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  body.single-service .faq { padding: 48px 24px; }
  body.single-service .other-svc { padding: 0 24px 48px; }
}
