/* Shared styles for static SEO landing pages (gaphap.com /lp).
   Self-contained, theme-independent (these pages do NOT use the WASM app theme). */

:root {
  --bg: #00170C;
  --bg2: #002010;
  --card: #002513;
  --line: rgba(243, 231, 211, 0.12);
  --text: #f3e7d3;
  --muted: rgba(243, 231, 211, 0.74);
  --muted2: rgba(243, 231, 211, 0.55);
  --accent: #34d399;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; margin: 0 0 .5em; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

.grad {
  background: linear-gradient(120deg, #34d399 0%, #22d3ee 45%, #60a5fa 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0, 23, 12, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { font-family: 'Fraunces', serif; font-weight: 700; font-size: 19px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
@media (max-width: 760px) { .nav-links .hide-sm { display: none; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 15px;
  background: linear-gradient(120deg, #34d399, #22d3ee 55%, #60a5fa);
  color: #00170C; border: 0; cursor: pointer;
}
.btn:hover { filter: brightness(1.06); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 21px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid var(--line); color: var(--text); background: transparent;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Hero */
.hero { padding: 78px 0 56px; text-align: center; }
.hero h1 { font-size: clamp(34px, 6vw, 58px); font-weight: 700; }
.hero p.lead { font-size: clamp(17px, 2.2vw, 21px); color: var(--muted); max-width: 720px; margin: 0 auto 26px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.trust { margin-top: 22px; color: var(--muted2); font-size: 14px; }
.trust b { color: var(--text); font-weight: 600; }

/* Sections */
section { padding: 56px 0; }
.alt { background: var(--bg2); }
.kicker { text-transform: uppercase; letter-spacing: .14em; font-size: 12.5px; font-weight: 700; color: var(--accent); margin-bottom: 10px; }
h2.sec { font-size: clamp(26px, 4vw, 38px); font-weight: 700; }
.sec-intro { color: var(--muted); max-width: 680px; margin-bottom: 34px; }

/* Grid cards */
.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px;
}
.card h3 { font-size: 19px; font-weight: 600; }
.card p { color: var(--muted); font-size: 15px; margin: 0; }

/* Pricing */
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card.feat { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
.badge {
  position: absolute; top: -11px; left: 22px; background: var(--accent); color: #00170C;
  font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.price { font-family: 'Fraunces', serif; font-size: 34px; font-weight: 700; margin: 6px 0 2px; }
.price small { font-size: 15px; color: var(--muted2); font-family: 'Inter', sans-serif; font-weight: 500; }
.timeline { color: var(--accent); font-size: 13.5px; font-weight: 600; margin-bottom: 14px; }
.feats { list-style: none; padding: 0; margin: 0 0 20px; }
.feats li { padding: 5px 0 5px 24px; position: relative; color: var(--muted); font-size: 14.5px; }
.feats li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.price-card .btn, .price-card .btn-ghost { margin-top: auto; justify-content: center; }

/* Steps */
.step { display: flex; gap: 16px; align-items: flex-start; }
.step .num {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(120deg, #34d399, #60a5fa); color: #00170C;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Fraunces', serif;
}
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 2px; }
.step p { color: var(--muted); margin: 0; font-size: 15px; }

/* FAQ */
details {
  border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin-bottom: 12px; background: var(--card);
}
details summary { cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; float: right; color: var(--accent); font-weight: 800; }
details[open] summary::after { content: "\2013"; }
details p { color: var(--muted); margin: 12px 0 0; font-size: 15px; }

/* Contact / NAP */
.nap { display: grid; gap: 10px; font-size: 15.5px; }
.nap a { color: var(--accent); }
.nap .row { color: var(--muted); }
.nap .row b { color: var(--text); font-weight: 600; }

/* Internal link mesh (services & areas) — reuses .btn-ghost pills */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }

footer { border-top: 1px solid var(--line); padding: 30px 0; color: var(--muted2); font-size: 14px; }
footer a { color: var(--muted); }
footer a:hover { color: var(--text); }
.foot-row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
