/* ═══════════════════════════════════════════════════════
   TOOLS.CSS — Smart Designs Studio
   SMB Digital Tools page styles — additive only.
   ═══════════════════════════════════════════════════════ */

/* ── GHOST BUTTON ── */
.tools-btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--gold-pale);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1.5px solid rgba(240,208,128,0.45);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
  cursor: pointer;
}
.tools-btn-ghost:hover {
  background: rgba(184,134,11,0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.tools-btn-ghost-lg { padding: 1.1rem 2.8rem; font-size: 0.78rem; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.tools-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
  padding: 9rem 2rem 5rem;
  text-align: center;
}
.tools-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 70% at 50% 40%, rgba(36,28,8,0.95) 0%, #0A0A08 65%);
}
.tools-hero-deco {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.tools-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
}
.tools-hero-label {
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.05s ease both;
}
.tools-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.tools-hero-title em { font-style: italic; font-weight: 600; color: var(--gold-bright); }
.tools-hero-sub {
  font-size: 1rem;
  color: #999;
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto 2rem;
  animation: fadeUp 0.8s 0.15s ease both;
}
.tools-hero-pills {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.tools-hero-pills span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid rgba(184,134,11,0.28);
  background: rgba(10,10,8,0.5);
  padding: 0.35rem 1rem;
  font-family: var(--font-body);
}
.tools-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.25s ease both;
}

/* ══════════════════════════════════
   TRUST STRIP
══════════════════════════════════ */
.tools-trust-strip {
  background: #14120C;
  border-top: 1px solid rgba(184,134,11,0.15);
  border-bottom: 1px solid rgba(184,134,11,0.15);
  padding: 1.4rem 2rem;
}
.tools-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.tools-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.tools-trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.tools-trust-sep {
  width: 1px;
  height: 28px;
  background: rgba(184,134,11,0.15);
  flex-shrink: 0;
}

/* ══════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════ */
.tools-problem-section { background: var(--white); }

.tools-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.tools-problem-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-top: 3px solid transparent;
  transition: border-color 0.35s, background 0.35s, transform 0.3s;
}
.tools-problem-card:hover {
  border-color: var(--gold);
  background: var(--ink);
  transform: translateY(-3px);
}
.tools-problem-card:hover h4 { color: var(--gold-pale); }
.tools-problem-card:hover p  { color: #999; }
.tools-prob-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.tools-problem-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.2;
  transition: color 0.35s;
}
.tools-problem-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.85;
  transition: color 0.35s;
}

/* ══════════════════════════════════
   TOOLS GRID
══════════════════════════════════ */
.tools-grid-section { background: #0C0B09; }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 1rem;
}

.tool-card {
  background: #161410;
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid transparent;
  transition: border-color 0.35s, transform 0.3s, background 0.35s;
  position: relative;
  overflow: hidden;
}
.tool-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  background: #1C1914;
}

/* Featured card (WA Menu) */
.tool-card-featured {
  border-bottom: 3px solid rgba(37,211,102,0.3);
}
.tool-card-featured:hover {
  border-color: #25D366;
}

/* Bundle card */
.tool-card-bundle {
  border-bottom: 3px solid rgba(184,134,11,0.4);
  background: linear-gradient(135deg, #1A1400 0%, #161410 100%);
}
.tool-card-bundle:hover {
  border-color: var(--gold);
  background: #201800;
}

.tool-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.8rem 1.8rem 0;
}
.tool-emoji {
  font-size: 2.2rem;
  line-height: 1;
}
.tool-badge {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,134,11,0.3);
  padding: 0.2rem 0.6rem;
  background: rgba(184,134,11,0.07);
  white-space: nowrap;
}
.tool-badge-green {
  color: #25D366;
  border-color: rgba(37,211,102,0.3);
  background: rgba(37,211,102,0.07);
}
.tool-badge-gold {
  color: var(--gold-bright);
  border-color: rgba(184,134,11,0.5);
  background: rgba(184,134,11,0.12);
}

.tool-card-body {
  padding: 1.2rem 1.8rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tool-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0;
  line-height: 1.2;
}
.tool-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  opacity: 0.8;
}
.tool-desc {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.8;
  flex: 1;
}
.tool-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.3rem;
}
.tool-features li {
  font-size: 0.75rem;
  color: #777;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.tool-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.35rem;
  top: 0.4em;
}

.tool-card-footer {
  padding: 1.2rem 1.8rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(184,134,11,0.08);
  margin-top: 0.5rem;
}
.tool-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.tool-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.tool-price-bundle {
  font-size: 1.8rem;
}
.tool-price-old {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
}
.tool-price-note {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.tool-details-btn {
  background: none;
  border: 1px solid rgba(184,134,11,0.35);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.tool-details-btn:hover {
  background: rgba(184,134,11,0.12);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.tool-bundle-btn {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 600;
}
.tool-bundle-btn:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

/* ══════════════════════════════════
   WHY SECTION
══════════════════════════════════ */
.tools-why-section { background: var(--ink); }

.tools-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.tools-why-card {
  background: #161410;
  padding: 2.5rem 2rem;
  border-top: 3px solid transparent;
  transition: border-color 0.35s, background 0.35s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tools-why-card:hover {
  border-color: var(--gold);
  background: #1C1914;
  transform: translateY(-3px);
}
.tools-why-card:hover h3 { color: var(--gold-pale); }
.tools-why-card:hover p  { color: #999; }
.twhy-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(184,134,11,0.12);
  line-height: 1;
}
.tools-why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  transition: color 0.35s;
}
.tools-why-card p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.9;
  transition: color 0.35s;
}

/* ══════════════════════════════════
   FINAL CTA
══════════════════════════════════ */
.tools-final-cta {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  background: var(--ink);
  overflow: hidden;
}
.tools-final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(184,134,11,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.tools-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.tools-final-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.tools-final-cta-inner h2 em { font-style: italic; color: var(--gold-bright); font-weight: 600; }
.tools-final-cta-inner p { font-size: 0.95rem; color: #999; line-height: 1.9; margin-bottom: 2.5rem; }
.tools-final-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.tools-final-note { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; margin-top: 1.5rem; }

/* ══════════════════════════════════
   TOOL DETAIL MODAL
══════════════════════════════════ */
.tool-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.tool-modal-overlay.open { display: flex; }

.tool-modal-box {
  background: #181510;
  border: 1px solid rgba(184,134,11,0.2);
  max-width: 640px;
  width: 100%;
  position: relative;
  animation: fadeUp 0.3s ease both;
  max-height: 92vh;
  overflow-y: auto;
  margin: auto;
}
.tool-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  z-index: 2;
  transition: color 0.2s;
}
.tool-modal-close:hover { color: var(--cream); }

.tool-modal-content { padding: 2.5rem; }

.modal-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(184,134,11,0.12);
}
.modal-emoji {
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
}
.modal-badge {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,134,11,0.3);
  padding: 0.2rem 0.6rem;
  background: rgba(184,134,11,0.07);
  margin-bottom: 0.5rem;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin: 0 0 0.3rem;
}
.modal-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  opacity: 0.8;
}

.modal-section {
  margin-bottom: 1.8rem;
}
.modal-section h4 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.modal-section p {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.9;
}
.modal-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.modal-features li {
  font-size: 0.82rem;
  color: #888;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.modal-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.35rem;
  top: 0.4em;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid rgba(184,134,11,0.12);
  flex-wrap: wrap;
}
.modal-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.modal-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.modal-price-old {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}
.modal-price-note {
  font-size: 0.7rem;
  color: var(--muted);
  display: block;
  margin-top: 0.2rem;
}
.modal-buy-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.modal-buy-btn:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,134,11,0.3);
  color: var(--ink);
}
.modal-wa-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.7;
}
.modal-wa-note a { color: var(--gold); }

/* ══════════════════════════════════
   WHATSAPP FLOAT — fix for this page
══════════════════════════════════ */
.wa-float {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  left: auto !important;
  width: 58px !important;
  height: 58px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9000 !important;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.wa-float svg { width: 30px !important; height: 30px !important; fill: white !important; }
.wa-float:hover { transform: scale(1.12) !important; }
.wa-tooltip {
  position: absolute !important;
  right: 68px !important;
  left: auto !important;
  background: #1A1710 !important;
  color: #F8F4EC !important;
  font-size: 0.7rem !important;
  padding: 0.4rem 0.8rem !important;
  white-space: nowrap !important;
  border: 1px solid rgba(184,134,11,0.2) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.wa-float:hover .wa-tooltip { opacity: 1 !important; }

/* ══════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .tools-hero { padding: 8rem 1.5rem 4rem; min-height: auto; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-problem-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-why-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-trust-inner { gap: 1rem; }
  .tools-trust-sep { display: none; }
  .tools-trust-item { padding: 0 1rem; }
  .modal-features { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .tools-grid { grid-template-columns: 1fr; }
  .tools-problem-grid { grid-template-columns: 1fr; }
  .tools-why-grid { grid-template-columns: 1fr; }
  .tools-hero-title { font-size: 2.3rem; }
  .tools-hero-cta { flex-direction: column; align-items: center; }
  .tools-hero-pills span { font-size: 0.6rem; }
  .tool-modal-content { padding: 1.5rem; }
  .modal-header { flex-direction: column; gap: 0.8rem; }
  .modal-footer { flex-direction: column; align-items: flex-start; }
  .modal-buy-btn { width: 100%; text-align: center; }
  .tools-final-cta { padding: 4rem 1.5rem; }
  .tools-final-btns { flex-direction: column; align-items: center; }
  .wa-float { bottom: 1.2rem !important; right: 1.2rem !important; width: 52px !important; height: 52px !important; }
  .wa-tooltip { display: none !important; }
}

/* ══════════════════════════════════
   MODAL MEDIA PLACEHOLDERS (regular tools)
══════════════════════════════════ */
.modal-media-section {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-media-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
}
.modal-media-placeholder {
  width: 100%;
  height: 100%;
  background: #f4f3ee;
  border: 2px dashed #ccc;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 1.2rem;
  min-height: 80px;
}
.modal-media-video-ph { min-height: 200px; }
.modal-ph-icon { font-size: 2rem; line-height: 1; }
.modal-ph-label { font-size: 0.85rem; font-weight: 700; color: #444; margin: 0; }
.modal-ph-hint { font-size: 0.7rem; color: #888; margin: 0; }
.modal-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}
.modal-img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.modal-media-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.modal-media-img-ph { aspect-ratio: 4/3; min-height: 80px; }

/* ══════════════════════════════════
   LANDING PAGE PANEL (BillBanao, RojKaHisaab, WA Menu Pro)
══════════════════════════════════ */
.tool-lp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.tool-lp-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.tool-lp-panel {
  width: 100%;
  max-width: 580px;
  height: 100%;
  background: #ffffff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
  position: relative;
}
.tool-lp-overlay.open .tool-lp-panel {
  transform: translateX(0);
}
.tool-lp-close {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #eee;
  padding: 0.9rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.tool-lp-close svg { width: 18px; height: 18px; }
.tool-lp-close:hover { background: #f5f5f0; }

.tool-lp-content {
  flex: 1;
}

/* LP Hero */
.lp-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  color: #fff;
  padding: 2rem 1.5rem 1.8rem;
  border-bottom: 3px solid var(--accent, #f5c518);
}
.lp-hero-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.lp-badge {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-emoji { font-size: 2.2rem; line-height: 1; }
.lp-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  color: #fff;
}
.lp-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #f5c518;
  margin: 0 0 0.7rem;
}
.lp-hero-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}

/* LP Section */
.lp-section {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0ec;
}
.lp-section-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1rem;
}

/* LP Video */
.lp-video-section { background: #0a0a0a; border-bottom: none; padding: 0; }
.lp-video-wrap { width: 100%; aspect-ratio: 16/9; }
.lp-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}
.lp-video-ph-inner {
  text-align: center;
  color: #fff;
  padding: 2rem;
}
.lp-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.lp-ph-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.lp-ph-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 0.6rem;
}
.lp-ph-code {
  display: block;
  font-size: 0.65rem;
  color: #f5c518;
  background: rgba(255,255,255,0.08);
  padding: 6px 10px;
  border-radius: 6px;
  word-break: break-all;
}
.lp-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* LP Images */
.lp-images-section { background: #f7f7f3; }
.lp-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.lp-img-slot { border-radius: 10px; overflow: hidden; }
.lp-img-placeholder {
  aspect-ratio: 4/3;
  background: #eeeee8;
  border: 2px dashed #ccc;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 1rem;
}
.lp-img-placeholder span { font-size: 1.5rem; }
.lp-img-placeholder p { font-size: 0.75rem; font-weight: 700; color: #666; margin: 0; }
.lp-img-placeholder code { font-size: 0.6rem; color: #999; word-break: break-all; }
.lp-img-slot img { width: 100%; display: block; border-radius: 10px; }

/* LP Problem */
.lp-problem-box {
  background: #fff8e1;
  border-left: 4px solid #f5c518;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.lp-problem-icon { font-size: 1.3rem; flex-shrink: 0; }
.lp-problem-box p { font-size: 0.88rem; line-height: 1.6; color: #333; margin: 0; }

/* LP Features */
.lp-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.lp-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: #222;
  line-height: 1.5;
}
.lp-feat-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 1px;
}

/* LP For */
.lp-for-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Trust badges */
.lp-trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 1.2rem 1.5rem;
  background: #f7f7f3;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.lp-trust-item {
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-trust-item span {
  color: #1b9e5a;
  font-size: 1rem;
}

/* LP CTA block */
.lp-cta-block {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.lp-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.lp-price {
  font-size: 2rem;
  font-weight: 800;
  color: #0a0a0a;
}
.lp-price-old {
  font-size: 1.1rem;
  color: #aaa;
  text-decoration: line-through;
}
.lp-price-note {
  font-size: 0.72rem;
  color: #888;
  font-weight: 500;
}
.lp-buy-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #0a0a0a;
  color: #f5c518;
  text-align: center;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.lp-buy-btn:hover { background: #222; transform: translateY(-1px); }
.lp-wa-btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background: #e7f9ee;
  color: #1a7a42;
  text-align: center;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #b8e8cc;
  transition: background 0.2s;
}
.lp-wa-btn:hover { background: #d4f3e0; }

/* LP button on card */
.tool-lp-btn {
  background: linear-gradient(135deg, #0a0a0a, #1a1a2e) !important;
  color: #f5c518 !important;
  border: none !important;
}
.tool-lp-btn:hover { opacity: 0.88; }

/* ── MOBILE TWEAKS for LP panel ── */
@media (max-width: 600px) {
  .tool-lp-panel { max-width: 100%; }
  .lp-title { font-size: 1.5rem; }
  .lp-images-grid { grid-template-columns: 1fr 1fr; }
  .modal-media-images { grid-template-columns: 1fr 1fr; }
  .lp-buy-btn { font-size: 0.95rem; }
}

/* ══════════════════════════════════════
   FIX: Section titles visible on dark backgrounds
   ══════════════════════════════════════ */
.tools-why-section .section-title,
.tools-why-section .section-sub,
.tools-why-section .section-label,
.tools-grid-section .section-title,
.tools-grid-section .section-sub,
.tools-grid-section .section-label,
.hero .section-title,
.hero .section-sub,
.hero .section-label {
  color: var(--cream, #F8F4EC);
}
