/* Parichay — Legal / content pages */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --blue: #0d3a8a; --blue-light: #1e54b8; --blue-deep: #001f54;
  --green: #01c8a2; --green-deep: #00a886;
  --dark: #04143a; --light: #f6f8fc;
  --ink: #0b1f44; --ink-soft: #2c3a57; --muted: #5d6b86; --line: #e3e9f3;
  --grad-brand: linear-gradient(135deg, var(--blue-light), var(--blue) 55%, var(--blue-deep));
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --maxw: 820px;
  --gutter: clamp(20px, 5vw, 56px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding-top: 76px; font-family: var(--font-body); color: var(--ink); background: var(--light); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }

/* ---- Shared full-width wrap (nav / footer) ---- */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding-inline: var(--gutter); }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; padding: 11px 22px; border-radius: 100px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap; text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: 0 18px 40px -14px rgba(13,58,138,0.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 48px -14px rgba(13,58,138,0.6); text-decoration: none; }

/* ---- Nav ---- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; background: transparent; transition: background 0.3s, border-color 0.3s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(248,250,252,0.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.34rem; letter-spacing: -0.02em; color: var(--ink); }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); padding: 8px 14px; border-radius: 10px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--blue); background: rgba(13,58,138,0.06); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }
.nav-toggle span + span { margin-top: 6px; }

/* ---- Footer ---- */
.footer { background: var(--dark); color: #cbd5e1; padding-block: clamp(56px,6vw,80px) 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px,4vw,56px); padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: #94a3b8; font-size: 0.95rem; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.07); display: grid; place-items: center; color: #cbd5e1; transition: background 0.2s, color 0.2s, transform 0.2s; }
.footer-social a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); text-decoration: none; }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-size: 0.92rem; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 18px; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; list-style: none; padding: 0; margin: 0; }
.footer-col a { color: #94a3b8; font-size: 0.94rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); text-decoration: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; padding-top: 26px; color: #64748b; font-size: 0.88rem; }
.footer-bottom .pwr { display: inline-flex; align-items: center; gap: 6px; }

/* ---- Responsive nav/footer ---- */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: rgba(248,250,252,0.97); backdrop-filter: blur(16px); padding: 16px var(--gutter) 24px; gap: 4px; border-bottom: 1px solid var(--line); }
  .nav-links.open a { padding: 13px 14px; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ---- Legacy nav (kept for reference) ---- */
.lnav { position: sticky; top: 0; z-index: 50; background: rgba(248,250,252,0.86); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.lnav-inner { max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); height: 72px; display: flex; align-items: center; justify-content: space-between; }
.lbrand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--ink); letter-spacing: -0.02em; }
.lbrand img { height: 34px; }
.lback { font-weight: 700; font-size: 0.92rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 7px; }
.lback:hover { color: var(--blue); text-decoration: none; }

.lhero { background: var(--grad-brand); color: #fff; padding: clamp(48px,7vw,84px) 0 clamp(40px,6vw,68px); position: relative; overflow: hidden; }
.lhero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(1,200,162,0.45), transparent 70%); }
.lhero .lwrap { position: relative; z-index: 1; }
.lwrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.lhero .tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 13px; border-radius: 100px; background: rgba(255,255,255,0.16); }
.lhero .tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(1,200,162,0.3); }
.lhero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.02em; margin: 18px 0 10px; line-height: 1.08; }
.lhero .updated { opacity: 0.9; font-size: 0.95rem; }

.lbody { padding: clamp(40px,6vw,72px) 0 clamp(56px,7vw,96px); }
.lbody h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.01em; margin: 38px 0 12px; color: var(--ink); }
.lbody h2:first-child { margin-top: 0; }
.lbody h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; margin: 24px 0 8px; }
.lbody p { margin: 0 0 14px; color: var(--ink-soft); }
.lbody ul { margin: 0 0 16px; padding-left: 0; list-style: none; }
.lbody li { position: relative; padding-left: 26px; margin-bottom: 9px; color: var(--ink-soft); }
.lbody li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.lbody strong { color: var(--ink); }
.callout { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: 12px; padding: 18px 20px; margin: 22px 0; box-shadow: 0 1px 3px rgba(15,23,42,0.05); }
.callout.green { border-left-color: var(--green); }
.callout p:last-child { margin-bottom: 0; }
.actions-box { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; margin: 24px 0; box-shadow: 0 8px 24px -12px rgba(15,23,42,0.12); }
.actions-box .btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; background: var(--grad-brand); color: #fff; padding: 13px 22px; border-radius: 100px; border: none; cursor: pointer; font-size: 0.96rem; margin-top: 6px; }
.actions-box .btn:hover { text-decoration: none; transform: translateY(-2px); transition: transform .2s; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-weight: 700; font-size: 0.86rem; }
.field input, .field textarea { font-family: var(--font-body); font-size: 0.96rem; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(13,58,138,0.1); }

.lfoot { border-top: 1px solid var(--line); padding: 28px 0; }
.lfoot .lwrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; color: var(--muted); font-size: 0.88rem; }
.lfoot a { color: var(--muted); }
.lfoot nav { display: flex; flex-wrap: wrap; gap: 16px; }
