/* ============================================================
   FAITH & HOPE — SHARED BRAND SYSTEM v2
   Primary: #155293 (Royal Blue)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Backgrounds */
  --bg:           #0a0f18;
  --bg-alt:       #0d1420;
  --card:         #111928;
  --card-mid:     #162035;

  /* Brand Blue */
  --blue:         #155293;
  --blue-light:   #1e6db8;
  --blue-bright:  #2280d4;
  --blue-dim:     rgba(21,82,147,0.15);
  --blue-glow:    rgba(21,82,147,0.35);
  --blue-border:  rgba(21,82,147,0.3);

  /* Accent — light ice blue for highlights */
  --ice:          #7db8e8;
  --ice-dim:      rgba(125,184,232,0.12);

  /* Text */
  --white:        #FFFFFF;
  --off-white:    #E8EEF5;
  --muted:        #6B7A92;
  --muted-light:  #9BAFC8;

  /* Utility */
  --border:       rgba(255,255,255,0.07);
  --red:          #E05C5C;

  /* Type */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Radius */
  --radius:       8px;
  --radius-sm:    5px;
  --radius-lg:    12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.fh-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(10,15,24,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--blue-border);
}
.fh-nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.fh-nav-logo img { height: 38px; width: auto; display: block; object-fit: contain; }
.fh-nav-divider { width: 1px; height: 22px; background: var(--blue-border); }
.fh-nav-service {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
}
.fh-nav-cta {
  background: var(--blue); color: #fff;
  padding: 0.55rem 1.4rem; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  text-decoration: none; letter-spacing: 0.01em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}
.fh-nav-cta:hover { background: var(--blue-light); box-shadow: 0 4px 24px var(--blue-glow); transform: translateY(-1px); }

/* ── TYPOGRAPHY ── */
.display-xl { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.03em; }
.display-lg { font-family: var(--font-display); font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
.display-md { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  color: var(--ice); text-transform: uppercase; letter-spacing: 0.14em;
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem;
}
.eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--blue-bright); flex-shrink: 0; }

.body-lead { font-size: 1.05rem; font-weight: 300; color: var(--muted-light); line-height: 1.8; max-width: 600px; }
.body-sm { font-size: 0.87rem; font-weight: 300; color: var(--muted); line-height: 1.75; }
.blue-text { color: var(--blue-bright); }
.ice-text  { color: var(--ice); }
.blue-rule { width: 40px; height: 2px; background: var(--blue); border-radius: 2px; margin: 1.2rem 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--blue); color: #fff;
  padding: 0.9rem 2rem; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  line-height: 1.3;
}
.btn-primary:hover { background: var(--blue-light); box-shadow: 0 6px 32px var(--blue-glow); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--blue-border); color: var(--muted-light);
  padding: 0.9rem 1.6rem; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 400;
  text-decoration: none; cursor: pointer; background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--blue-bright); color: var(--ice); background: var(--blue-dim); }

/* ── SECTIONS ── */
.section-pad { padding: 6.5rem 5%; }
.section-alt  { background: var(--bg-alt); }
.section-card { background: var(--card); }

/* ── SERVICE CARDS ── */
.srv-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: border-color 0.25s, transform 0.25s; }
.srv-card:hover { border-color: var(--blue-border); transform: translateY(-3px); }
.srv-card-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--blue-dim); border: 1px solid var(--blue-border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 1.2rem; }
.srv-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.9rem; color: var(--white); letter-spacing: -0.01em; }
.srv-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.srv-card ul li { font-size: 0.82rem; color: var(--muted); display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.45; }
.srv-card ul li::before { content: '→'; color: var(--blue-bright); font-size: 0.7rem; margin-top: 0.1rem; flex-shrink: 0; }

/* ── PAIN LIST ── */
.pain-item { display: flex; align-items: center; gap: 0.85rem; padding: 0.8rem 1.1rem; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--muted-light); transition: background 0.2s; }
.pain-item:last-child { border-bottom: none; }
.pain-item:hover { background: rgba(224,92,92,0.05); }
.pain-x { color: var(--red); font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.92rem; color: var(--muted-light); padding: 0.65rem 0.9rem; border: 1px solid transparent; border-radius: var(--radius-sm); transition: all 0.2s; }
.check-list li:hover { border-color: var(--blue-border); background: var(--blue-dim); color: var(--off-white); }
.check-list li::before { content: '✓'; color: var(--blue-bright); font-weight: 700; flex-shrink: 0; }

/* ── DIFF CARDS ── */
.diff-card { background: var(--card); border: 1px solid var(--border); border-left: 2px solid var(--blue); border-radius: var(--radius-sm); padding: 1.3rem 1.5rem; transition: transform 0.2s; }
.diff-card:hover { transform: translateX(5px); }
.diff-card h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--white); }
.diff-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ── PACKAGE CARDS ── */
.pkg-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.2rem; position: relative; transition: transform 0.25s, border-color 0.25s; }
.pkg-card:hover { transform: translateY(-5px); }
.pkg-card.featured { border-color: var(--blue); background: linear-gradient(155deg, var(--card), rgba(21,82,147,0.08)); }
.pkg-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 0.22rem 0.8rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.07em; white-space: nowrap; }
.pkg-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 0.3rem; color: var(--white); }
.pkg-ideal { font-size: 0.83rem; color: var(--muted); margin-bottom: 1.3rem; line-height: 1.55; }
.pkg-price { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--blue-bright); margin-bottom: 0.2rem; }
.pkg-price-note { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.6rem; }
.pkg-includes { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.6rem; }
.pkg-includes li { font-size: 0.82rem; color: var(--muted); display: flex; align-items: flex-start; gap: 0.5rem; }
.pkg-includes li::before { content: '✓'; color: var(--blue-bright); font-weight: 700; flex-shrink: 0; }

/* ── FORM ── */
.fh-form { display: flex; flex-direction: column; gap: 1rem; }
.fh-label { font-size: 0.7rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 0.35rem; }
.fh-input { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.78rem 1rem; color: var(--off-white); font-family: var(--font-body); font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
.fh-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,82,147,0.15); }
.fh-input::placeholder { color: var(--muted); }
.fh-submit { width: 100%; padding: 0.92rem; background: var(--blue); color: #fff; border: none; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background 0.2s, box-shadow 0.2s, transform 0.15s; }
.fh-submit:hover { background: var(--blue-light); box-shadow: 0 4px 28px var(--blue-glow); transform: translateY(-1px); }
.fh-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Form states */
.form-msg { margin-top: 0.8rem; padding: 0.8rem 1rem; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500; display: none; }
.form-msg.success { background: rgba(21,82,147,0.15); border: 1px solid var(--blue-border); color: var(--ice); display: block; }
.form-msg.error { background: rgba(224,92,92,0.1); border: 1px solid rgba(224,92,92,0.3); color: #f08080; display: block; }

/* ── STAT CARDS ── */
.stat-card { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--blue-bright); line-height: 1; }
.stat-lbl { font-size: 0.75rem; color: var(--muted); margin-top: 0.3rem; }

/* ── TAG CHIPS ── */
.tag-chip { display: inline-block; background: var(--blue-dim); border: 1px solid var(--blue-border); color: var(--ice); font-size: 0.73rem; font-weight: 500; padding: 0.22rem 0.65rem; border-radius: 3px; }

/* ── CTA CARD ── */
.cta-card { background: var(--blue-dim); border: 1px solid var(--blue-border); border-radius: var(--radius-lg); padding: 2rem; }

/* ── FOOTER ── */
.fh-footer { background: var(--card); border-top: 1px solid var(--blue-border); padding: 2.4rem 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.2rem; }
.fh-footer-logo img { height: 32px; width: auto; object-fit: contain; }
.fh-footer-tag { font-size: 0.78rem; color: var(--muted); max-width: 360px; text-align: center; line-height: 1.55; }
.fh-footer-copy { font-size: 0.74rem; color: var(--muted); }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-lines { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } .section-pad { padding: 5rem 5%; } }
@media (max-width: 600px) { .section-pad { padding: 4rem 5%; } .fh-footer { flex-direction: column; text-align: center; } .fh-footer-tag { max-width: 100%; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }
