/* ═══════════════════════════════════════════════════════
   InPro — Master Stylesheet
   Design: Corporate, Edjuster/Enservio-inspired
   Updated: 2026
═══════════════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --navy:        #0c1f3c;
  --navy-mid:    #152848;
  --navy-light:  #1e3a5f;
  --blue:        #1a6dbb;
  --blue-dark:   #155fa0;
  --blue-light:  #dbeafe;
  --teal:        #0d9488;
  --teal-dark:   #0a7a70;
  --teal-light:  #ccfbf1;
  --accent:      #5bc0f8;
  --warn:        #d97706;
  --warn-light:  #fef3c7;
  --success:     #16a34a;
  --success-light:#dcfce7;
  --bg:          #f4f7fb;
  --bg-alt:      #eef2f9;
  --panel:       #ffffff;
  --text:        #1a2332;
  --muted:       #5e6b7c;
  --line:        #dde3ee;
  --shadow-sm:   0 2px 10px rgba(0,0,0,.06);
  --shadow:      0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.13);
  --radius:      14px;
  --radius-lg:   20px;
  --max:         1180px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; color: var(--text); }
ul { list-style: none; }

/* ─── Layout ─── */
.container   { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section     { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 2px 24px rgba(0,0,0,.22);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.brand-icon { display: none; }
.brand-wordmark {
  font-size: 29px; font-weight: 800;
  letter-spacing: -0.5px; color: #fff; line-height: 1;
}
.brand-wordmark .hi { color: #fff; }

.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.72); font-weight: 600; font-size: 14.5px;
  padding: 8px 13px; border-radius: 8px;
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.10); }

.nav-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.btn-nav {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 16px; border-radius: 9px;
  font-weight: 700; font-size: 13.5px;
  cursor: pointer; transition: all .15s; white-space: nowrap;
  border: 1px solid transparent; text-decoration: none;
}
.btn-nav.submit-nav { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-nav.submit-nav:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-nav.qcl-nav {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.20);
}
.btn-nav.qcl-nav:hover { background: rgba(255,255,255,.15); color: #fff; }
.btn-nav.qcl-nav .qcl-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 6px var(--accent);
}

.burger {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.20); background: rgba(255,255,255,.08);
  color: #fff; cursor: pointer; align-items: center; justify-content: center; flex-shrink: 0;
}
.mobile-nav {
  display: none; background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.08); padding: 8px 0 16px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 13px 24px;
  color: rgba(255,255,255,.78); font-weight: 600; font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,.05); transition: color .15s;
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav .mob-ctas { display: flex; flex-direction: column; gap: 10px; padding: 14px 24px 0; }

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px;
  cursor: pointer; border: 2px solid transparent;
  transition: all .15s; white-space: nowrap; text-decoration: none;
}
.btn.lg { padding: 15px 30px; font-size: 16px; border-radius: 12px; }
.btn.sm { padding: 9px 18px; font-size: 13.5px; border-radius: 10px; }
.btn.full { width: 100%; }

.btn.primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn.primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,109,187,.35); }

.btn.teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn.teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(13,148,136,.35); }

.btn.outline { background: transparent; color: var(--text); border-color: var(--line); }
.btn.outline:hover { border-color: var(--blue); color: var(--blue); }

.btn.outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn.outline-white:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.75); }

.btn.white { background: #fff; color: var(--navy); border-color: #fff; }
.btn.white:hover { background: #f0f4ff; transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,109,187,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px;
  padding: 90px 0 80px; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,192,248,.12); border: 1px solid rgba(91,192,248,.25);
  color: var(--accent); font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  font-size: clamp(32px, 4vw, 50px); font-weight: 800; color: #fff;
  letter-spacing: -1px; margin-bottom: 20px; line-height: 1.1;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.65; margin-bottom: 36px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.55); font-size: 13px; font-weight: 600; }
.trust-item svg { color: var(--teal); flex-shrink: 0; }

.hero-image-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.40); aspect-ratio: 4/3;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(12,31,60,.88); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 12px 16px; color: #fff; font-size: 13px;
}
.hero-image-badge strong { display: block; font-size: 15px; color: var(--accent); margin-bottom: 2px; }

/* ═══════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════ */
.stats-bar { background: var(--navy-mid); border-bottom: 1px solid rgba(255,255,255,.07); }
.stats-inner { display: flex; align-items: stretch; justify-content: space-between; }
.stat { flex: 1; text-align: center; padding: 22px 16px; border-right: 1px solid rgba(255,255,255,.07); }
.stat:last-child { border-right: none; }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.stat-val   { font-size: 15px; font-weight: 700; color: #fff; }
.stat-val.accent { color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   KEY LINE BANNER
═══════════════════════════════════════════════════════ */
.banner-section { padding: 0; }
.banner-card {
  background: var(--blue); padding: 28px 36px;
  display: flex; align-items: center; gap: 18px;
}
.banner-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: rgba(255,255,255,.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.banner-text { font-size: 18px; font-weight: 700; color: #fff; font-style: italic; line-height: 1.4; }

/* ═══════════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════════ */
.sec-eyebrow {
  display: inline-block; font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
}
.sec-eyebrow.blue { color: var(--blue); }
.sec-h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 14px; color: var(--text);
}
.sec-h2.white { color: #fff; }
.sec-sub { font-size: 16.5px; color: var(--muted); line-height: 1.65; max-width: 680px; }
.sec-sub.white { color: rgba(255,255,255,.70); max-width: 640px; }
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .sec-sub { margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   GRIDS
═══════════════════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ═══════════════════════════════════════════════════════
   PROBLEM CARDS
═══════════════════════════════════════════════════════ */
.problem-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.problem-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.prob-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.prob-icon.warn { background: var(--warn-light); color: var(--warn); }
.prob-icon.blue { background: var(--blue-light); color: var(--blue); }
.problem-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.problem-card p  { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   CHECKLIST / DIFFERENTIATORS
═══════════════════════════════════════════════════════ */
.diff-list { display: flex; flex-direction: column; gap: 20px; }
.diff-item { display: flex; gap: 14px; align-items: flex-start; }
.diff-check {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.diff-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.diff-item p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════
   EXPERT WITNESS STORY
═══════════════════════════════════════════════════════ */
.story-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg); padding: 44px 48px;
  position: relative; overflow: hidden;
}
.story-block::before {
  content: '\201C'; position: absolute; top: -10px; left: 28px;
  font-size: 180px; line-height: 1; font-weight: 900;
  color: rgba(91,192,248,.10); font-family: Georgia, serif; pointer-events: none;
}
.story-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(13,148,136,.20); border: 1px solid rgba(13,148,136,.35);
  color: #5eead4; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px; margin-bottom: 18px;
}
.story-block p { font-size: 16.5px; color: rgba(255,255,255,.82); line-height: 1.75; margin-bottom: 12px; }
.story-block p strong { color: #fff; }
.story-outcome {
  margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; gap: 12px;
}
.outcome-badge {
  background: var(--teal); color: #fff; font-size: 12px; font-weight: 700;
  letter-spacing: .5px; padding: 5px 12px; border-radius: 50px; white-space: nowrap;
}
.story-outcome p { font-size: 14px; color: rgba(255,255,255,.60); margin: 0; }

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.primary-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.supporting-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.service-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.service-card.primary-service {
  border-color: var(--blue); border-width: 2px;
  background: linear-gradient(to bottom right, #fff, #f0f6ff);
}
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.service-icon.blue { background: var(--blue-light); color: var(--blue); }
.service-icon.teal { background: var(--teal-light); color: var(--teal); }
.service-icon.navy { background: rgba(12,31,60,.08); color: var(--navy); }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card p  { font-size: 14.5px; color: var(--muted); line-height: 1.6; flex: 1; }
.service-tag {
  display: inline-block; margin-top: 16px; font-size: 11.5px; font-weight: 700;
  letter-spacing: .6px; text-transform: uppercase; color: var(--blue);
  background: var(--blue-light); padding: 4px 10px; border-radius: 6px;
}
.service-tag.teal { color: var(--teal); background: var(--teal-light); }

/* ═══════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════ */
.process-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 8%; right: 8%;
  height: 2px; background: linear-gradient(to right, var(--blue), var(--teal)); z-index: 0;
}
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy);
  border: 3px solid var(--blue); color: #fff; font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  box-shadow: 0 0 0 5px var(--bg-alt); transition: background .2s;
}
.step-item:hover .step-num { background: var(--blue); }
.step-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   AUDIENCE
═══════════════════════════════════════════════════════ */
.audience-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s; border-top: 3px solid var(--blue);
}
.audience-card.teal { border-top-color: var(--teal); }
.audience-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.audience-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.audience-icon.teal { background: var(--teal-light); color: var(--teal); }
.audience-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.audience-card p  { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials-section { background: var(--navy); padding: 88px 0; }
.testimonial-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius); padding: 28px 24px; position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 12px; left: 20px;
  font-size: 56px; line-height: 1; font-weight: 900;
  color: rgba(91,192,248,.25); font-family: Georgia, serif; pointer-events: none;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { color: #fbbf24; }
.testimonial-text { font-size: 15px; color: rgba(255,255,255,.80); line-height: 1.7; margin-bottom: 20px; padding-top: 12px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-light); border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.author-name  { font-size: 13.5px; font-weight: 700; color: #fff; }
.author-title { font-size: 12px; color: rgba(255,255,255,.45); }

/* ═══════════════════════════════════════════════════════
   WHAT YOU RECEIVE
═══════════════════════════════════════════════════════ */
.output-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow);
}
.oc-title {
  font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.oc-items { display: flex; flex-direction: column; gap: 18px; }
.oc-item  { display: flex; gap: 14px; align-items: flex-start; }
.oc-icon  { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.oc-icon.blue { background: var(--blue-light); color: var(--blue); }
.oc-icon.teal { background: var(--teal-light); color: var(--teal); }
.oc-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.oc-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-light) 100%);
  text-align: center; padding: 88px 0;
}
.cta-section h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -.5px; }
.cta-section p  { font-size: 17px; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer { background: var(--navy); padding: 64px 0 28px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.50); line-height: 1.65; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.40); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,.60); transition: color .15s; }
.footer-col li a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.60); margin-bottom: 10px; }
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.60); }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (sub-pages)
═══════════════════════════════════════════════════════ */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 64px 0 56px; }
.page-hero .sec-eyebrow { color: var(--accent); }
.page-hero h1 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-bottom: 14px; }
.page-hero p  { font-size: 17px; color: rgba(255,255,255,.68); max-width: 600px; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════ */
.form-section { padding: 72px 0; }
.form-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.form-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 44px; box-shadow: var(--shadow); }
.form-section-label {
  font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-light); display: flex; align-items: center; gap: 8px;
}
.form-group { margin-bottom: 20px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.form-spacer { margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }

label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
label .req { color: var(--blue); margin-left: 2px; }

input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="number"], select, textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; font-size: 15px; color: var(--text);
  background: #fff; transition: border-color .15s, box-shadow .15s; font-family: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,109,187,.12);
}
input::placeholder, textarea::placeholder { color: #b0bbc8; }
textarea { min-height: 110px; resize: vertical; }
select { cursor: pointer; }
.form-hint { font-size: 12.5px; color: var(--muted); margin-top: 5px; }

.file-upload-area {
  border: 2px dashed var(--line); border-radius: 12px; padding: 32px 24px;
  text-align: center; background: var(--bg); cursor: pointer;
  transition: border-color .2s, background .2s;
}
.file-upload-area:hover, .file-upload-area.dragover { border-color: var(--blue); background: #eff6ff; }
.file-upload-area p { font-size: 14px; color: var(--muted); }
.file-upload-area strong { color: var(--blue); cursor: pointer; }
.file-types { font-size: 12px; color: var(--muted); margin-top: 6px; }
.file-list { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.file-item { font-size: 13px; color: var(--teal); display: flex; align-items: center; gap: 6px; }

.form-submit-row { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.form-submit-row p { font-size: 13px; color: var(--muted); }

.form-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.sidebar-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.sidebar-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.sidebar-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.sidebar-list li { font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.sidebar-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.sidebar-urgent {
  background: linear-gradient(135deg, var(--teal) 0%, #0a7a70 100%);
  border-radius: var(--radius); padding: 22px; color: #fff;
}
.sidebar-urgent h4 { color: #fff; font-size: 14px; margin-bottom: 8px; }
.sidebar-urgent p  { font-size: 13.5px; color: rgba(255,255,255,.80); line-height: 1.5; }
.sidebar-urgent a  { color: #fff; font-weight: 700; text-decoration: underline; }

.alert-box { border-radius: 10px; padding: 16px 20px; font-size: 15px; font-weight: 600; margin-bottom: 24px; display: flex; align-items: flex-start; gap: 12px; }
.alert-box.success { background: #dcfce7; border: 1px solid #86efac; color: #15803d; }
.alert-box.error   { background: #fef2f2; border: 1px solid #fca5a5; color: #dc2626; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.contact-info-card { background: var(--navy); border-radius: var(--radius-lg); padding: 32px; }
.contact-info-card h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,.60); font-size: 14px; margin-bottom: 28px; line-height: 1.6; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-item-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-item-body .label { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: rgba(255,255,255,.40); margin-bottom: 3px; }
.contact-item-body .value { font-size: 14px; color: rgba(255,255,255,.80); }
.contact-item-body .value a { color: rgba(255,255,255,.80); }
.contact-item-body .value a:hover { color: #fff; }

/* About page */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.profile-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); text-align: center; }
.profile-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 4px solid var(--blue-light); }
.profile-name  { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.profile-title { font-size: 14px; color: var(--teal); font-weight: 600; margin-bottom: 16px; }
.credential-list { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; text-align: left; }
.credential-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--muted); }
.credential-item::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   QCL LOGIN PAGE
═══════════════════════════════════════════════════════ */
body.login-page {
  background: linear-gradient(135deg, #080f1e 0%, #0c1f3c 50%, #1a3a6a 100%);
  min-height: 100vh; display: flex; flex-direction: column;
}
.login-particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%; background: rgba(91,192,248,.12);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-120px) scale(1.2); opacity: 0; }
}
.login-nav {
  background: rgba(0,0,0,.30); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 24px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 10;
}
.login-nav .brand-wordmark { font-size: 22px; }
.login-wrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 24px; position: relative; z-index: 10; }
.login-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px; padding: 44px 40px; width: 100%; max-width: 440px;
  backdrop-filter: blur(20px); box-shadow: 0 24px 60px rgba(0,0,0,.50);
}
.login-logo-wrap { text-align: center; margin-bottom: 30px; }
.login-logo-wrap img { height: 52px; margin: 0 auto 10px; filter: brightness(0) invert(1); opacity: .85; }
.qcl-logo-text { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.qcl-logo-text span { color: var(--accent); }
.login-sys-name { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 4px; }
.login-title { font-size: 20px; font-weight: 800; color: #fff; text-align: center; margin-bottom: 6px; }
.login-sub   { font-size: 13.5px; color: rgba(255,255,255,.45); text-align: center; margin-bottom: 28px; }
.login-form  { display: flex; flex-direction: column; gap: 16px; }
.login-form label { font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: rgba(255,255,255,.50); margin-bottom: 6px; }
.login-form input[type="text"], .login-form input[type="password"], .login-form input[type="email"] {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); color: #fff;
}
.login-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(91,192,248,.15); }
.login-form input::placeholder { color: rgba(255,255,255,.22); }
.btn-login {
  width: 100%; padding: 14px; background: linear-gradient(135deg, var(--blue), #2683d6);
  color: #fff; border: none; border-radius: 12px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: opacity .2s, transform .15s; margin-top: 4px;
  font-family: inherit;
}
.btn-login:hover { opacity: .90; transform: translateY(-1px); }
.login-links { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.login-links a { font-size: 13px; color: rgba(255,255,255,.40); transition: color .15s; }
.login-links a:hover { color: rgba(255,255,255,.75); }
hr.login-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 22px 0; }
.login-footer-note { text-align: center; font-size: 12px; color: rgba(255,255,255,.25); margin-top: 28px; line-height: 1.6; }
.status-indicator { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: rgba(255,255,255,.40); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 6px #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4, .supporting-services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .process-steps::before { display: none; }
  .form-layout { grid-template-columns: 1fr; }
  .form-sidebar { flex-direction: row; flex-wrap: wrap; }
  .form-sidebar > * { flex: 1; min-width: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image-wrap { aspect-ratio: 16/9; }
  .stats-inner { flex-wrap: wrap; }
  .stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .grid-2, .grid-3, .split-grid, .primary-services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .banner-card { flex-direction: column; text-align: center; padding: 24px; }
  .story-block { padding: 28px 22px; }
  .form-submit-row { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
}
