/* ═══════════════════════════════════════════════════════
   PRORANK DIGITAL — MASTER STYLESHEET
   prorankdigital.com
═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --navy:       #0b1829;
  --navy-2:     #132035;
  --navy-3:     #1e3250;
  --blue:       #1a6bff;
  --blue-dk:    #1254cc;
  --blue-lt:    #eff4ff;
  --blue-mid:   #dbeafe;
  --white:      #ffffff;
  --off:        #f8fafc;
  --border:     #e2e8f0;
  --text:       #1e293b;
  --muted:      #64748b;
  --green:      #22c55e;
  --amber:      #f59e0b;
  --red:        #ef4444;
  --r:          12px;
  --r-sm:       8px;
  --r-lg:       16px;
  --sh-sm:      0 1px 4px rgba(0,0,0,.05);
  --sh:         0 4px 20px rgba(26,107,255,.09);
  --sh-md:      0 8px 40px rgba(0,0,0,.1);
  --max:        1200px;
  --font-d:     'Sora', sans-serif;
  --font-b:     'DM Sans', sans-serif;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: 16px; line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── LAYOUT ──────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }
section.pad-sm { padding: 64px 0; }
.bg-off   { background: var(--off); }
.bg-blue  { background: var(--blue-lt); }
.bg-navy  { background: var(--navy); }
.bg-navy2 { background: var(--navy-2); }

/* ── TYPE ────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-d); line-height: 1.1; }
h1 { font-size: clamp(38px,5.5vw,62px); font-weight: 800; letter-spacing: -1.8px; color: var(--navy); }
h2 { font-size: clamp(28px,3.8vw,44px); font-weight: 700; letter-spacing: -0.8px; color: var(--navy); }
h3 { font-size: clamp(18px,2vw,22px); font-weight: 700; letter-spacing: -0.3px; color: var(--navy); }
h4 { font-size: 15px; font-weight: 700; color: var(--navy); }
p  { color: var(--muted); line-height: 1.8; }

/* ── EYEBROW ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue-lt); color: var(--blue);
  font-family: var(--font-d); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 20px; padding: 5px 14px;
  margin-bottom: 16px;
}
.eyebrow-w {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.85);
  font-family: var(--font-d); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 20px; padding: 5px 14px;
  margin-bottom: 16px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  border: none; font-family: var(--font-d); font-weight: 600;
  border-radius: var(--r-sm); transition: all .2s;
}
.btn-primary { background: var(--blue); color: #fff; padding: 13px 26px; font-size: 15px; }
.btn-primary:hover { background: var(--blue-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,107,255,.3); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); padding: 11px 24px; font-size: 15px; }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }
.btn-ghost  { background: rgba(255,255,255,.08); color: #fff; border: 2px solid rgba(255,255,255,.2); padding: 11px 24px; font-size: 15px; }
.btn-ghost:hover  { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.15); }
.btn-white  { background: #fff; color: var(--blue); padding: 13px 26px; font-size: 15px; }
.btn-white:hover  { background: var(--blue-lt); }
.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ── SECTION HEADER ──────────────────────────────────── */
.sec-hd { margin-bottom: 56px; }
.sec-hd.center { text-align: center; }
.sec-hd.center p { max-width: 540px; margin: 12px auto 0; font-size: 17px; }
.sec-hd p { font-size: 17px; margin-top: 12px; max-width: 560px; }
.sec-hd h2 { max-width: 680px; }

/* ── CARDS ───────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px;
  box-shadow: var(--sh-sm);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card:hover { border-color: var(--blue); box-shadow: var(--sh); transform: translateY(-3px); }

/* icon box for cards */
.icon-box {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: var(--blue-lt); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px; flex-shrink: 0;
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 28px; height: 68px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); color: #fff; font-size: 13px; font-weight: 800;
}
.nav-logo-name { font-family: var(--font-d); font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; line-height: 1.1; }
.nav-logo-name span { color: var(--blue); }
.nav-logo-sub { font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-d); font-size: 13px; font-weight: 600;
  color: var(--text); text-decoration: none;
  padding: 6px 13px; border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-lt); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 4px; padding: 4px; border-radius: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all .25s;
}
.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 28px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.nav-mobile a {
  font-family: var(--font-d); font-size: 15px; font-weight: 600;
  color: var(--text); text-decoration: none;
  padding: 10px 14px; border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-mobile a:hover { background: var(--blue-lt); color: var(--blue); }
.nav-mobile.open { display: flex; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 500px) { .nav-inner { padding: 0 18px; } }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: var(--navy); padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-name { font-family: var(--font-d); font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.footer-brand-name span { color: var(--blue); }
.footer-brand-sub { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 1px; }
.footer-brand p { font-size: 14px; color: #64748b; line-height: 1.75; margin-top: 14px; max-width: 280px; }
.footer-badge {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,107,255,.1); border: 1px solid rgba(26,107,255,.2);
  border-radius: 8px; padding: 10px 14px;
  font-size: 12px; color: #93c5fd; font-weight: 600;
}
.footer-col h5 {
  font-family: var(--font-d); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #94a3b8; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; color: #64748b; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1e2d44; padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #475569; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--blue); text-decoration: none; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── HERO DOTS PATTERN ───────────────────────────────── */
.hero-dots {
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; background: var(--white); box-shadow: var(--sh-sm);
}
.stat-item {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-d); font-size: 36px; font-weight: 800;
  color: var(--blue); line-height: 1; letter-spacing: -1px;
}
.stat-l { font-size: 13px; color: var(--muted); margin-top: 5px; font-weight: 500; }
@media (max-width: 700px) {
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
}

/* ── REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1{transition-delay:.07s} .d2{transition-delay:.14s}
.d3{transition-delay:.21s} .d4{transition-delay:.28s}

/* ── GRID HELPERS ────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}

/* ── CHECK LIST ──────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text); line-height: 1.6;
}
.check-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 20px; height: 20px;
  background: #dcfce7; color: var(--green);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; margin-top: 2px;
}

/* ── FORM ────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; font-family: var(--font-d); }
.form-label .req { color: var(--blue); }
.form-ctrl {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font-b); font-size: 15px; color: var(--navy);
  background: var(--white); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-ctrl:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,107,255,.12); }
textarea.form-ctrl { resize: vertical; min-height: 120px; }
select.form-ctrl { cursor: pointer; }

/* ── LEGAL PAGES ─────────────────────────────────────── */
.legal-hero {
  background: var(--navy); padding: 80px 0 60px;
  text-align: center;
}
.legal-hero h1 { color: #fff; font-size: clamp(28px,4vw,44px); }
.legal-hero p { color: #94a3b8; max-width: 500px; margin: 12px auto 0; }
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 40px 0 12px; }
.legal-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.legal-body p { font-size: 15px; color: var(--text); margin-bottom: 14px; }
.legal-body ul { padding-left: 20px; margin-bottom: 14px; }
.legal-body li { font-size: 15px; color: var(--text); margin-bottom: 7px; line-height: 1.7; }
.legal-body a { color: var(--blue); text-decoration: underline; }
.legal-last-updated {
  display: inline-block; background: var(--blue-lt); color: var(--blue);
  border-radius: var(--r-sm); padding: 6px 14px;
  font-size: 13px; font-weight: 600; margin-bottom: 32px;
}
