/* ============================================================
   Trend Watching — trend-watching.css
   Page-specific styles for /trend-watching
   ============================================================ */

/* ---- Hero (full-width gradient, no video) ---- */
.tw-hero {
  position: relative;
  min-height: 480px;
  background: linear-gradient(135deg, #072536 0%, #0d4d6d 52%, #0a3a54 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

/* Subtle radial glow for depth */
.tw-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,166,224,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.tw-hero-content {
  text-align: center;
  padding: 80px 24px;
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.tw-hero .section-tag {
  background: rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 20px;
}

.tw-hero-title {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  line-height: 1.18;
  margin: 0 0 20px;
  font-family: 'Lato', sans-serif;
}

.tw-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 580px;
}

.tw-hero-btns { margin-top: 0; }

/* ---- Intro paragraph ---- */
.tw-intro {
  background: linear-gradient(120deg, #eef7fd 0%, #dff0fb 100%);
  border-left: 4px solid #0da6e0;
  border-radius: 0 12px 12px 0;
  padding: 22px 28px;
  margin: 40px 0 48px;
  font-size: 15px;
  line-height: 1.9;
  color: #3a4a56;
  -webkit-box-shadow: 0 2px 12px rgba(13,166,224,0.08);
          box-shadow: 0 2px 12px rgba(13,166,224,0.08);
}
.tw-intro p { margin: 0; }
.tw-intro strong { color: #0da6e0; font-weight: 700; }

/* ---- Section spacing & dividers ---- */
.tw-section { padding: 56px 0; }
.tw-section + .tw-section { border-top: 1px solid #f0f4f8; }

/* ---- Section header ---- */
.tw-section-hdr { margin-bottom: 32px; }
.tw-section-hdr .section-tag { display: block; margin-bottom: 10px; }
.tw-section-hdr.text-center .section-tag { display: inline-block; }
.tw-section-hdr h2 {
  font-size: 28px;
  font-weight: 800;
  color: #12253a;
  margin: 0 0 10px;
  font-family: 'Lato', sans-serif;
}
.tw-section-hdr p {
  font-size: 15px;
  color: #666;
  line-height: 1.72;
  margin: 0;
}

/* ---- Issue cards (problem section) ---- */
.tw-issue-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8edf3;
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  -webkit-box-shadow: 0 4px 16px rgba(0,0,0,0.05);
          box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  -webkit-transition: -webkit-box-shadow 0.22s, -webkit-transform 0.2s;
          transition: box-shadow 0.22s, transform 0.2s;
}
.tw-issue-card:hover {
  -webkit-box-shadow: 0 8px 28px rgba(13,166,224,0.12);
          box-shadow: 0 8px 28px rgba(13,166,224,0.12);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.tw-issue-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right bottom, from(#dff2fc), to(#b3e2f7));
  background: linear-gradient(135deg, #dff2fc 0%, #b3e2f7 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 26px;
  color: #0da6e0;
  margin: 0 auto 18px;
  -webkit-transition: background 0.25s, color 0.25s;
          transition: background 0.25s, color 0.25s;
}
.tw-issue-card:hover .tw-issue-icon {
  background: -webkit-gradient(linear, left top, right bottom, from(#0da6e0), to(#0b8ec0));
  background: linear-gradient(135deg, #0da6e0 0%, #0b8ec0 100%);
  color: #fff;
}
.tw-issue-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #12253a;
  margin: 0 0 10px;
  font-family: 'Lato', sans-serif;
}
.tw-issue-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

/* ---- Process box (dark) ---- */
.tw-process-box {
  background: -webkit-gradient(linear, left top, right bottom, from(#072536), color-stop(52%, #0d4d6d), to(#0a3a54));
  background: linear-gradient(135deg, #072536 0%, #0d4d6d 52%, #0a3a54 100%);
  border-radius: 20px;
  padding: 52px 40px;
  -webkit-box-shadow: 0 18px 52px rgba(7,37,54,0.24);
          box-shadow: 0 18px 52px rgba(7,37,54,0.24);
  margin: 0 0 56px;
}
.tw-process-box .tw-section-hdr h2 { color: #fff; }
.tw-process-box .tw-section-hdr p  { color: rgba(255,255,255,0.68); }
.tw-process-box .section-tag {
  background: rgba(255,255,255,0.1) !important;
  color: rgba(255,255,255,0.78) !important;
}

/* ---- Step cards ---- */
.tw-step-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 28px 22px;
  height: 100%;
  -webkit-transition: background 0.22s;
          transition: background 0.22s;
}
.tw-step-card:hover { background: rgba(255,255,255,0.13); }
.tw-step-num {
  font-size: 36px;
  font-weight: 900;
  color: #0da6e0;
  font-family: 'Lato', sans-serif;
  line-height: 1;
  margin-bottom: 14px;
}
.tw-step-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  font-family: 'Lato', sans-serif;
}
.tw-step-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  margin: 0;
}

/* ---- Checklist ---- */
.tw-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}
.tw-checklist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
      -ms-flex-align: flex-start;
          align-items: flex-start;
  font-size: 14.5px;
  color: #4a5568;
  line-height: 1.65;
  margin-bottom: 13px;
}
.tw-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(13,166,224,0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
  margin-top: 1px;
}
.tw-check-icon i { font-size: 10px; color: #0da6e0; }

/* ---- PESTEL tags ---- */
.tw-pestel-tags { margin: 24px 0 0; }
.tw-pestel-tag {
  display: inline-block;
  background: #eef7fd;
  border: 1px solid #c8e8f5;
  border-radius: 8px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  font-size: 12px;
  font-weight: 700;
  color: #0d6892;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- Results box ---- */
.tw-results-box {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8edf3;
  padding: 32px 28px;
  -webkit-box-shadow: 0 4px 24px rgba(0,0,0,0.06);
          box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.tw-result-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
      -ms-flex-align: flex-start;
          align-items: flex-start;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #f0f4f8;
}
.tw-result-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.tw-result-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: -webkit-gradient(linear, left top, right bottom, from(#dff2fc), to(#b3e2f7));
  background: linear-gradient(135deg, #dff2fc 0%, #b3e2f7 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  color: #0da6e0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 16px;
}
.tw-result-item h4 {
  font-size: 15px;
  font-weight: 800;
  color: #12253a;
  margin: 0 0 4px;
  font-family: 'Lato', sans-serif;
}
.tw-result-item p {
  font-size: 13.5px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* ---- CTA box ---- */
.tw-cta-box {
  background: -webkit-gradient(linear, left top, right bottom, from(#0a3a54), to(#0d5c82));
  background: linear-gradient(135deg, #0a3a54 0%, #0d5c82 100%);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  -webkit-box-shadow: 0 18px 52px rgba(7,37,54,0.24);
          box-shadow: 0 18px 52px rgba(7,37,54,0.24);
  margin: 0 0 48px;
}
.tw-cta-box .section-tag {
  background: rgba(255,255,255,0.1) !important;
  color: rgba(255,255,255,0.78) !important;
  margin-bottom: 14px;
}
.tw-cta-box h2 {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  font-family: 'Lato', sans-serif;
}
.tw-cta-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin: 0 auto 32px;
  max-width: 600px;
  line-height: 1.7;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .tw-hero-title { font-size: 36px; }
  .tw-process-box { padding: 36px 24px; }
  .tw-cta-box { padding: 44px 28px; }
}
@media (max-width: 768px) {
  .tw-hero { min-height: 360px; }
  .tw-hero-title { font-size: 28px; }
  .tw-hero-sub { font-size: 15px; }
  .tw-section { padding: 36px 0; }
  .tw-cta-box { border-radius: 14px; padding: 36px 20px; }
  .tw-cta-box h2 { font-size: 24px; }
  .tw-process-box { border-radius: 14px; }
  .tw-results-box { margin-top: 32px; }
}
