/* === Fit Capital — Ads Landing Page === *
 * Loaded only on pages using the "Ads Landing Page" template. Builds on the
 * design tokens + components in main.css; adds the slim conversion header and
 * the feature / stat blocks unique to the landing page. */

/* --- Slim sticky header --- */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(26, 39, 52, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.lp-header-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 12px var(--pad);
  display: flex; align-items: center; gap: 20px;
}
.lp-brand { display: inline-flex; align-items: center; flex-shrink: 0; }
/* Match the main site nav logo size (.brand img). */
.lp-brand img { height: 83px; width: auto; object-fit: contain; }
.lp-header-note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: rgba(255, 255, 255, .75);
  padding-left: 20px; margin-left: 4px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}
.lp-header-note svg { color: var(--copper-2); }
.lp-header-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lp-header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: rgba(255, 255, 255, .92);
  white-space: nowrap;
}
.lp-header-phone:hover { color: var(--copper-2); }
@media (max-width: 720px) {
  .lp-header-note { display: none; }
  .lp-header-inner { gap: 12px; }
  .lp-brand img { height: 70px; }
}

/* --- Feature grid (Why Dubai + trust marks) --- */
.lp-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.lp-feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 26px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lp-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--line-strong); }
.lp-feature-ic {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(183, 110, 60, .12); color: var(--copper);
}
.lp-feature h4 { font-size: 17px; font-weight: 700; color: var(--navy); }
.lp-feature p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-2); }

/* --- Trust band (navy) --- */
.lp-trust-bg { background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy-3) 100%); color: #fff; }
.lp-trust-bg .eyebrow { color: var(--copper-2); }
.lp-trust-bg h2 { color: #fff; }
.lp-trust-bg .section-head .lede { color: rgba(255, 255, 255, .7); }
.lp-trust-bg .lp-feature {
  background: rgba(255, 255, 255, .03);
  border-color: rgba(255, 255, 255, .08);
}
.lp-trust-bg .lp-feature:hover { background: rgba(255, 255, 255, .06); border-color: rgba(183, 110, 60, .5); box-shadow: none; }
.lp-trust-bg .lp-feature h4 { color: #fff; }
.lp-trust-bg .lp-feature p { color: rgba(255, 255, 255, .7); }
.lp-features--trust { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }

/* --- Stats row --- */
.lp-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--r-md);
  overflow: hidden; background: rgba(255, 255, 255, .02);
}
.lp-stat { padding: 30px 28px; border-right: 1px solid rgba(255, 255, 255, .1); }
.lp-stat:last-child { border-right: 0; }
.lp-stat-v { font-size: 38px; font-weight: 300; letter-spacing: -.025em; line-height: 1; color: var(--copper-2); }
.lp-stat-l { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .65); margin-top: 10px; font-weight: 500; }

@media (max-width: 1000px) {
  .lp-features { grid-template-columns: repeat(2, 1fr); }
  .lp-features--trust { grid-template-columns: 1fr; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-stat:nth-child(2) { border-right: 0; }
  .lp-stat:nth-child(1), .lp-stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, .1); }
}
@media (max-width: 560px) {
  .lp-features { grid-template-columns: 1fr; }
}
