/* ==========================================================================
   Writoholics Legal Content Writing Landing Page Stylesheet
   Prefixes: legalhero-, legalsect2-, legalsect3-
   ========================================================================== */

:root {
  --wh-purple: #735D78;
  --wh-purple-dark: #5E3F66;
  --wh-navy: #2B2B55;
  --wh-peach: #F8DCD9;
  --wh-peach-soft: #F9DDDA;
  --wh-white: #FFFFFF;
  --wh-dark: #141423;
  --wh-muted: #4F4F5E;
  --wh-soft: #FFF9F8;
}

/* ==========================================================================
   SECTION 1: HERO STYLES (.legalhero-)
   ========================================================================== */

.legalhero-section {
  position: relative;
  width: 100%;
  min-height: 700px;
  background: 
    radial-gradient(circle at 85% 30%, rgba(248, 220, 217, 0.75), transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(248, 220, 217, 0.35), transparent 25%),
    var(--wh-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding-top: 40px;
  box-sizing: border-box;
}

.legalhero-container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.legalhero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
  padding: 20px 0 40px 0;
}

/* Left Content Column (55%) */
.legalhero-left {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

/* Small Pill Tag */
.legalhero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(94, 63, 102, 0.06);
  opacity: 0;
  animation: legalhero-fadeup 0.55s ease-out forwards;
}

.legalhero-pill-dot {
  width: 6px;
  height: 6px;
  background-color: var(--wh-purple-dark);
  border-radius: 50%;
}

/* Main Heading H1 */
.legalhero-title {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  color: var(--wh-dark);
  margin: 0 0 20px 0;
  letter-spacing: -1.5px;
  opacity: 0;
  animation: legalhero-fadeup 0.55s ease-out 0.1s forwards;
}

.legalhero-highlight {
  color: var(--wh-purple);
  position: relative;
  display: inline-block;
}

/* Supporting Paragraph */
.legalhero-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--wh-muted);
  max-width: 560px;
  margin: 0 0 32px 0;
  opacity: 0;
  animation: legalhero-fadeup 0.55s ease-out 0.2s forwards;
}

/* Price Block Card */
.legalhero-price-box {
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.8);
  border-radius: 20px;
  padding: 22px 28px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 12px 32px rgba(43, 43, 85, 0.04);
  opacity: 0;
  animation: legalhero-fadeup 0.55s ease-out 0.3s forwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.legalhero-price-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(43, 43, 85, 0.08);
}

.legalhero-price-header {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.legalhero-price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--wh-dark);
  line-height: 1;
  letter-spacing: -1px;
}

.legalhero-price-period {
  font-size: 18px;
  font-weight: 600;
  color: var(--wh-muted);
}

.legalhero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legalhero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--wh-dark);
  line-height: 1.4;
}

.legalhero-features li strong {
  font-weight: 700;
  color: var(--wh-navy);
}

.legalhero-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.legalhero-check svg {
  width: 22px;
  height: 22px;
}

/* Call To Action Buttons */
.legalhero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: legalhero-fadeup 0.55s ease-out 0.4s forwards;
}

.legalhero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--wh-purple);
  color: var(--wh-white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  height: 52px;
  padding: 0 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(115, 93, 120, 0.28);
}

.legalhero-btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.legalhero-btn-primary:hover::after {
  left: 100%;
}

.legalhero-btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  background-color: var(--wh-purple-dark);
  box-shadow: 0 16px 36px rgba(94, 63, 102, 0.4);
}

.legalhero-btn-primary:active {
  transform: translateY(-1px) scale(0.99);
}

.legalhero-btn-arrow {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  animation: legalhero-arrow-nudge 2.2s infinite ease-in-out 2.5s;
}

.legalhero-btn-primary:hover .legalhero-btn-arrow {
  transform: translateX(5px);
  animation: none;
}

.legalhero-btn-secondary {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--wh-purple-dark);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.legalhero-btn-secondary:hover {
  color: var(--wh-purple);
  background-color: rgba(115, 93, 120, 0.08);
  transform: translateX(4px);
};
}

/* Right Visual Column (45%) */
.legalhero-right {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mascot Composition Container */
.legalhero-mascot-composition {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Abstract Backdrop Elements */
.legalhero-blob-peach {
  position: absolute;
  width: 380px;
  height: 380px;
  background: var(--wh-peach);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  top: 40px;
  right: 20px;
  z-index: 1;
  filter: blur(1px);
  opacity: 0.85;
  animation: legalhero-blob-morph 14s ease-in-out infinite;
}

.legalhero-circle-purple {
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(115, 93, 120, 0.12);
  border-radius: 50%;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  animation: legalhero-pulse-soft 8s ease-in-out infinite;
}

.legalhero-outline-circle {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1.5px dashed rgba(115, 93, 120, 0.25);
  border-radius: 50%;
  top: 20px;
  z-index: 1;
  pointer-events: none;
  animation: legalhero-rotate-slow 45s linear infinite;
}

.legalhero-dot-pattern {
  position: absolute;
  top: 10px;
  left: -10px;
  width: 110px;
  height: 110px;
  z-index: 1;
  opacity: 0.45;
  pointer-events: none;
  animation: legalhero-pulse-soft 6s ease-in-out infinite alternate;
}

/* Mascot Main Image */
.legalhero-mascot-img-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 410px;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: legalhero-owl-enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards,
             legalhero-mascot-idle 6s ease-in-out infinite 1s;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.legalhero-mascot-img-wrap:hover {
  transform: scale(1.03) translateY(-4px);
}

.legalhero-mascot-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(43, 43, 85, 0.15));
  transition: filter 0.4s ease;
}

.legalhero-mascot-img-wrap:hover .legalhero-mascot-img {
  filter: drop-shadow(0 25px 35px rgba(43, 43, 85, 0.22));
}

/* Article Preview Panel */
.legalhero-article-panel {
  position: absolute;
  bottom: 25px;
  left: -35px;
  z-index: 5;
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.9);
  border-radius: 18px;
  padding: 16px 20px;
  width: 260px;
  box-shadow: 0 16px 36px rgba(43, 43, 85, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.legalhero-article-panel:hover {
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 22px 42px rgba(43, 43, 85, 0.14);
  border-color: rgba(115, 93, 120, 0.4);
}

.legalhero-article-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--wh-purple);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.legalhero-article-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--wh-dark);
  line-height: 1.35;
  margin: 0 0 10px 0;
}

.legalhero-article-skeleton {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.legalhero-sk-line {
  height: 5px;
  background: #EAE7EC;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.legalhero-sk-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: legalhero-shimmer 2.4s infinite ease-in-out;
}

.legalhero-sk-line.width-100 { width: 100%; }
.legalhero-sk-line.width-90  { width: 90%; }
.legalhero-sk-line.width-75  { width: 75%; }
.legalhero-sk-line.width-85  { width: 85%; }

.legalhero-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.legalhero-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--wh-purple-dark);
  background: var(--wh-soft);
  border: 1px solid var(--wh-peach);
  padding: 3px 8px;
  border-radius: 12px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.legalhero-tag:hover {
  background-color: var(--wh-peach);
  transform: translateY(-1px);
}

/* Floating UI Cards */
.legalhero-card {
  position: absolute;
  z-index: 6;
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(43, 43, 85, 0.07);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.legalhero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(43, 43, 85, 0.12);
  border-color: rgba(115, 93, 120, 0.35);
}

.legalhero-card-icon {
  width: 34px;
  height: 34px;
  background: var(--wh-peach-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.25s ease;
}

.legalhero-card:hover .legalhero-card-icon {
  background-color: var(--wh-peach);
}

.legalhero-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--wh-dark);
  line-height: 1.2;
}

.legalhero-card-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--wh-muted);
}

/* Asymmetrical Card Positions */
.legalhero-card-1 {
  top: 35px;
  left: -25px;
}

.legalhero-card-2 {
  top: 75px;
  right: -20px;
}

.legalhero-card-3 {
  bottom: 120px;
  right: -30px;
}

.legalhero-card-4 {
  top: 230px;
  left: -40px;
}

/* Small Floating Mini Pills */
.legalhero-mini-pill {
  position: absolute;
  z-index: 6;
  background: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 16px rgba(94, 63, 102, 0.12);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.legalhero-mini-pill:hover {
  transform: translateY(-4px) scale(1.06) !important;
  box-shadow: 0 10px 22px rgba(94, 63, 102, 0.2);
}

.legalhero-dot-active {
  width: 6px;
  height: 6px;
  background-color: #27AE60;
  border-radius: 50%;
  animation: legalhero-beacon-pulse 2s infinite ease-in-out;
}

.pill-seo {
  top: 15px;
  right: 60px;
}

.pill-ai {
  bottom: 60px;
  right: 40px;
}

/* Floating Animations */
.legalhero-float-delay1 { animation: legalhero-float-1 5.2s ease-in-out infinite alternate; }
.legalhero-float-delay2 { animation: legalhero-float-2 6.0s ease-in-out infinite alternate 0.6s; }
.legalhero-float-delay3 { animation: legalhero-float-3 6.6s ease-in-out infinite alternate 1.2s; }
.legalhero-float-delay4 { animation: legalhero-float-4 5.6s ease-in-out infinite alternate 1.8s; }

/* Keyframes */
@keyframes legalhero-fadeup {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes legalhero-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

@keyframes legalhero-beacon-pulse {
  0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(39, 174, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

@keyframes legalhero-text-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes legalhero-shimmer {
  0% { left: -100%; }
  60%, 100% { left: 100%; }
}

@keyframes legalhero-blob-morph {
  0% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; transform: rotate(0deg) scale(1); }
  33% { border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%; transform: rotate(3deg) scale(1.02); }
  66% { border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%; transform: rotate(-2deg) scale(0.98); }
  100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; transform: rotate(0deg) scale(1); }
}

@keyframes legalhero-pulse-soft {
  0%, 100% { transform: scale(1); opacity: 0.12; }
  50% { transform: scale(1.08); opacity: 0.22; }
}

@keyframes legalhero-rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes legalhero-owl-enter {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes legalhero-mascot-idle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.8deg); }
}

@keyframes legalhero-float-1 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes legalhero-float-2 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes legalhero-float-3 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes legalhero-float-4 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Trust Strip at Bottom of Hero */
.legalhero-trust-strip {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(248, 220, 217, 0.6);
  border-bottom: 1px solid rgba(248, 220, 217, 0.6);
  padding: 16px 0;
  margin-top: 30px;
  animation: legalhero-fadeup 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.legalhero-trust-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.legalhero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--wh-navy);
  transition: transform 0.25s ease, color 0.25s ease;
}

.legalhero-trust-item:hover {
  transform: translateY(-2px);
  color: var(--wh-purple-dark);
}

.legalhero-trust-item svg {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.legalhero-trust-item:hover svg {
  transform: scale(1.18) rotate(5deg);
}

.legalhero-trust-divider {
  width: 1px;
  height: 18px;
  background-color: var(--wh-peach);
}

/* Hero Responsive */
@media (max-width: 1024px) {
  .legalhero-grid {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .legalhero-left {
    flex: 0 0 100%;
    max-width: 100%;
    align-items: center;
  }
  .legalhero-title { font-size: 52px; }
  .legalhero-subtitle { max-width: 640px; }
  .legalhero-right {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .legalhero-mascot-composition { height: 480px; }
  .legalhero-card-1 { left: 10px; }
  .legalhero-card-4 { left: 0px; }
  .legalhero-article-panel { left: 10px; }
  .legalhero-trust-divider { display: none; }
  .legalhero-trust-container {
    justify-content: center;
    gap: 20px 32px;
  }
}

@media (max-width: 640px) {
  .legalhero-section {
    padding-top: 24px;
    min-height: auto;
  }
  .legalhero-title {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.12;
  }
  .legalhero-subtitle { font-size: 16px; }
  .legalhero-price-amount { font-size: 40px; }
  .legalhero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .legalhero-btn-primary { width: 100%; }
  .legalhero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .legalhero-mascot-composition {
    height: 400px;
    max-width: 420px;
  }
  .legalhero-blob-peach { width: 280px; height: 280px; }
  .legalhero-outline-circle,
  .legalhero-dot-pattern,
  .legalhero-card-4 { display: none; }
  .legalhero-card-1 { top: 10px; left: -10px; padding: 8px 12px; }
  .legalhero-card-2 { top: 50px; right: -10px; padding: 8px 12px; }
  .legalhero-card-3 { bottom: 90px; right: -10px; padding: 8px 12px; }
  .legalhero-article-panel { width: 220px; bottom: 10px; left: -10px; padding: 12px 14px; }
  .pill-seo { top: 0px; right: 20px; }
  .pill-ai { bottom: 30px; right: 10px; }
  .legalhero-trust-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ==========================================================================
   SECTION 2: METHODOLOGY STYLES (.legalsect2-)
   ========================================================================== */

.legalsect2-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background-color: var(--wh-white);
  border-top: 1px solid rgba(248, 220, 217, 0.4);
  overflow: hidden;
}

.legalsect2-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.legalsect2-header {
  margin-bottom: 48px;
  max-width: 820px;
}

.legalsect2-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.legalsect2-title {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.16;
  color: var(--wh-dark);
  margin: 0;
  letter-spacing: -1px;
}

.legalsect2-grid {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.legalsect2-left {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legalsect2-statement-box {
  background: var(--wh-soft);
  border-left: 4px solid var(--wh-purple);
  border-radius: 0 18px 18px 0;
  padding: 24px 28px;
  box-shadow: 0 8px 24px rgba(94, 63, 102, 0.05);
}

.legalsect2-statement-lead {
  font-size: 17px;
  color: var(--wh-muted);
  margin: 0 0 6px 0;
  line-height: 1.5;
}

.legalsect2-statement-bold {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--wh-purple-dark);
  margin: 0;
  line-height: 1.3;
}

.legalsect2-body-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--wh-muted);
  margin: 0;
}

.legalsect2-result-box {
  background: linear-gradient(135deg, rgba(248, 220, 217, 0.45), rgba(255, 249, 248, 0.95));
  border: 1px solid var(--wh-peach);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(43, 43, 85, 0.04);
}

.legalsect2-result-icon {
  width: 44px;
  height: 44px;
  background: var(--wh-purple-dark);
  color: var(--wh-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(94, 63, 102, 0.2);
}

.legalsect2-result-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--wh-dark);
  margin: 0;
}

.legalsect2-result-text strong {
  color: var(--wh-purple-dark);
  font-weight: 700;
}

.legalsect2-right {
  flex: 0 0 52%;
  max-width: 52%;
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(43, 43, 85, 0.05);
  transition: none !important;
  animation: none !important;
}

.legalsect2-right:hover {
  transform: none !important;
  box-shadow: 0 10px 30px rgba(43, 43, 85, 0.05) !important;
  border-color: rgba(248, 220, 217, 0.85) !important;
}

.legalsect2-pillars-header {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--wh-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legalsect2-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.legalsect2-pillar-card {
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-radius: 18px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(43, 43, 85, 0.03);
  transition: none !important;
  animation: none !important;
}

.legalsect2-pillar-card:hover {
  transform: none !important;
  border-color: rgba(248, 220, 217, 0.85) !important;
  box-shadow: 0 6px 20px rgba(43, 43, 85, 0.03) !important;
}

.legalsect2-pillar-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--wh-soft);
  border: 1px solid var(--wh-peach-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wh-purple-dark);
  transition: none !important;
}

.legalsect2-pillar-card:hover .legalsect2-pillar-icon-wrap {
  background: var(--wh-soft) !important;
  color: var(--wh-purple-dark) !important;
  border-color: var(--wh-peach-soft) !important;
}

.legalsect2-pillar-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--wh-dark);
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .legalsect2-grid {
    flex-direction: column;
    gap: 40px;
  }
  .legalsect2-left, .legalsect2-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .legalsect2-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .legalsect2-section { padding: 60px 0; }
  .legalsect2-title { font-size: 32px; }
  .legalsect2-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 440px) {
  .legalsect2-pillars-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SECTION 3: DEFINITION & ARTWORK STYLES (.legalsect3-) - DARK PATTERN
   ========================================================================== */

.legalsect3-section {
  position: relative;
  width: 100%;
  padding: 100px 0 110px 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(248, 220, 217, 0.14) 0%, transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(115, 93, 120, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, #151326 0%, #241E3A 50%, #3B2344 100%);
  border-top: 1px solid rgba(248, 220, 217, 0.15);
  border-bottom: 1px solid rgba(248, 220, 217, 0.15);
  overflow: hidden;
}

/* Dark Pattern Mesh Grid Overlay */
.legalsect3-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(248, 220, 217, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.legalsect3-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.legalsect3-grid {
  display: flex;
  gap: 54px;
  align-items: center;
}

.legalsect3-left {
  flex: 0 0 52%;
  max-width: 52%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.legalsect3-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248, 220, 217, 0.12);
  border: 1px solid rgba(248, 220, 217, 0.35);
  color: #F8DCD9;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.legalsect3-title {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 22px 0;
  letter-spacing: -1px;
}

.legalsect3-lead-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(248, 220, 217, 0.2);
  border-left: 4px solid #F8DCD9;
  border-radius: 0 16px 16px 0;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.legalsect3-lead-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #FFFFFF;
  margin: 0;
  font-weight: 600;
}

.legalsect3-body-text {
  font-size: 15px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 24px 0;
}

.legalsect3-includes-block {
  width: 100%;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(248, 220, 217, 0.18);
  border-radius: 20px;
  padding: 22px 24px;
  box-sizing: border-box;
}

.legalsect3-includes-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #F8DCD9;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legalsect3-tags-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}

.legalsect3-tag-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.35;
}

.legalsect3-tag-check {
  width: 20px;
  height: 20px;
  background: rgba(248, 220, 217, 0.2);
  border: 1px solid rgba(248, 220, 217, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F8DCD9;
  flex-shrink: 0;
}

.legalsect3-purpose-box {
  background: linear-gradient(135deg, rgba(248, 220, 217, 0.15) 0%, rgba(115, 93, 120, 0.3) 100%);
  border: 1.5px solid rgba(248, 220, 217, 0.3);
  border-left: 5px solid #F8DCD9;
  border-radius: 18px;
  margin-bottom: 70px;
  padding: 22px 26px;
  color: #FFFFFF;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
  width: 100%;
  box-sizing: border-box;
}

.legalsect3-purpose-sub {
  font-size: 13px;
  font-weight: 700;
  color: #F8DCD9;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 6px 0;
  display: block;
}

.legalsect3-purpose-main {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #FFFFFF;
  margin: 0;
  font-weight: 500;
}

.legalsect3-purpose-main strong {
  color: #F8DCD9;
  font-weight: 800;
}

.legalsect3-right {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.legalsect3-art-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(248, 220, 217, 0.25);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.legalsect3-art-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(248, 220, 217, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: -20px;
  right: -20px;
  z-index: 0;
  filter: blur(2px);
}

.legalsect3-img-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.legalsect3-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.4));
}

.legalsect3-badge-float1 {
  position: absolute;
  top: 35px;
  left: -20px;
  z-index: 4;
  background: rgba(21, 19, 38, 0.85);
  border: 1px solid rgba(248, 220, 217, 0.35);
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  font-weight: 700;
  color: #F8DCD9;
  animation: legalsect3-float 5.5s ease-in-out infinite alternate;
}

.legalsect3-badge-float2 {
  position: absolute;
  bottom: 40px;
  right: -20px;
  z-index: 4;
  background: rgba(21, 19, 38, 0.85);
  border: 1px solid rgba(248, 220, 217, 0.35);
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  font-weight: 700;
  color: #F8DCD9;
  animation: legalsect3-float 6s ease-in-out infinite alternate 1s;
}

@keyframes legalsect3-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

@media (max-width: 1024px) {
  .legalsect3-grid {
    flex-direction: column;
    gap: 40px;
  }
  .legalsect3-left, .legalsect3-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .legalsect3-section { padding: 60px 0; }
  .legalsect3-title { font-size: 32px; }
  .legalsect3-tags-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SECTION 4: WHY LAW FIRMS NEED SPECIALIZED CONTENT (.legalsect4-)
   ========================================================================== */

.legalsect4-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: var(--wh-white);
  border-bottom: 1px solid rgba(248, 220, 217, 0.6);
  overflow: hidden;
}

.legalsect4-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* 2-Column Grid (Equal Height Stretch) */
.legalsect4-grid {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 36px;
}

/* Left Column (50%) */
.legalsect4-left {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.legalsect4-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.legalsect4-title {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--wh-dark);
  margin: 0 0 18px 0;
  letter-spacing: -1px;
}

.legalsect4-lead-box {
  background: var(--wh-soft);
  border-left: 4px solid var(--wh-purple);
  border-radius: 0 16px 16px 0;
  padding: 18px 22px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(43, 43, 85, 0.04);
}

.legalsect4-lead-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--wh-purple-dark);
  margin: 0;
  font-weight: 700;
}

.legalsect4-body-text {
  font-size: 15px;
  line-height: 1.68;
  color: var(--wh-muted);
  margin: 0 0 18px 0;
}

.legalsect4-alert-box {
  background: linear-gradient(135deg, rgba(248, 220, 217, 0.5), rgba(255, 249, 248, 0.95));
  border: 1px solid var(--wh-peach);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.legalsect4-alert-icon {
  width: 36px;
  height: 36px;
  background: var(--wh-purple-dark);
  color: var(--wh-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect4-alert-text {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--wh-purple-dark);
  margin: 0;
  line-height: 1.4;
}

.legalsect4-solution-box {
  background: var(--wh-white);
  border: 1.5px solid var(--wh-purple);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 8px 24px rgba(115, 93, 120, 0.06);
}

.legalsect4-solution-text {
  font-size: 15px;
  line-height: 1.58;
  color: var(--wh-dark);
  margin: 0;
  font-weight: 600;
}

/* Right Column (50% Equal Height Stretch Card) */
.legalsect4-right {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.legalsect4-hub-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F8 100%);
  border: 1px solid rgba(248, 220, 217, 0.9);
  border-radius: 26px;
  padding: 26px 24px;
  box-shadow: 0 16px 40px rgba(43, 43, 85, 0.06);
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.legalsect4-hub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--wh-peach);
}

.legalsect4-hub-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wh-purple-dark);
  background: var(--wh-peach);
  padding: 5px 12px;
  border-radius: 30px;
}

.legalsect4-hub-intro {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--wh-dark);
  margin: 0 0 18px 0;
  line-height: 1.45;
}

.legalsect4-cluster-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  flex-grow: 1;
  align-content: space-between;
}

.legalsect4-node-item {
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(43, 43, 85, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.legalsect4-node-item:hover {
  transform: translateY(-3px);
  border-color: var(--wh-purple);
  box-shadow: 0 10px 24px rgba(115, 93, 120, 0.12);
}

.legalsect4-node-dot {
  width: 22px;
  height: 22px;
  background: var(--wh-peach-soft);
  color: var(--wh-purple-dark);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.legalsect4-node-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--wh-dark);
  line-height: 1.35;
}

/* Conclusion Banner (Full Width at Bottom) */
.legalsect4-conclusion-box {
  background: linear-gradient(135deg, var(--wh-navy), var(--wh-purple-dark));
  border-radius: 22px;
  padding: 26px 32px;
  color: var(--wh-white);
  box-shadow: 0 16px 36px rgba(43, 43, 85, 0.18);
  width: 100%;
  box-sizing: border-box;
  margin-bottom:100px;
}

.legalsect4-conclusion-sub {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 8px 0;
}

.legalsect4-conclusion-main {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--wh-peach);
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .legalsect4-grid {
    flex-direction: column;
    gap: 40px;
  }
  .legalsect4-left, .legalsect4-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .legalsect4-section { padding: 60px 0; }
  .legalsect4-title { font-size: 32px; }
  .legalsect4-cluster-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SECTION 5: HOW LEGAL CONTENT HELPS LAW FIRMS COMPETE IN SEARCH (.legalsect5-)
   ========================================================================== */

.legalsect5-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
    background: radial-gradient(circle at 85% 25%, rgba(248, 220, 217, 0.45), transparent 40%), radial-gradient(circle at 10% 75%, rgba(115, 93, 120, 0.06), transparent 35%), var(--wh-soft);  border-bottom: 1px solid rgba(248, 220, 217, 0.6);
  overflow: hidden;
}

.legalsect5-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.legalsect5-header {
  margin-bottom: 36px;
  max-width: 860px;
}

.legalsect5-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.legalsect5-title {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--wh-dark);
  margin: 0 0 18px 0;
  letter-spacing: -1px;
}

.legalsect5-intro-text {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--wh-muted);
  margin: 0 0 12px 0;
}

.legalsect5-intro-subhead {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--wh-purple-dark);
  margin: 18px 0 0 0;
}

/* 4 Main Pillar Cards Grid (2x2 Grid) */
.legalsect5-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.legalsect5-card {
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 6px 20px rgba(43, 43, 85, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legalsect5-card:hover {
  transform: translateY(-4px);
  border-color: var(--wh-purple);
  box-shadow: 0 14px 32px rgba(115, 93, 120, 0.12);
}

.legalsect5-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legalsect5-card-icon {
  width: 40px;
  height: 40px;
  background: var(--wh-soft);
  border: 1px solid var(--wh-peach-soft);
  color: var(--wh-purple-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect5-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--wh-dark);
  margin: 0;
}

.legalsect5-card-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--wh-muted);
  margin: 0;
}

.legalsect5-intent-example {
  background: var(--wh-soft);
  border-left: 3px solid var(--wh-purple);
  padding: 12px 16px;
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--wh-purple-dark);
  font-weight: 600;
  margin: 0;
}

.legalsect5-intent-takeaway {
  font-weight: 700;
  color: var(--wh-dark);
  font-size: 14.5px;
  margin: 0;
}

/* On-Page SEO Light Executive Card */
.legalsect5-seo-box {
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.9);
  border-radius: 22px;
  padding: 32px 30px;
  box-shadow: 0 10px 30px rgba(43, 43, 85, 0.04);
  margin-bottom:100px;
}

.legalsect5-seo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.legalsect5-seo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--wh-dark);
  margin: 0;
}

.legalsect5-seo-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wh-purple-dark);
  background: var(--wh-peach);
  padding: 5px 12px;
  border-radius: 30px;
}

.legalsect5-seo-lead {
  font-size: 15px;
  font-weight: 700;
  color: var(--wh-purple-dark);
  margin: 0 0 20px 0;
}

.legalsect5-seo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.legalsect5-seo-pill-tag {
  background: var(--wh-soft);
  border: 1px solid rgba(248, 220, 217, 0.85);
  color: var(--wh-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.legalsect5-seo-pill-tag:hover {
  background: var(--wh-white);
  border-color: var(--wh-purple);
  transform: translateY(-2px);
}

.legalsect5-seo-check-icon {
  width: 18px;
  height: 18px;
  background: var(--wh-peach);
  color: var(--wh-purple-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.legalsect5-seo-rule {
  background: var(--wh-soft);
  border-left: 4px solid var(--wh-purple-dark);
  border-radius: 0 14px 14px 0;
  padding: 16px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--wh-dark);
  margin: 0;
}

@media (max-width: 1024px) {
  .legalsect5-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .legalsect5-section { padding: 60px 0; }
  .legalsect5-title { font-size: 32px; }
  .legalsect5-seo-box { padding: 24px 20px; }
}

/* ==========================================================================
   SECTION 6: LEGAL CONTENT FOR GOOGLE AI OVERVIEWS & AI SEARCH (.legalsect6-)
   ========================================================================== */

.legalsect6-section {
  position: relative;
  width: 100%;
  padding: 95px 0;
  background: linear-gradient(135deg, #181528 0%, #2A243D 50%, #422648 100%);
  color: var(--wh-white);
  overflow: hidden;
}

/* Ambient Background Radial Glows */
.legalsect6-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(248, 220, 217, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.legalsect6-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.legalsect6-header {
  margin-bottom: 40px;
  max-width: 880px;
}

.legalsect6-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248, 220, 217, 0.15);
  border: 1px solid rgba(248, 220, 217, 0.3);
  color: var(--wh-peach);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.legalsect6-title {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--wh-white);
  margin: 0 0 22px 0;
  letter-spacing: -1px;
}

/* Overview Narrative Callout Box - 2-Column Split Banner with Image Showcase Box */
.legalsect6-intro-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(248, 220, 217, 0.2);
  border-left: 4px solid var(--wh-peach);
  border-radius: 0 28px 28px 0;
  padding: 40px 48px;
  margin-bottom: 48px;
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  box-sizing: border-box;
}

.legalsect6-intro-left {
  flex: 0 0 52%;
  max-width: 52%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.legalsect6-intro-right {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legalsect6-mascot-box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.legalsect6-mascot-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(248, 220, 217, 0.28) 0%, rgba(20, 20, 35, 0) 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  filter: blur(12px);
}

.legalsect6-mascot-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: legalsect6-mascot-float 6s ease-in-out infinite alternate;
}

@keyframes legalsect6-mascot-float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.legalsect6-mascot-tag {
  position: relative;
  z-index: 3;
  margin-top: 18px;
  background: rgba(248, 220, 217, 0.14);
  border: 1.5px solid rgba(248, 220, 217, 0.35);
  color: var(--wh-peach);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .legalsect6-intro-card {
    flex-direction: column;
    padding: 28px 24px;
  }
  .legalsect6-intro-left, .legalsect6-intro-right {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.legalsect6-intro-text1 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--wh-peach);
  margin: 0 0 10px 0;
}

.legalsect6-intro-text2 {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 14px 0;
}

.legalsect6-truth-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(248, 220, 217, 0.15);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.legalsect6-approach-badge {
  background: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 12px;
  display: inline-block;
}

/* 4 Modules Layout */
.legalsect6-modules-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

/* Module 1: Query Matrix Showcase Card */
.legalsect6-module-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(248, 220, 217, 0.2);
  border-radius: 24px;
  padding: 34px 32px;
  backdrop-filter: blur(12px);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.legalsect6-module-card:hover {
  transform: translateY(-3px);
  border-color: rgba(248, 220, 217, 0.45);
}

.legalsect6-module-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.legalsect6-module-icon {
  width: 42px;
  height: 42px;
  background: rgba(248, 220, 217, 0.15);
  border: 1px solid rgba(248, 220, 217, 0.3);
  color: var(--wh-peach);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect6-module-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--wh-white);
  margin: 0;
}

.legalsect6-module-intro {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px 0;
}

/* Conversational User Questions Matrix Grid (3 Columns) */
.legalsect6-queries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.legalsect6-query-chip {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(248, 220, 217, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--wh-peach);
  line-height: 1.4;
  transition: all 0.2s ease;
}

.legalsect6-query-chip:hover {
  background: rgba(248, 220, 217, 0.16);
  border-color: var(--wh-peach);
  transform: translateY(-2px);
}

.legalsect6-query-bullet {
  color: var(--wh-peach);
  font-weight: 800;
  font-size: 15px;
}

.legalsect6-module-takeaway {
  background: rgba(248, 220, 217, 0.12);
  border-left: 3px solid var(--wh-peach);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--wh-white);
  font-weight: 600;
  margin: 0;
}

/* 3-Column Pillars Row for Depth, Reliability & People-First */
.legalsect6-pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.legalsect6-pillar-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(248, 220, 217, 0.2);
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.legalsect6-pillar-box:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 220, 217, 0.45);
}

.legalsect6-pillar-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Final Objective Hero Banner */
.legalsect6-objective-banner {
  background: linear-gradient(135deg, var(--wh-peach), #FDF2F0);
  border-radius: 22px;
  padding: 28px 34px;
  color: var(--wh-purple-dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  margin-bottom:100px;
}

.legalsect6-objective-text {
  font-family: 'Outfit', sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  color: var(--wh-purple-dark);
}

@media (max-width: 1024px) {
  .legalsect6-queries-grid { grid-template-columns: repeat(2, 1fr); }
  .legalsect6-pillars-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .legalsect6-section { padding: 60px 0; }
  .legalsect6-title { font-size: 30px; }
  .legalsect6-queries-grid { grid-template-columns: 1fr; }
  .legalsect6-module-card { padding: 24px 20px; }
}

/* ==========================================================================
   SECTION 7: OUR LEGAL CONTENT WRITING PROCESS (.legalsect7-)
   ========================================================================== */

.legalsect7-section {
  position: relative;
  width: 100%;
  padding: 95px 0 105px 0;
  background: 
    radial-gradient(circle at 85% 15%, rgba(248, 220, 217, 0.5), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(115, 93, 120, 0.08), transparent 40%),
    var(--wh-soft);
  border-bottom: 1px solid rgba(248, 220, 217, 0.6);
  overflow: hidden;
}

.legalsect7-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Header & 3D Mascot Showcase Banner Card */
.legalsect7-banner-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F7 100%);
  border: 1px solid rgba(248, 220, 217, 0.9);
  border-radius: 28px;
  padding: 36px 42px;
  margin-bottom: 50px;
  box-shadow: 0 16px 40px rgba(43, 43, 85, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.legalsect7-banner-left {
  flex: 1;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.legalsect7-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(94, 63, 102, 0.06);
}

.legalsect7-title {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--wh-dark);
  margin: 0 0 16px 0;
  letter-spacing: -1px;
}

.legalsect7-title-highlight {
  background: linear-gradient(135deg, var(--wh-purple-dark) 0%, var(--wh-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legalsect7-banner-desc {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--wh-muted);
  margin: 0;
}

.legalsect7-banner-desc strong {
  color: var(--wh-purple-dark);
  font-weight: 700;
}

.legalsect7-banner-right {
  flex: 0 0 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.legalsect7-art-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(248, 220, 217, 0.75) 0%, rgba(253, 242, 240, 0.05) 75%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.legalsect7-banner-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(43, 43, 85, 0.12));
  animation: legalsect7-float 6s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes legalsect7-float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* 2-Column Balanced Process Grid */
.legalsect7-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  box-sizing: border-box;
}

/* Process Step Card */
.legalsect7-card {
  background: var(--wh-white);
  border: 1.5px solid rgba(248, 220, 217, 0.9);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0 8px 24px rgba(43, 43, 85, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.legalsect7-card:hover {
  transform: translateY(-5px);
  border-color: var(--wh-purple);
  box-shadow: 0 18px 42px rgba(115, 93, 120, 0.14);
}

/* Full Width Card for Step 7 */
.legalsect7-card.full-width {
  grid-column: span 2;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFDFD 100%);
  border-color: rgba(115, 93, 120, 0.25);
}

.legalsect7-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.legalsect7-card-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legalsect7-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--wh-peach) 0%, #FFF0EE 100%);
  border: 1px solid rgba(248, 220, 217, 0.9);
  color: var(--wh-purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(94, 63, 102, 0.08);
}

.legalsect7-icon-badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--wh-purple-dark);
}

.legalsect7-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--wh-purple-dark);
  background: var(--wh-peach);
  padding: 4px 14px;
  border-radius: 20px;
}

.legalsect7-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--wh-dark);
  margin: 0;
  line-height: 1.25;
}

.legalsect7-card-lead {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--wh-purple-dark);
  margin: 0;
}

.legalsect7-card-body {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--wh-muted);
  margin: 0;
}

/* Modern Bullet Tag Pills */
.legalsect7-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.legalsect7-tag-item {
  background: var(--wh-soft);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--wh-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(43, 43, 85, 0.02);
}

.legalsect7-tag-item:hover {
  border-color: var(--wh-purple);
  background: var(--wh-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(94, 63, 102, 0.1);
}

.legalsect7-tag-dot {
  width: 7px;
  height: 7px;
  background: var(--wh-purple-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Key Takeaway Callout Box */
.legalsect7-card-subline {
  background: linear-gradient(135deg, rgba(248, 220, 217, 0.25) 0%, rgba(255, 249, 248, 0.9) 100%);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-left: 4px solid var(--wh-purple-dark);
  padding: 14px 18px;
  border-radius: 0 14px 14px 0;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--wh-purple-dark);
  margin: 4px 0 0 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.legalsect7-subline-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Bottom CTA Banner */
.legalsect7-bottom-cta-banner {
  margin-top: 50px;
  background: linear-gradient(135deg, var(--wh-purple-dark) 0%, #45294E 100%);
  border-radius: 26px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 18px 44px rgba(94, 63, 102, 0.25);
  box-sizing: border-box;
}

.legalsect7-cta-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legalsect7-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.legalsect7-cta-desc {
  font-size: 16px;
  color: var(--wh-peach);
  margin: 0;
}

.legalsect7-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  height: 52px;
  padding: 0 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.legalsect7-cta-btn:hover {
  background-color: #FFFFFF;
  color: var(--wh-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .legalsect7-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 28px;
  }
  .legalsect7-banner-left {
    align-items: center;
    max-width: 100%;
  }
  .legalsect7-grid {
    grid-template-columns: 1fr;
  }
  .legalsect7-card.full-width {
    grid-column: span 1;
  }
  .legalsect7-bottom-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .legalsect7-section { padding: 60px 0; }
  .legalsect7-title { font-size: 32px; }
  .legalsect7-banner-card { padding: 24px 20px; }
  .legalsect7-card { padding: 24px 20px; }
  .legalsect7-cta-title { font-size: 22px; }
  .legalsect7-cta-btn { width: 100%; justify-content: center; }
}
/* ==========================================================================
   SECTION 8: WHAT MAKES WRITOHOLICS LEGAL CONTENT DIFFERENT? (.legalsect8-)
   ========================================================================== */

/* ==========================================================================
   SECTION 8: WHAT MAKES WRITOHOLICS LEGAL CONTENT DIFFERENT? (.legalsect8-)
   ========================================================================== */

.legalsect8-section {
  position: relative;
  width: 100%;
  padding: 100px 0 110px 0;
  background: linear-gradient(145deg, #1C1322 0%, #2A1B30 50%, #150D1A 100%);
  color: #FFFFFF;
  border-top: 1px solid rgba(248, 220, 217, 0.15);
  border-bottom: 1px solid rgba(248, 220, 217, 0.15);
  overflow: hidden;
}

.legalsect8-glow-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.legalsect8-glow-top-left {
  position: absolute;
  top: -12%;
  left: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(248, 220, 217, 0.12) 0%, transparent 65%);
  filter: blur(50px);
}

.legalsect8-glow-bottom-right {
  position: absolute;
  bottom: -12%;
  right: -8%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(94, 63, 102, 0.4) 0%, transparent 65%);
  filter: blur(60px);
}

.legalsect8-dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(248, 220, 217, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}

.legalsect8-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Header */
.legalsect8-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px auto;
}

.legalsect8-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248, 220, 217, 0.1);
  border: 1px solid rgba(248, 220, 217, 0.25);
  color: #F8DCD9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.legalsect8-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F8DCD9;
  box-shadow: 0 0 8px #F8DCD9;
}

.legalsect8-title {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  letter-spacing: -0.6px;
}

.legalsect8-title-highlight {
  background: linear-gradient(135deg, #F8DCD9 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legalsect8-header-glow-line {
  width: 80px;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, #F8DCD9, transparent);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(248, 220, 217, 0.6);
}

/* 2-Column Grid Layout (Card 01 Full Width Row 1, Cards 02-05 in 2x2 Rows) */
.legalsect8-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.legalsect8-card-01 {
  grid-column: 1 / -1;
}

@media (max-width: 992px) {
  .legalsect8-cards-grid {
    grid-template-columns: 1fr;
  }
  .legalsect8-card-01 {
    grid-column: span 1;
  }
}

/* Image Card Styling (Row 1 Left) */
.legalsect8-image-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 380px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(248, 220, 217, 0.03) 100%);
  border: 1px solid rgba(248, 220, 217, 0.22);
  border-radius: 24px;
  padding: 30px;
  overflow: hidden;
  text-align: center;
}

.legalsect8-image-card-bg-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(248, 220, 217, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.legalsect8-image-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.legalsect8-img-card-mascot {
  max-width: 250px;
  max-height: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.4));
  animation: legalsect8-mascot-float 5s ease-in-out infinite alternate;
}

@keyframes legalsect8-mascot-float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.legalsect8-image-card-badge {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  background: rgba(248, 220, 217, 0.12);
  border: 1px solid rgba(248, 220, 217, 0.3);
  color: #F8DCD9;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 6px 18px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

/* Base Card Styling */
.legalsect8-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(248, 220, 217, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 32px 36px;
  box-sizing: border-box;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.legalsect8-card:hover {
  transform: translateY(-3px);
  border-color: rgba(248, 220, 217, 0.38);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(248, 220, 217, 0.12);
}

.legalsect8-bg-num {
  position: absolute;
  right: 20px;
  top: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
  color: rgba(248, 220, 217, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.legalsect8-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.legalsect8-card-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.legalsect8-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(248, 220, 217, 0.12);
  border: 1px solid rgba(248, 220, 217, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F8DCD9;
  flex-shrink: 0;
}

.legalsect8-card-num-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #1C1322;
  background: #F8DCD9;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.legalsect8-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.3px;
}

.legalsect8-card-body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 2;
}

.legalsect8-card-body p {
  margin: 0 0 12px 0;
}

.legalsect8-card-body p:last-child {
  margin-bottom: 0;
}

.legalsect8-lead-text {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.5;
}

/* Pills / Tags */
.legalsect8-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

.legalsect8-pill {
  background: rgba(248, 220, 217, 0.08);
  border: 1px solid rgba(248, 220, 217, 0.2);
  color: #F8DCD9;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.legalsect8-pill:hover {
  background: rgba(248, 220, 217, 0.15);
  border-color: rgba(248, 220, 217, 0.35);
}

/* CARD 01 - FEATURE CARD */
.legalsect8-card-01 {
  background: linear-gradient(135deg, rgba(248, 220, 217, 0.10) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(248, 220, 217, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.legalsect8-card-01 .legalsect8-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.legalsect8-card-01 .legalsect8-card-title {
  font-size: 28px;
  line-height: 1.25;
}

.legalsect8-feature-main-layout {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 20px;
  align-items: center;
  margin: 10px 0;
}

.legalsect8-owl-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.legalsect8-owl-container::before {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(248, 220, 217, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.legalsect8-owl-mascot {
  max-width: 160px;
  max-height: 175px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
  filter: contrast(1.08) brightness(1.02);
  transition: transform 0.3s ease;
}

.legalsect8-card-01:hover .legalsect8-owl-mascot {
  transform: scale(1.04) translateY(-2px);
}

.legalsect8-metric-box {
  background: rgba(248, 220, 217, 0.12);
  border: 1px solid rgba(248, 220, 217, 0.3);
  border-radius: 16px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.legalsect8-metric-val {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #F8DCD9;
  line-height: 1;
}

.legalsect8-metric-lbl {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legalsect8-insight-quote {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #F8DCD9;
  border-radius: 0 12px 12px 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
}

/* CARD 02 - TRUST */
.legalsect8-stat-hero {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 12px 0 16px 0;
  padding: 14px 18px;
  background: rgba(248, 220, 217, 0.06);
  border: 1px solid rgba(248, 220, 217, 0.18);
  border-radius: 16px;
}

.legalsect8-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: #F8DCD9;
  line-height: 1;
  letter-spacing: -1px;
}

.legalsect8-stat-label {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

/* CARD 03 - WRITING + SEO (WIDE) */
.legalsect8-flow-seo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0;
  padding: 18px 24px;
  background: rgba(21, 13, 26, 0.6);
  border: 1px solid rgba(248, 220, 217, 0.15);
  border-radius: 16px;
}

.legalsect8-flow-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(248, 220, 217, 0.08);
  border: 1px solid rgba(248, 220, 217, 0.2);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  flex: 1;
  text-align: center;
}

.legalsect8-flow-step-highlight {
  background: linear-gradient(135deg, rgba(248, 220, 217, 0.22) 0%, rgba(94, 63, 102, 0.35) 100%);
  border-color: #F8DCD9;
  color: #F8DCD9;
  box-shadow: 0 0 14px rgba(248, 220, 217, 0.15);
}

.legalsect8-flow-arrow {
  color: #F8DCD9;
  font-size: 16px;
  opacity: 0.7;
  flex-shrink: 0;
}

/* CARD 04 - AI SEARCH */
.legalsect8-ai-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.legalsect8-ai-node {
  background: rgba(248, 220, 217, 0.06);
  border: 1px solid rgba(248, 220, 217, 0.18);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #F8DCD9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  position: relative;
}

.legalsect8-ai-node:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(248, 220, 217, 0.6);
  font-size: 13px;
  z-index: 3;
}

.legalsect8-peach-box {
  background: linear-gradient(135deg, rgba(248, 220, 217, 0.12) 0%, rgba(94, 63, 102, 0.18) 100%);
  border: 1px solid rgba(248, 220, 217, 0.28);
  border-left: 3px solid #F8DCD9;
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.legalsect8-peach-box svg {
  flex-shrink: 0;
  stroke: #F8DCD9;
  margin-top: 2px;
}

/* CARD 05 - HUMAN EDITING (WIDE) */
.legalsect8-edit-compare {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0;
  padding: 18px 24px;
  background: rgba(21, 13, 26, 0.6);
  border: 1px solid rgba(248, 220, 217, 0.18);
  border-radius: 16px;
}

.legalsect8-compare-box {
  flex: 1;
  background: rgba(248, 220, 217, 0.06);
  border: 1px solid rgba(248, 220, 217, 0.18);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
}

.legalsect8-compare-box-result {
  flex: 1.25;
  background: linear-gradient(135deg, rgba(248, 220, 217, 0.18) 0%, rgba(94, 63, 102, 0.35) 100%);
  border: 1px solid #F8DCD9;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: #F8DCD9;
  box-shadow: 0 0 16px rgba(248, 220, 217, 0.15);
}

.legalsect8-compare-op {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #F8DCD9;
  flex-shrink: 0;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .legalsect8-section {
    padding: 80px 0;
  }
  .legalsect8-title {
    font-size: 34px;
  }
  .legalsect8-flow-seo,
  .legalsect8-edit-compare {
    flex-direction: column;
    gap: 10px;
  }
  .legalsect8-flow-step,
  .legalsect8-compare-box,
  .legalsect8-compare-box-result {
    width: 100%;
    box-sizing: border-box;
  }
  .legalsect8-flow-arrow,
  .legalsect8-compare-op {
    transform: rotate(90deg);
  }
  .legalsect8-ai-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .legalsect8-ai-node:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .legalsect8-section {
    padding: 60px 0;
  }
  .legalsect8-title {
    font-size: 28px;
  }
  .legalsect8-eyebrow {
    font-size: 11px;
    padding: 5px 14px;
  }
  .legalsect8-card {
    padding: 24px 20px;
    border-radius: 18px;
  }
  .legalsect8-card-01 .legalsect8-card-title {
    font-size: 22px;
  }
  .legalsect8-feature-main-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .legalsect8-owl-container {
    margin-top: 16px;
  }
  .legalsect8-owl-mascot {
    max-width: 130px;
  }
  .legalsect8-metric-box {
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
  .legalsect8-ai-flow {
    grid-template-columns: 1fr;
  }
  .legalsect8-stat-hero {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

/* ==========================================================================
   SECTION 9: WHAT YOU GET FOR $300/MONTH (.legalsect9-)
   ========================================================================== */

.legalsect9-section {
  position: relative;
  width: 100%;
  padding: 100px 0 110px 0;
  background: 
    radial-gradient(circle at 85% 25%, rgba(248, 220, 217, 0.45), transparent 40%),
    radial-gradient(circle at 10% 75%, rgba(115, 93, 120, 0.06), transparent 35%),
    var(--wh-soft);
  border-top: 1px solid rgba(248, 220, 217, 0.6);
  overflow: hidden;
}

.legalsect9-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Header */
.legalsect9-header {
  margin-bottom: 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legalsect9-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(94, 63, 102, 0.06);
}

.legalsect9-title {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--wh-dark);
  margin: 0;
  letter-spacing: -1px;
}

.legalsect9-title-highlight {
  color: var(--wh-purple);
}

/* TOP HERO CARD (FULL WIDTH: LEFT CONTENT + RIGHT IMAGE) */
.legalsect9-hero-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F8 100%);
  border: 1.5px solid rgba(248, 220, 217, 0.95);
  border-top: 4px solid var(--wh-purple-dark);
  border-radius: 30px;
  padding: 44px 48px;
  margin-bottom: 32px;
  box-shadow: 0 20px 50px rgba(94, 63, 102, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.legalsect9-hero-card-glow1 {
  position: absolute;
  top: -80px;
  right: 15%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(248, 220, 217, 0.45) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.legalsect9-hero-left {
  flex: 1;
  max-width: 58%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.legalsect9-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--wh-dark);
  margin: 0 0 10px 0;
  line-height: 1.18;
  letter-spacing: -0.5px;
}

.legalsect9-hero-subhead {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--wh-purple-dark);
  margin: 0 0 14px 0;
}

.legalsect9-hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.legalsect9-hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--wh-muted);
  margin: 0;
}

.legalsect9-hero-right {
  flex: 0 0 380px;
  max-width: 42%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.legalsect9-hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(248, 220, 217, 0.85) 0%, rgba(255, 249, 248, 0) 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.legalsect9-hero-mascot-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 16px 32px rgba(43, 43, 85, 0.16));
  animation: legalsect9-float-mascot 6s ease-in-out infinite alternate;
}

@keyframes legalsect9-float-mascot {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* 3-COLUMN FEATURE CARDS GRID (3 PER ROW) */
.legalsect9-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.legalsect9-card {
  background: #FFFFFF;
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-radius: 24px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(43, 43, 85, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.legalsect9-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--wh-purple-dark), var(--wh-purple));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.legalsect9-card:hover {
  transform: translateY(-6px);
  border-color: var(--wh-purple);
  box-shadow: 0 20px 48px rgba(94, 63, 102, 0.14);
}

.legalsect9-card:hover::before {
  opacity: 1;
}

.legalsect9-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--wh-peach) 0%, #FFF0EE 100%);
  border: 1px solid rgba(248, 220, 217, 0.9);
  color: var(--wh-purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(94, 63, 102, 0.08);
}

.legalsect9-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--wh-purple-dark);
}

.legalsect9-card-content {
  flex: 1;
}

.legalsect9-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--wh-dark);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.legalsect9-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--wh-muted);
  margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .legalsect9-hero-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .legalsect9-hero-left {
    max-width: 100%;
    align-items: center;
  }
  .legalsect9-hero-right {
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
  }
  .legalsect9-3col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .legalsect9-section { padding: 60px 0; }
  .legalsect9-title { font-size: 32px; }
  .legalsect9-grid {
    flex-direction: column;
    gap: 40px;
  }
  .legalsect9-left, .legalsect9-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .legalsect9-mascot-img {
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .legalsect9-section { padding: 60px 0; }
  .legalsect9-title { font-size: 32px; }
  .legalsect9-cards-inner-grid {
    grid-template-columns: 1fr;
  }
  .legalsect9-card-hero {
    grid-column: span 1;
  }
}

/* ==========================================================================
   SECTION 10: ENHANCED LIGHT SHOWCASE STYLES (.legalsect10-)
   ========================================================================== */

.legalsect10-section {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  padding: 105px 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* Background Floating Dot Pattern */
.legalsect10-bg-pattern {
  display: none;
}

.legalsect10-container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.legalsect10-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legalsect10-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(94, 63, 102, 0.08);
}

.legalsect10-pill-dot {
  width: 7px;
  height: 7px;
  background-color: var(--wh-purple-dark);
  border-radius: 50%;
  animation: legalsect10-pulse 2s infinite ease-in-out;
}

@keyframes legalsect10-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.legalsect10-title {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--wh-dark);
  margin: 0 0 14px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.legalsect10-title-highlight {
  color: var(--wh-purple);
  position: relative;
  display: inline-block;
}

.legalsect10-title-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--wh-peach);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.8;
}

.legalsect10-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--wh-purple-dark);
  margin: 0;
}

/* MAIN WRAPPER (40% LEFT HERO + 60% RIGHT FEATURE CARDS) */
.legalsect10-wrapper {
  display: flex;
  gap: 36px;
  align-items: stretch;
  margin-bottom: 48px;
}

/* LEFT COLUMN HERO CARD */
.legalsect10-left-hero {
  flex: 0 0 42%;
  max-width: 42%;
  background: #FFFFFF;
  border: 1.5px solid var(--wh-peach);
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: 0 16px 44px rgba(43, 43, 85, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.legalsect10-left-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wh-purple-dark), var(--wh-purple), var(--wh-peach));
}

.legalsect10-left-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(94, 63, 102, 0.12);
  border-color: var(--wh-purple);
}

.legalsect10-hero-top {
  position: relative;
  z-index: 2;
}

.legalsect10-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(115, 93, 120, 0.08);
  color: var(--wh-purple-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.legalsect10-offer-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--wh-dark);
  margin: 0 0 20px 0;
}

.legalsect10-offer-text strong {
  color: var(--wh-purple-dark);
  font-weight: 800;
}

.legalsect10-mascot-box {
  position: relative;
  width: 100%;
  margin: 16px 0 20px 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(43, 43, 85, 0.1);
  display: block;
}

.legalsect10-mascot-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.legalsect10-left-hero:hover .legalsect10-mascot-img {
  transform: scale(1.03);
}

.legalsect10-mascot-overlay-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--wh-peach);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--wh-purple-dark);
  box-shadow: 0 4px 14px rgba(43, 43, 85, 0.12);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.legalsect10-hero-footer-chip {
  background: linear-gradient(135deg, var(--wh-soft) 0%, #FFF5F4 100%);
  border: 1px solid var(--wh-peach);
  border-radius: 18px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(94, 63, 102, 0.04);
}

.legalsect10-chip-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--wh-purple-dark);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(94, 63, 102, 0.2);
}

.legalsect10-chip-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--wh-purple-dark);
  margin: 0;
}

/* RIGHT COLUMN: STAGGERED FEATURE CARDS (58%) */
.legalsect10-right-features {
  flex: 1 1 58%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legalsect10-feature-card {
  background: #FFFFFF;
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 10px 28px rgba(43, 43, 85, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.legalsect10-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--wh-purple-dark), var(--wh-purple));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.legalsect10-feature-card:hover {
  transform: translateX(8px);
  border-color: var(--wh-purple);
  box-shadow: 0 18px 40px rgba(94, 63, 102, 0.12);
}

.legalsect10-feature-card:hover::before {
  opacity: 1;
}

.legalsect10-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.legalsect10-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.legalsect10-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--wh-peach) 0%, #FFF0EE 100%);
  border: 1px solid rgba(248, 220, 217, 0.9);
  color: var(--wh-purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(94, 63, 102, 0.06);
  transition: transform 0.35s ease;
}

.legalsect10-feature-card:hover .legalsect10-icon-badge {
  transform: scale(1.08);
}

.legalsect10-icon-badge svg {
  width: 22px;
  height: 22px;
  stroke: var(--wh-purple-dark);
}

.legalsect10-feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--wh-dark);
  margin: 0;
  line-height: 1.3;
}

.legalsect10-step-pill {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--wh-purple);
  background: var(--wh-soft);
  border: 1px solid var(--wh-peach);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.legalsect10-feature-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--wh-muted);
  margin: 0;
}

.legalsect10-feature-desc p {
  margin: 0 0 10px 0;
}

.legalsect10-feature-desc p:last-child {
  margin-bottom: 0;
}

/* Feature 2 List Chips */
.legalsect10-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.legalsect10-list-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wh-soft);
  border: 1px solid var(--wh-peach);
  padding: 7px 15px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--wh-purple-dark);
  transition: all 0.3s ease;
}

.legalsect10-list-chip:hover {
  background: var(--wh-purple-dark);
  color: #FFFFFF;
  border-color: var(--wh-purple-dark);
}

.legalsect10-list-chip-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--wh-purple-dark);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  transition: background 0.3s ease;
}

.legalsect10-list-chip:hover .legalsect10-list-chip-dot {
  background: var(--wh-peach);
  color: var(--wh-purple-dark);
}

/* BOTTOM GUARANTEE RIBBON */
.legalsect10-bottom-ribbon {
  background: linear-gradient(135deg, var(--wh-navy) 0%, var(--wh-purple-dark) 100%);
  border: 1px solid rgba(248, 220, 217, 0.3);
  border-radius: 22px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 16px 40px rgba(43, 43, 85, 0.16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legalsect10-bottom-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--wh-peach), transparent);
}

.legalsect10-ribbon-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(248, 220, 217, 0.2);
  border: 1.5px solid rgba(248, 220, 217, 0.4);
  color: var(--wh-peach);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(248, 220, 217, 0.2);
}

.legalsect10-ribbon-text {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.2px;
}

/* RESPONSIVE STYLING */
@media (max-width: 1024px) {
  .legalsect10-wrapper {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .legalsect10-section { padding: 60px 0; }
  .legalsect10-title { font-size: 32px; }
  .legalsect10-subtitle { font-size: 18px; }
  .legalsect10-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .legalsect10-feature-card {
    padding: 22px 20px;
  }
  .legalsect10-bottom-ribbon {
    flex-direction: column;
    padding: 20px 16px;
    gap: 10px;
  }
  .legalsect10-ribbon-text { font-size: 17px; }
}

/* ==========================================================================
   SECTION 11: FULL-WIDTH ELEGANT CONTENT SHOWCASE (.legalsect11-) - DARK PATTERN
   ========================================================================== */

.legalsect11-section {
  position: relative;
  width: 100%;
  padding: 105px 0 115px 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(248, 220, 217, 0.14) 0%, transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(115, 93, 120, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, #151326 0%, #241E3A 50%, #3B2344 100%);
  box-sizing: border-box;
  overflow: hidden;
  border-top: 1px solid rgba(248, 220, 217, 0.15);
  border-bottom: 1px solid rgba(248, 220, 217, 0.15);
}

/* Dark Pattern Mesh Grid Overlay */
.legalsect11-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(248, 220, 217, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.legalsect11-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* CENTERED SECTION HEADER */
.legalsect11-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legalsect11-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248, 220, 217, 0.12);
  border: 1px solid rgba(248, 220, 217, 0.35);
  color: #F8DCD9;
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.legalsect11-pill-dot {
  width: 6px;
  height: 6px;
  background-color: #F8DCD9;
  border-radius: 50%;
  box-shadow: 0 0 10px #F8DCD9;
}

.legalsect11-title {
  font-family: 'Outfit', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.legalsect11-title-highlight {
  background: linear-gradient(135deg, #F8DCD9 0%, #FFB5A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.legalsect11-title-highlight::after {
  display: none;
}

.legalsect11-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.6;
}

/* BENTO GRID SHOWCASE LAYOUT (12-COLUMN BENTO DARK) */
.legalsect11-cards-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

/* GENERAL BENTO CARD BASE */
.legalsect11-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(248, 220, 217, 0.16);
  border-radius: 26px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.legalsect11-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F8DCD9, var(--wh-purple), #F8DCD9);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.legalsect11-card:hover {
  transform: translateY(-7px);
  border-color: rgba(248, 220, 217, 0.55);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.legalsect11-card:hover::before {
  opacity: 1;
}

.legalsect11-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.legalsect11-icon-pod {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(248, 220, 217, 0.18);
  border: 1px solid rgba(248, 220, 217, 0.3);
  color: #F8DCD9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.legalsect11-card:hover .legalsect11-icon-pod {
  transform: scale(1.08) rotate(-4deg);
  background: #F8DCD9;
  color: var(--wh-purple-dark);
}

.legalsect11-card:hover .legalsect11-icon-pod svg {
  stroke: var(--wh-purple-dark);
}

.legalsect11-icon-pod svg {
  width: 24px;
  height: 24px;
  stroke: #F8DCD9;
  transition: stroke 0.35s ease;
}

.legalsect11-step-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: rgba(248, 220, 217, 0.35);
  line-height: 1;
  transition: color 0.35s ease;
}

.legalsect11-card:hover .legalsect11-step-badge {
  color: #F8DCD9;
}

.legalsect11-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.legalsect11-card-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* PRIMARY FEATURE BENTO CARDS (CARDS 1 & 2 - SPAN 6 COLS EACH) */
.legalsect11-card-primary {
  grid-column: span 6;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1.5px solid rgba(248, 220, 217, 0.25);
  border-left: 5px solid #F8DCD9;
  padding: 36px 32px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

/* FORMAT GRID BENTO CARDS (CARDS 3, 4, 5, 6 - SPAN 3 COLS EACH) */
.legalsect11-card-grid-item {
  grid-column: span 3;
}

/* CARD 7: SPOTLIGHT MASTER STRATEGY BANNER (SPAN 12 COLS FULL WIDTH) */
.legalsect11-spotlight-card {
  grid-column: span 12;
  background: linear-gradient(135deg, rgba(248, 220, 217, 0.12) 0%, rgba(115, 93, 120, 0.25) 100%);
  border: 1.5px solid rgba(248, 220, 217, 0.28);
  border-radius: 28px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.legalsect11-spotlight-left {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
}

.legalsect11-spotlight-tag {
  background: #F8DCD9;
  color: var(--wh-purple-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .legalsect11-card-primary {
    grid-column: span 12;
  }
  .legalsect11-card-grid-item {
    grid-column: span 6;
  }
  .legalsect11-spotlight-card {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .legalsect11-section { padding: 60px 0; }
  .legalsect11-title { font-size: 34px; }
  .legalsect11-subtitle { font-size: 16.5px; }
  .legalsect11-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .legalsect11-card-primary,
  .legalsect11-card-grid-item,
  .legalsect11-spotlight-card {
    grid-column: span 1;
  }
  .legalsect11-card-primary {
    padding: 30px 24px;
  }
  .legalsect11-spotlight-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
    gap: 20px;
  }
  .legalsect11-spotlight-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
/* ==========================================================================
   SECTION 12: BUILDING TOPICAL AUTHORITY FOR YOUR LAW FIRM (.legalsect12-) - LIGHT THEME
   ========================================================================== */

.legalsect12-section {
  position: relative;
  width: 100%;
  padding: 95px 0;
  background: 
    radial-gradient(circle at 85% 25%, rgba(248, 220, 217, 0.45), transparent 40%),
    radial-gradient(circle at 10% 75%, rgba(115, 93, 120, 0.06), transparent 35%),
    var(--wh-soft);
  border-top: 1px solid rgba(248, 220, 217, 0.6);
  border-bottom: 1px solid rgba(248, 220, 217, 0.6);
  overflow: hidden;
}

.legalsect12-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.legalsect12-grid {
  display: flex;
  gap: 54px;
  align-items: center;
}

.legalsect12-left {
  flex: 0 0 52%;
  max-width: 52%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.legalsect12-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.legalsect12-title {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--wh-dark);
  margin: 0 0 22px 0;
  letter-spacing: -1px;
}

.legalsect12-lead-box {
  background: var(--wh-white);
  border-left: 4px solid var(--wh-purple);
  border-radius: 0 16px 16px 0;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(43, 43, 85, 0.04);
}

.legalsect12-lead-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--wh-dark);
  margin: 0;
  font-weight: 600;
}

.legalsect12-body-text {
  font-size: 15px;
  line-height: 1.68;
  color: var(--wh-muted);
  margin: 0 0 18px 0;
}

.legalsect12-includes-block {
  width: 100%;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(248, 220, 217, 0.75);
  border-radius: 20px;
  padding: 22px 24px;
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}

.legalsect12-includes-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--wh-purple-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legalsect12-tags-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px 16px;
}

.legalsect12-tag-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--wh-dark);
  line-height: 1.35;
}

.legalsect12-tag-check {
  width: 20px;
  height: 20px;
  background: var(--wh-peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wh-purple-dark);
  flex-shrink: 0;
  font-size: 12px;
}

.legalsect12-purpose-box {
  background: linear-gradient(135deg, var(--wh-purple-dark), #422648);
  border-radius: 18px;
  padding: 22px 26px;
  color: var(--wh-white);
  box-shadow: 0 14px 32px rgba(94, 63, 102, 0.22);
  margin-top: 14px;
  width: 100%;
  box-sizing: border-box;
}

.legalsect12-purpose-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--wh-peach);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 6px 0;
  display: block;
}

.legalsect12-purpose-main {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #FFFFFF;
  margin: 0;
  font-weight: 500;
}

.legalsect12-purpose-main strong {
  color: var(--wh-peach);
  font-weight: 800;
}

.legalsect12-right {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.legalsect12-art-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.9);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 20px 48px rgba(43, 43, 85, 0.08);
}

.legalsect12-art-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  background: var(--wh-peach);
  border-radius: 50%;
  top: -20px;
  right: -20px;
  z-index: 0;
  filter: blur(2px);
  opacity: 0.6;
}

.legalsect12-img-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.legalsect12-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.legalsect12-badge-float1 {
  position: absolute;
  top: 35px;
  left: -20px;
  z-index: 4;
  background: var(--wh-white);
  border: 1px solid var(--wh-peach);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(43, 43, 85, 0.1);
  font-size: 12px;
  font-weight: 700;
  color: var(--wh-purple-dark);
  animation: legalsect12-float 5.5s ease-in-out infinite alternate;
}

.legalsect12-badge-float2 {
  position: absolute;
  bottom: 40px;
  right: -20px;
  z-index: 4;
  background: var(--wh-white);
  border: 1px solid var(--wh-peach);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(43, 43, 85, 0.1);
  font-size: 12px;
  font-weight: 700;
  color: var(--wh-purple-dark);
  animation: legalsect12-float 6s ease-in-out infinite alternate 1s;
}

@keyframes legalsect12-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

@media (max-width: 1024px) {
  .legalsect12-grid {
    flex-direction: column;
    gap: 40px;
  }
  .legalsect12-left, .legalsect12-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .legalsect12-section { padding: 60px 0; }
  .legalsect12-title { font-size: 32px; }
  .legalsect12-tags-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SECTION 13: BUILT FOR SOLO ATTORNEYS & SMALL LAW FIRMS (.legalsect13-) - LIGHT THEME
   ========================================================================== */

.legalsect13-section {
  position: relative;
  width: 100%;
  padding: 95px 0 105px 0;
  background: 
    radial-gradient(circle at 85% 25%, rgba(248, 220, 217, 0.45), transparent 40%),
    radial-gradient(circle at 10% 75%, rgba(115, 93, 120, 0.06), transparent 35%),
    var(--wh-soft);
  border-top: 1px solid rgba(248, 220, 217, 0.6);
  border-bottom: 1px solid rgba(248, 220, 217, 0.6);
  overflow: hidden;
  box-sizing: border-box;
}

.legalsect13-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* SECTION HEADER */
.legalsect13-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legalsect13-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.legalsect13-title {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--wh-dark);
  margin: 0 0 16px 0;
  letter-spacing: -1px;
}

.legalsect13-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--wh-muted);
  margin: 0;
  line-height: 1.6;
}

/* 2-COLUMN EDITORIAL GRID */
.legalsect13-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* MATCHING COLUMN HEADERS FOR PERFECT TOP ALIGNMENT */
.legalsect13-column-header {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.legalsect13-column-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wh-purple-dark);
  margin: 0;
}

/* LEFT COLUMN: NARRATIVE CARDS */
.legalsect13-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legalsect13-card-lead {
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-left: 4px solid var(--wh-purple-dark);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 6px 18px rgba(43, 43, 85, 0.03);
}

.legalsect13-lead-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--wh-dark);
  margin: 0;
  font-weight: 700;
}

.legalsect13-card-story {
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 6px 18px rgba(43, 43, 85, 0.03);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legalsect13-story-paragraph {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--wh-muted);
  margin: 0;
}

.legalsect13-alert-box {
  background: rgba(248, 220, 217, 0.45);
  border: 1px solid rgba(248, 220, 217, 0.9);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.legalsect13-alert-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wh-peach);
  color: var(--wh-purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect13-alert-text {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--wh-dark);
  margin: 0;
  line-height: 1.5;
}

.legalsect13-solution-card {
  background: linear-gradient(135deg, var(--wh-purple-dark), #422648);
  border-radius: 16px;
  padding: 20px 24px;
  color: var(--wh-white);
  box-shadow: 0 10px 28px rgba(94, 63, 102, 0.2);
  display: flex;
  align-items: center;
}

.legalsect13-solution-text {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.55;
}

/* RIGHT COLUMN: DELIVERABLES EDITORIAL STACK */
.legalsect13-right {
  display: flex;
  flex-direction: column;
}

.legalsect13-deliverables-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legalsect13-deliverable-item {
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 6px 18px rgba(43, 43, 85, 0.03);
  transition: all 0.3s ease;
}

.legalsect13-deliverable-item:hover {
  transform: translateX(6px);
  border-color: var(--wh-peach);
  box-shadow: 0 10px 24px rgba(43, 43, 85, 0.08);
}

.legalsect13-item-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--wh-peach);
  color: var(--wh-purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.legalsect13-item-text {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--wh-dark);
  margin: 0;
  line-height: 1.4;
}

/* PRICING CALLOUT BANNER */
.legalsect13-price-banner {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--wh-peach) 0%, #FFF0EE 100%);
  border: 1.5px solid var(--wh-peach);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(94, 63, 102, 0.08);
}

.legalsect13-price-text {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--wh-purple-dark);
  margin: 0;
  letter-spacing: -0.3px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .legalsect13-grid {
    flex-direction: column;
    gap: 40px;
  }
  .legalsect13-left,
  .legalsect13-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .legalsect13-section { padding: 60px 0; }
  .legalsect13-title { font-size: 32px; }
  .legalsect13-subtitle { font-size: 16px; }
}

/* ==========================================================================
   SECTION 14: LEGAL ACCURACY COMES FIRST (.legalsect14-) - DARK PATTERN
   ========================================================================== */

.legalsect14-section {
  position: relative;
  width: 100%;
  padding: 110px 0 120px 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(248, 220, 217, 0.14) 0%, transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(115, 93, 120, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, #151326 0%, #241E3A 50%, #3B2344 100%);
  box-sizing: border-box;
  overflow: hidden;
  border-top: 1px solid rgba(248, 220, 217, 0.15);
  border-bottom: 1px solid rgba(248, 220, 217, 0.15);
}

/* Dark Pattern Mesh Grid Overlay */
.legalsect14-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(248, 220, 217, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.legalsect14-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* SECTION HEADER */
.legalsect14-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 54px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legalsect14-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248, 220, 217, 0.12);
  border: 1px solid rgba(248, 220, 217, 0.35);
  color: #F8DCD9;
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.legalsect14-pill-dot {
  width: 6px;
  height: 6px;
  background-color: #F8DCD9;
  border-radius: 50%;
  box-shadow: 0 0 10px #F8DCD9;
}

.legalsect14-title {
  font-family: 'Outfit', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.legalsect14-title-highlight {
  background: linear-gradient(135deg, #F8DCD9 0%, #FFB5A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legalsect14-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  line-height: 1.6;
}

/* 2-COLUMN LAYOUT */
.legalsect14-grid {
  display: flex;
  align-items: center;
  gap: 52px;
  margin-bottom: 48px;
}

/* LEFT COLUMN: NARRATIVE & PROCESS GRID (50%) */
.legalsect14-left {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legalsect14-reputation-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(248, 220, 217, 0.18);
  border-left: 4px solid #F8DCD9;
  border-radius: 0 18px 18px 0;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.legalsect14-reputation-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.legalsect14-process-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legalsect14-process-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F8DCD9;
  margin: 0;
}

.legalsect14-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.legalsect14-process-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(248, 220, 217, 0.16);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.35s ease;
}

.legalsect14-process-item:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 220, 217, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.legalsect14-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(248, 220, 217, 0.18);
  border: 1px solid rgba(248, 220, 217, 0.3);
  color: #F8DCD9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect14-item-label {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

.legalsect14-review-note {
  background: rgba(248, 220, 217, 0.08);
  border: 1px dashed rgba(248, 220, 217, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.legalsect14-note-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(248, 220, 217, 0.2);
  color: #F8DCD9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect14-note-text {
  font-size: 14.5px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.5;
}

/* RIGHT COLUMN: MASCOT ARTWORK FRAME (50%) */
.legalsect14-right {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.legalsect14-art-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(248, 220, 217, 0.2);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.legalsect14-art-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(248, 220, 217, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.legalsect14-img-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.legalsect14-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.legalsect14-badge-float1 {
  position: absolute;
  top: 30px;
  left: -20px;
  z-index: 4;
  background: rgba(26, 22, 44, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(248, 220, 217, 0.35);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  font-weight: 700;
  color: #F8DCD9;
  animation: legalsect14-float 5.5s ease-in-out infinite alternate;
}

.legalsect14-badge-float2 {
  position: absolute;
  bottom: 35px;
  right: -20px;
  z-index: 4;
  background: rgba(26, 22, 44, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(248, 220, 217, 0.35);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  font-weight: 700;
  color: #F8DCD9;
  animation: legalsect14-float 6s ease-in-out infinite alternate 1s;
}

@keyframes legalsect14-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

/* BOTTOM STRATEGIC CALLOUT BANNER */
.legalsect14-bottom-banner {
  background: linear-gradient(135deg, rgba(248, 220, 217, 0.16) 0%, rgba(115, 93, 120, 0.3) 100%);
  border: 1.5px solid rgba(248, 220, 217, 0.3);
  border-left: 5px solid #F8DCD9;
  border-radius: 20px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.legalsect14-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(248, 220, 217, 0.2);
  border: 1px solid rgba(248, 220, 217, 0.35);
  color: #F8DCD9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect14-banner-text {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.5;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .legalsect14-grid {
    flex-direction: column;
    gap: 40px;
  }
  .legalsect14-left,
  .legalsect14-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .legalsect14-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .legalsect14-section { padding: 60px 0; }
  .legalsect14-title { font-size: 34px; }
  .legalsect14-subtitle { font-size: 16.5px; }
  .legalsect14-process-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SECTION 15: WHY CHOOSE WRITOHOLICS? (.legalsect15-) - LIGHT MASTER SHOWCASE
   ========================================================================== */

.legalsect15-section {
  position: relative;
  width: 100%;
  padding: 100px 0 110px 0;
  background: 
    radial-gradient(circle at 85% 25%, rgba(248, 220, 217, 0.45), transparent 40%),
    radial-gradient(circle at 10% 75%, rgba(115, 93, 120, 0.06), transparent 35%),
    var(--wh-soft);
  border-top: 1px solid rgba(248, 220, 217, 0.6);
  border-bottom: 1px solid rgba(248, 220, 217, 0.6);
  overflow: hidden;
  box-sizing: border-box;
}

.legalsect15-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* SECTION HEADER */
.legalsect15-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legalsect15-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.legalsect15-title {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--wh-dark);
  margin: 0;
  letter-spacing: -1px;
}

/* 2-COLUMN MASTER SHOWCASE LAYOUT */
.legalsect15-grid {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 36px;
}

/* LEFT COLUMN: MASCOT ARTWORK FRAME (50%) */
.legalsect15-left {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.legalsect15-art-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(43, 43, 85, 0.06);
}

.legalsect15-art-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  background: var(--wh-peach);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(4px);
  opacity: 0.6;
  pointer-events: none;
}

.legalsect15-img-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.legalsect15-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.legalsect15-badge-float1 {
  position: absolute;
  top: 30px;
  left: -20px;
  z-index: 4;
  background: var(--wh-white);
  border: 1px solid var(--wh-peach);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(43, 43, 85, 0.1);
  font-size: 12px;
  font-weight: 700;
  color: var(--wh-purple-dark);
  animation: legalsect15-float 5.5s ease-in-out infinite alternate;
}

.legalsect15-badge-float2 {
  position: absolute;
  bottom: 35px;
  right: -20px;
  z-index: 4;
  background: var(--wh-white);
  border: 1px solid var(--wh-peach);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(43, 43, 85, 0.1);
  font-size: 12px;
  font-weight: 700;
  color: var(--wh-purple-dark);
  animation: legalsect15-float 6s ease-in-out infinite alternate 1s;
}

@keyframes legalsect15-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

/* RIGHT COLUMN: PROOF & EXPERTISE BENTO STACK (50%) */
.legalsect15-right {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legalsect15-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.legalsect15-stat-card {
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-left: 4px solid var(--wh-purple-dark);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 6px 18px rgba(43, 43, 85, 0.03);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.legalsect15-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--wh-peach);
  box-shadow: 0 10px 24px rgba(94, 63, 102, 0.08);
}

.legalsect15-stat-head {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--wh-purple-dark);
  margin: 0;
  line-height: 1.25;
}

.legalsect15-stat-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--wh-muted);
  margin: 0;
}

.legalsect15-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legalsect15-pillar-item {
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 6px 18px rgba(43, 43, 85, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.legalsect15-pillar-item:hover {
  transform: translateX(6px);
  border-color: var(--wh-peach);
  box-shadow: 0 10px 24px rgba(94, 63, 102, 0.08);
}

.legalsect15-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--wh-peach);
  color: var(--wh-purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect15-pillar-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legalsect15-pillar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--wh-dark);
  margin: 0;
  line-height: 1.3;
}

.legalsect15-pillar-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--wh-muted);
  margin: 0;
}

/* BOTTOM ROW: MASTER SYSTEM WORKFLOW PIPELINE (BLOCK 6) */
.legalsect15-system-card {
  background: linear-gradient(135deg, var(--wh-purple-dark), #422648);
  border-radius: 22px;
  padding: 32px 36px;
  box-shadow: 0 14px 36px rgba(94, 63, 102, 0.22);
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--wh-white);
}

.legalsect15-system-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legalsect15-system-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(248, 220, 217, 0.2);
  border: 1px solid rgba(248, 220, 217, 0.35);
  color: #F8DCD9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect15-system-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.legalsect15-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.legalsect15-step-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(248, 220, 217, 0.2);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.legalsect15-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F8DCD9;
  color: var(--wh-purple-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect15-step-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: #FFFFFF;
  font-weight: 600;
  margin: 0;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .legalsect15-grid {
    flex-direction: column;
    gap: 40px;
  }
  .legalsect15-left,
  .legalsect15-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .legalsect15-pipeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .legalsect15-section { padding: 60px 0; }
  .legalsect15-title { font-size: 32px; }
  .legalsect15-stats-row { grid-template-columns: 1fr; }
  .legalsect15-system-card { padding: 26px 22px; }
}

/* ==========================================================================
   SECTION 16: WHAT YOUR FIRST 30 DAYS LOOK LIKE (.legalsect16-) - LIGHT THEME (NO IMAGE)
   ========================================================================== */

.legalsect16-section {
  position: relative;
  width: 100%;
  padding: 100px 0 110px 0;
  background: 
    radial-gradient(circle at 85% 25%, rgba(248, 220, 217, 0.45), transparent 40%),
    radial-gradient(circle at 10% 75%, rgba(115, 93, 120, 0.06), transparent 35%),
    var(--wh-soft);
  border-top: 1px solid rgba(248, 220, 217, 0.6);
  border-bottom: 1px solid rgba(248, 220, 217, 0.6);
  overflow: hidden;
  box-sizing: border-box;
}

.legalsect16-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* SECTION HEADER */
.legalsect16-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 54px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legalsect16-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.legalsect16-title {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--wh-dark);
  margin: 0;
  letter-spacing: -1px;
}

/* 4-COLUMN HORIZONTAL STEPPER GRID */
.legalsect16-stepper-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.legalsect16-step-card {
  background: var(--wh-white);
  border: 1px solid rgba(248, 220, 217, 0.85);
  border-top: 4px solid var(--wh-purple-dark);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 8px 24px rgba(43, 43, 85, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.legalsect16-step-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--wh-peach);
  box-shadow: 0 14px 32px rgba(94, 63, 102, 0.09);
}

.legalsect16-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legalsect16-week-badge {
  background: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 30px;
}

.legalsect16-step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: rgba(115, 93, 120, 0.25);
}

.legalsect16-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--wh-dark);
  margin: 0;
  line-height: 1.3;
}

.legalsect16-card-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--wh-muted);
  margin: 0;
}

/* BOTTOM DUAL CALLOUT CARDS */
.legalsect16-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.legalsect16-seo-card {
  background: var(--wh-white);
  border: 1.5px solid var(--wh-peach);
  border-left: 5px solid var(--wh-purple-dark);
  border-radius: 18px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(94, 63, 102, 0.05);
}

.legalsect16-seo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--wh-peach);
  color: var(--wh-purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect16-seo-text {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--wh-dark);
  margin: 0;
}

.legalsect16-seo-text strong {
  color: var(--wh-purple-dark);
  font-weight: 800;
}

.legalsect16-ongoing-card {
  background: linear-gradient(135deg, var(--wh-purple-dark), #422648);
  border-radius: 18px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 32px rgba(94, 63, 102, 0.2);
  color: var(--wh-white);
}

.legalsect16-ongoing-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(248, 220, 217, 0.2);
  border: 1px solid rgba(248, 220, 217, 0.35);
  color: #F8DCD9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect16-ongoing-text {
  font-family: 'Outfit', sans-serif;
  font-size: 17.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.5;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .legalsect16-stepper-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .legalsect16-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .legalsect16-section { padding: 60px 0; }
  .legalsect16-title { font-size: 32px; }
  .legalsect16-stepper-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SECTION 17: FREQUENTLY ASKED QUESTIONS (.legalsect17-) - DARK PATTERN
   ========================================================================== */

.legalsect17-section {
  position: relative;
  width: 100%;
  padding: 110px 0 120px 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(248, 220, 217, 0.14) 0%, transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(115, 93, 120, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, #151326 0%, #241E3A 50%, #3B2344 100%);
  box-sizing: border-box;
  overflow: hidden;
  border-top: 1px solid rgba(248, 220, 217, 0.15);
  border-bottom: 1px solid rgba(248, 220, 217, 0.15);
}

.legalsect17-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(248, 220, 217, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.legalsect17-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* SECTION HEADER */
.legalsect17-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 54px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legalsect17-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248, 220, 217, 0.12);
  border: 1px solid rgba(248, 220, 217, 0.35);
  color: #F8DCD9;
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.legalsect17-pill-dot {
  width: 6px;
  height: 6px;
  background-color: #F8DCD9;
  border-radius: 50%;
  box-shadow: 0 0 10px #F8DCD9;
}

.legalsect17-title {
  font-family: 'Outfit', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* 2-COLUMN FAQ GRID LAYOUT (2 QUESTIONS PER ROW, NO IMAGE) */
.legalsect17-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

.legalsect17-faq-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(248, 220, 217, 0.16);
  border-radius: 20px;
  padding: 22px 26px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.legalsect17-faq-card:hover {
  border-color: rgba(248, 220, 217, 0.45);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.legalsect17-faq-card[open] {
  border-color: rgba(248, 220, 217, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.legalsect17-faq-head {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  user-select: none;
}

.legalsect17-faq-head::-webkit-details-marker {
  display: none;
}

.legalsect17-faq-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.legalsect17-faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(248, 220, 217, 0.16);
  border: 1px solid rgba(248, 220, 217, 0.3);
  color: #F8DCD9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect17-faq-question {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.35;
}

.legalsect17-arrow-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(248, 220, 217, 0.12);
  border: 1px solid rgba(248, 220, 217, 0.3);
  color: #F8DCD9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.35s ease;
}

.legalsect17-faq-card[open] .legalsect17-arrow-icon {
  transform: rotate(180deg);
  background: rgba(248, 220, 217, 0.25);
}

.legalsect17-faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
  margin: 16px 0 0 0;
  padding: 16px 0 0 50px;
  border-top: 1px dashed rgba(248, 220, 217, 0.15);
}

.legalsect17-faq-answer p {
  margin: 0 0 10px 0;
}

.legalsect17-faq-answer p:last-child {
  margin-bottom: 0;
}

.legalsect17-faq-answer strong {
  color: #F8DCD9;
  font-weight: 800;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .legalsect17-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .legalsect17-section { padding: 60px 0; }
  .legalsect17-title { font-size: 34px; }
  .legalsect17-faq-answer { padding-left: 0; }
}/* ==========================================================================
   SECTION 18: FINAL CALL TO ACTION (.legalsect18-) - PROFESSIONAL LIGHT THEME
   ========================================================================== */

.legalsect18-section {
  position: relative;
  width: 100%;
  padding: 100px 0 110px 0;
  background-color: var(--wh-soft);
  box-sizing: border-box;
  overflow: hidden;
  border-top: 1px solid rgba(248, 220, 217, 0.6);
}

.legalsect18-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* 2-COLUMN SPLIT LAYOUT */
.legalsect18-grid {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

/* LEFT COLUMN: CONTENT & ACTION PANEL (52%) */
.legalsect18-left {
  flex: 0 0 52%;
  max-width: 52%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* RIGHT COLUMN: MASCOT IMAGE CONTAINER (48%) */
.legalsect18-right {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 100px;
}

.legalsect18-img-box {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: #FFFFFF;
  border: 1px solid rgba(94, 63, 102, 0.12);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 16px 44px rgba(94, 63, 102, 0.09);
}

.legalsect18-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.legalsect18-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wh-peach);
  color: var(--wh-purple-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  align-self: flex-start;
}

.legalsect18-title {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--wh-dark);
  margin: 0;
  line-height: 1.18;
  letter-spacing: -0.6px;
}

.legalsect18-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--wh-purple-dark);
  margin: 0;
  line-height: 1.35;
}

.legalsect18-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--wh-muted);
  margin: 0;
}

/* 4 PACKAGE HIGHLIGHTS CARDS GRID */
.legalsect18-pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 4px;
}

.legalsect18-pkg-card {
  background: #FFFFFF;
  border: 1px solid rgba(94, 63, 102, 0.12);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(94, 63, 102, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.legalsect18-pkg-card:hover {
  transform: translateY(-2px);
  border-color: var(--wh-purple-dark);
}

.legalsect18-pkg-card.highlight {
  background: var(--wh-peach);
  border: 1.5px solid var(--wh-purple-dark);
}

.legalsect18-pkg-text {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--wh-dark);
  margin: 0;
}

.legalsect18-pkg-card.highlight .legalsect18-pkg-text {
  color: var(--wh-purple-dark);
  font-size: 18.5px;
}

/* SEO SETUP BANNER */
.legalsect18-seo-banner {
  background: #FFFFFF;
  border: 1px solid rgba(248, 220, 217, 0.9);
  border-left: 4px solid var(--wh-purple-dark);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 12px rgba(94, 63, 102, 0.03);
}

.legalsect18-seo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--wh-peach);
  color: var(--wh-purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legalsect18-seo-text {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--wh-dark);
  margin: 0;
}

.legalsect18-seo-text strong {
  color: var(--wh-purple-dark);
  font-weight: 800;
}

/* FULL WIDTH FINAL CTA ACTION BOX */
.legalsect18-cta-box {
  width: 100%;
  margin-top: 40px;
  background: #FFFFFF;
  border: 1.5px solid var(--wh-peach);
  border-radius: 24px;
  padding: 36px 44px;
  box-shadow: 0 12px 36px rgba(94, 63, 102, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-sizing: border-box;
}

.legalsect18-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--wh-dark);
  margin: 0;
  line-height: 1.3;
}

.legalsect18-buttons-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.legalsect18-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wh-purple-dark);
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(94, 63, 102, 0.2);
}

.legalsect18-btn-primary:hover {
  background: #422648;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(94, 63, 102, 0.3);
}

.legalsect18-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid var(--wh-purple-dark);
  color: var(--wh-purple-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legalsect18-btn-secondary:hover {
  background: var(--wh-peach);
  transform: translateY(-2px);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .legalsect18-grid {
    flex-direction: column;
    gap: 40px;
  }
  .legalsect18-left,
  .legalsect18-right {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    top: 0;
  }
}

@media (max-width: 900px) {
  .legalsect18-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
    gap: 20px;
  }
  .legalsect18-buttons-row {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .legalsect18-section { padding: 60px 0; }
  .legalsect18-title { font-size: 30px; }
  .legalsect18-subtitle { font-size: 18px; }
  .legalsect18-pkg-grid { grid-template-columns: 1fr; }
  .legalsect18-cta-box { padding: 24px 20px; }
  .legalsect18-cta-title { font-size: 20px; }
  .legalsect18-buttons-row { flex-direction: column; width: 100%; }
  .legalsect18-btn-primary, .legalsect18-btn-secondary { width: 100%; justify-content: center; box-sizing: border-box; }
}

/* ==========================================================================
   DARK PATTERN COLOR ENHANCEMENTS (#735D78)
   ========================================================================== */

:root {
  --wh-dark-pattern: #735D78;
  --wh-dark-pattern-dark: #5E3F66;
  --wh-dark-pattern-light: #8E7794;
  --wh-dark-bg-start: #19121D;
  --wh-dark-bg-mid: #36263A;
  --wh-dark-bg-end: #735D78;
}

/* Apply #735d78 rich dark pattern gradient to all Dark Pattern Sections */
.legalsect3-section,
.legalsect11-section,
.legalsect14-section,
.legalsect17-section {
  background: 
    radial-gradient(circle at 80% 20%, rgba(248, 220, 217, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(115, 93, 120, 0.45) 0%, transparent 50%),
    linear-gradient(135deg, var(--wh-dark-bg-start) 0%, var(--wh-dark-bg-mid) 50%, var(--wh-dark-pattern) 100%) !important;
}

/* Dark layout cards and containers enhancement with #735d78 borders & glows */
.legalsect3-card,
.legalsect11-card,
.legalsect14-card,
.legalsect17-faq-card,
.legalsect3-left,
.legalsect11-left,
.legalsect14-left,
.legalsect17-container {
  border-color: rgba(115, 93, 120, 0.35);
}

.legalsect3-card,
.legalsect11-card,
.legalsect14-card,
.legalsect17-faq-card {
  background: rgba(115, 93, 120, 0.14) !important;
  border: 1px solid rgba(115, 93, 120, 0.35) !important;
  box-shadow: 0 10px 30px rgba(25, 18, 29, 0.4) !important;
}

.legalsect3-card:hover,
.legalsect11-card:hover,
.legalsect14-card:hover,
.legalsect17-faq-card:hover {
  background: rgba(115, 93, 120, 0.25) !important;
  border-color: rgba(248, 220, 217, 0.5) !important;
  box-shadow: 0 14px 35px rgba(115, 93, 120, 0.4) !important;
}

/* ==========================================================================
   ALL SECTION ANIMATIONS (IMAGES, TEXT, CARDS, SCROLL REVEAL)
   ========================================================================== */

/* Keyframe Definitions */
@keyframes wh-fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wh-fade-down {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wh-slide-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes wh-slide-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes wh-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wh-float-gentle {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1.2deg);
  }
}

@keyframes wh-pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 10px 20px rgba(115, 93, 120, 0.25));
  }
  50% {
    filter: drop-shadow(0 20px 35px rgba(115, 93, 120, 0.5));
  }
}

/* Image Animations across all sections */
.legalhero-mascot-img,
.legalsect2-img,
.legalsect3-artwork-img,
.legalsect4-img,
.legalsect5-img,
.legalsect6-mascot-img,
.legalsect7-img,
.legalsect8-mascot-img,
.legalsect9-mascot-img,
.legalsect10-img,
.legalsect11-img,
.legalsect12-img,
.legalsect13-img,
.legalsect14-img,
.legalsect15-img,
.legalsect16-img,
.legalsect17-img,
.legalsect18-img,
img {
  animation: wh-float-gentle 6s ease-in-out infinite, wh-pulse-glow 4s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.legalhero-mascot-img:hover,
.legalsect2-img:hover,
.legalsect3-artwork-img:hover,
.legalsect4-img:hover,
.legalsect5-img:hover,
.legalsect6-mascot-img:hover,
.legalsect7-img:hover,
.legalsect8-mascot-img:hover,
.legalsect9-mascot-img:hover,
.legalsect10-img:hover,
.legalsect11-img:hover,
.legalsect12-img:hover,
.legalsect13-img:hover,
.legalsect14-img:hover,
.legalsect15-img:hover,
.legalsect16-img:hover,
.legalsect17-img:hover,
.legalsect18-img:hover,
img:hover {
  transform: translateY(-8px) scale(1.03);
  filter: drop-shadow(0 25px 40px rgba(115, 93, 120, 0.55));
}

/* Pill badge hover & pulse animation */
.legalhero-pill,
[class*="-pill"] {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[class*="-pill"]:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 18px rgba(115, 93, 120, 0.35);
}

/* Scroll Animation Helper Classes */
.wh-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.wh-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.wh-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.wh-reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.wh-reveal.wh-active,
.wh-reveal-left.wh-active,
.wh-reveal-right.wh-active,
.wh-reveal-zoom.wh-active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger Delays */
.wh-delay-100 { transition-delay: 0.1s; }
}

.legalsect3-card,
.legalsect11-card,
.legalsect14-card,
.legalsect17-faq-card {
  background: rgba(115, 93, 120, 0.14) !important;
  border: 1px solid rgba(115, 93, 120, 0.35) !important;
  box-shadow: 0 10px 30px rgba(25, 18, 29, 0.4) !important;
}

.legalsect3-card:hover,
.legalsect11-card:hover,
.legalsect14-card:hover,
.legalsect17-faq-card:hover {
  background: rgba(115, 93, 120, 0.25) !important;
  border-color: rgba(248, 220, 217, 0.5) !important;
  box-shadow: 0 14px 35px rgba(115, 93, 120, 0.4) !important;
}

/* ==========================================================================
   ALL SECTION ANIMATIONS (IMAGES, TEXT, CARDS, SCROLL REVEAL)
   ========================================================================== */

/* Keyframe Definitions */
@keyframes legalhero-fadeup {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wh-fade-down {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wh-slide-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes wh-slide-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes wh-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wh-float-gentle {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1.2deg);
  }
}

@keyframes wh-pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 10px 20px rgba(115, 93, 120, 0.25));
  }
  50% {
    filter: drop-shadow(0 20px 35px rgba(115, 93, 120, 0.5));
  }
}

/* Image Animations across all sections */
.legalhero-mascot-img,
.legalsect2-img,
.legalsect3-artwork-img,
.legalsect4-img,
.legalsect5-img,
.legalsect6-mascot-img,
.legalsect7-img,
.legalsect8-mascot-img,
.legalsect9-mascot-img,
.legalsect10-img,
.legalsect11-img,
.legalsect12-img,
.legalsect13-img,
.legalsect14-img,
.legalsect15-img,
.legalsect16-img,
.legalsect17-img,
.legalsect18-img,
img {
  animation: wh-float-gentle 6s ease-in-out infinite, wh-pulse-glow 4s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.legalhero-mascot-img:hover,
.legalsect2-img:hover,
.legalsect3-artwork-img:hover,
.legalsect4-img:hover,
.legalsect5-img:hover,
.legalsect6-mascot-img:hover,
.legalsect7-img:hover,
.legalsect8-mascot-img:hover,
.legalsect9-mascot-img:hover,
.legalsect10-img:hover,
.legalsect11-img:hover,
.legalsect12-img:hover,
.legalsect13-img:hover,
.legalsect14-img:hover,
.legalsect15-img:hover,
.legalsect16-img:hover,
.legalsect17-img:hover,
.legalsect18-img:hover,
img:hover {
  transform: translateY(-8px) scale(1.03);
  filter: drop-shadow(0 25px 40px rgba(115, 93, 120, 0.55));
}

/* Pill badge hover & pulse animation */
.legalhero-pill,
[class*="-pill"] {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[class*="-pill"]:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 18px rgba(115, 93, 120, 0.35);
}

/* Scroll Animation Helper Classes */
.wh-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.wh-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.wh-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.wh-reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.wh-reveal.wh-active,
.wh-reveal-left.wh-active,
.wh-reveal-right.wh-active,
.wh-reveal-zoom.wh-active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger Delays */
.wh-delay-100 { transition-delay: 0.1s; }
.wh-delay-200 { transition-delay: 0.2s; }
.wh-delay-300 { transition-delay: 0.3s; }
.wh-delay-400 { transition-delay: 0.4s; }
.wh-delay-500 { transition-delay: 0.5s; }



/* ==========================================================================
   FOOLPROOF VISIBILITY & ANIMATION FALLBACKS
   ========================================================================== */

/* By default, all elements and sections are 100% visible */
.legalhero-section,
.legalhero-left,
.legalhero-right,
.legalhero-title,
.legalhero-subtitle,
.legalhero-price-box,
.legalhero-actions,
.legalhero-mascot-img-wrap,
section,
[class*="-section"],
[class*="-left"],
[class*="-right"],
[class*="-card"],
[class*="-title"],
[class*="-subtitle"],
[class*="-img"] {
  opacity: 1 !important;
}

/* Scroll Reveal Classes (only hide when .js-active is enabled) */
.js-active .wh-reveal:not(.wh-active) {
  opacity: 0 !important;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-active .wh-reveal-left:not(.wh-active) {
  opacity: 0 !important;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-active .wh-reveal-right:not(.wh-active) {
  opacity: 0 !important;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-active .wh-reveal-zoom:not(.wh-active) {
  opacity: 0 !important;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.wh-reveal.wh-active,
.wh-reveal-left.wh-active,
.wh-reveal-right.wh-active,
.wh-reveal-zoom.wh-active {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
}

/* ==========================================================================
   DISABLE HOVER ANIMATION FOR INSIDE CARDS (KEEP OVERALL CARDS HOVER ACTIVE)
   ========================================================================== */
}