/* =========================================================
   Consuro — shared stylesheet
   Design system carried over from the approved homepage mockup
   ========================================================= */

:root {
  --navy: #0F2A3D;
  --navy-line: #1A3A50;
  --orange: #D86B1F;
  --orange-light: #F0AD7B;
  --orange-soft: #F7E3D2;
  --slate: #4A5A66;
  --slate-soft: #6B7780;
  --slate-mute: #8A9AA5;
  --bg: #F4F1EC;
  --bg-card: #FFFFFF;
  --rule: #E5E1D8;
  --rule-strong: #D4CFC2;
  --green: #1F8259;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--navy);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------------- NAV ---------------- */
.nav-wrap { background: var(--bg); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 50; }
.nav {
  max-width: 1240px; margin: 0 auto; padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Inter', sans-serif; font-size: 26px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--navy);
  display: flex; align-items: center;
}
.logo img { height: 28px; width: auto; display: block; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 15px; color: var(--navy); font-weight: 450;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--navy); color: #fff !important; padding: 10px 18px;
  border-radius: 4px; font-size: 14px; font-weight: 500;
}
.nav-cta:hover { color: #fff !important; opacity: 0.92; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 26px; color: var(--navy); line-height: 1; padding: 4px 8px;
}

/* ---------------- SECTIONS ---------------- */
section { padding: 96px 32px; }
.container { max-width: 1240px; margin: 0 auto; }
.section-bg-white { background: #fff; }
.section-bg-cream { background: var(--bg); }
.section-bg-navy { background: var(--navy); color: #fff; }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 18px;
  display: inline-block;
}
.eyebrow.on-navy { color: var(--orange-light); }

/* ---------------- BUTTONS ---------------- */
.btn-primary {
  background: var(--navy); color: #fff !important; padding: 16px 28px;
  border-radius: 4px; font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.1s;
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary .arrow { font-size: 18px; line-height: 1; }
.btn-secondary {
  color: var(--navy); padding: 16px 4px; font-size: 15px; font-weight: 500;
  border-bottom: 2px solid var(--orange);
}
.btn-orange {
  background: var(--orange); color: #fff !important;
  padding: 16px 28px; border-radius: 4px;
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.1s;
}
.btn-orange:hover { transform: translateY(-1px); }

/* ---------------- HERO (home) ---------------- */
.hero { padding: 88px 32px 112px; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 0.6fr;
  gap: 72px; align-items: center;
}
.hero h1 {
  font-size: 68px; line-height: 1.03; letter-spacing: -0.025em;
  font-weight: 600; color: var(--navy); margin-bottom: 28px;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: 19px; line-height: 1.55; color: var(--slate);
  max-width: 580px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero-visual {
  background: #fff; border: 1px solid var(--rule); border-radius: 6px;
  padding: 28px; position: relative;
}
.hero-visual::before {
  content: ''; position: absolute; top: 0; left: 28px; right: 28px;
  height: 3px; background: var(--orange);
}
.hero-visual-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--slate-soft); margin-bottom: 18px;
}
.hv-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--rule); font-size: 14px;
}
.hv-row:last-child { border-bottom: none; }
.hv-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  flex-shrink: 0;
}
.hv-dot.muted { background: var(--rule-strong); }
.hv-label { color: var(--navy); font-weight: 500; flex: 1; }
.hv-status { font-size: 12px; color: var(--slate-soft); }
.hv-status.live { color: var(--green); font-weight: 500; }

/* ---------------- PAGE HEADER (inner pages) ---------------- */
.page-header {
  background: var(--navy); color: #fff;
  padding: 84px 32px 88px;
}
.page-header .inner { max-width: 1240px; margin: 0 auto; }
.page-header h1 {
  font-size: 56px; line-height: 1.04; letter-spacing: -0.025em;
  font-weight: 600; color: #fff; max-width: 900px; margin-bottom: 22px;
}
.page-header h1 .accent { color: var(--orange-light); }
.page-header p {
  font-size: 19px; line-height: 1.6; color: #C9D2D9; max-width: 660px;
}

/* ---------------- TRUST STRIP ---------------- */
.trust {
  padding: 30px 32px; background: var(--bg);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.trust-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 28px; flex-wrap: wrap;
}
.trust-item {
  font-size: 14px; color: var(--slate); display: flex; align-items: center; gap: 12px;
}
.trust-item strong { color: var(--navy); font-weight: 600; }
.trust-divider { width: 1px; height: 32px; background: var(--rule-strong); }

/* ---------------- PREMISE / TWO-COL ---------------- */
.premise { background: #fff; }
.premise-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.premise h2 {
  font-size: 46px; line-height: 1.06; letter-spacing: -0.02em;
  font-weight: 600; color: var(--navy);
}
.premise-body p {
  font-size: 18px; line-height: 1.7; color: var(--slate); margin-bottom: 20px;
}
.premise-body p:last-child { margin-bottom: 0; }
.premise-body strong { color: var(--navy); font-weight: 600; }

/* ---------------- SECTION HEADERS ---------------- */
.section-header { margin-bottom: 56px; max-width: 760px; }
.section-header h2 {
  font-size: 46px; line-height: 1.06; letter-spacing: -0.02em;
  font-weight: 600; margin-bottom: 18px;
}
.section-header p { font-size: 18px; color: var(--slate); }
.section-header.on-navy h2 { color: #fff; }
.section-header.on-navy p { color: #C9D2D9; }

/* ---------------- SERVICES GRID ---------------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.service-card {
  background: #fff; padding: 36px 32px; transition: background 0.15s;
  position: relative; display: flex; flex-direction: column;
}
.service-card:hover { background: #FAF8F3; }
.service-num {
  font-size: 12px; font-weight: 600; color: var(--orange);
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.service-card h3 {
  font-size: 22px; font-weight: 600; color: var(--navy);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.service-card p {
  font-size: 15px; color: var(--slate); line-height: 1.55;
  margin-bottom: 24px;
}
.service-card .service-link { margin-top: auto; }
.service-link {
  font-size: 14px; color: var(--navy); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  border-bottom: 1px solid var(--orange); padding-bottom: 2px;
}

/* ---------------- INCLUDED / CHECK LISTS ---------------- */
.include-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 64px;
}
.include-col h3 {
  font-size: 20px; font-weight: 600; color: var(--navy);
  margin-bottom: 20px; letter-spacing: -0.01em;
  padding-bottom: 14px; border-bottom: 2px solid var(--orange);
}
.check-list { list-style: none; }
.check-list li {
  position: relative; padding: 11px 0 11px 30px; font-size: 16px;
  color: var(--slate); border-bottom: 1px solid var(--rule); line-height: 1.5;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: ''; position: absolute; left: 2px; top: 18px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}
.check-list li strong { color: var(--navy); font-weight: 600; }

/* ---------------- FEATURE PANEL (Security Plus etc.) ---------------- */
.panel {
  background: #fff; border: 1px solid var(--rule); border-radius: 6px;
  padding: 44px 44px; position: relative; overflow: hidden;
}
.panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--orange);
}
.panel-navy {
  background: var(--navy); color: #fff; border: none;
}
.panel-navy .panel-label { color: var(--orange-light); }
.panel.panel-navy h3 { color: #fff; }
.panel.panel-navy > p { color: #DCE3E8; }
.panel-navy .check-list li { color: #DCE3E8; border-color: var(--navy-line); }
.panel-navy .check-list li strong { color: #fff; }
.panel-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px; display: block;
}
.panel h3 {
  font-size: 30px; font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 14px; color: var(--navy);
}
.panel > p {
  font-size: 17px; line-height: 1.65; color: var(--slate); margin-bottom: 28px; max-width: 620px;
}

/* ---------------- DIFFERENTIATION ---------------- */
.diff { background: var(--navy); color: #fff; }
.diff h2 {
  font-size: 46px; line-height: 1.06; letter-spacing: -0.02em;
  font-weight: 600; max-width: 900px; margin-bottom: 60px; color: #fff;
}
.diff h2 .accent { color: var(--orange-light); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.diff-item { padding-top: 24px; border-top: 2px solid var(--orange); }
.diff-item h3 {
  font-size: 22px; font-weight: 600; color: #fff;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.diff-item p { font-size: 16px; line-height: 1.65; color: #C9D2D9; }

/* ---------------- INDUSTRIES ---------------- */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.industry-card {
  background: var(--bg); border: 1px solid var(--rule);
  padding: 36px 32px; border-radius: 6px;
  transition: transform 0.15s, border-color 0.15s;
}
.industry-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.industry-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  background: var(--orange-soft); padding: 4px 10px; border-radius: 3px;
  display: inline-block; margin-bottom: 20px;
}
.industry-card h3 {
  font-size: 22px; font-weight: 600; color: var(--navy);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.industry-card p {
  font-size: 15px; color: var(--slate); line-height: 1.55; margin-bottom: 18px;
}
.industry-list { list-style: none; font-size: 13px; color: var(--slate-soft); }
.industry-list li { padding: 4px 0; border-top: 1px solid var(--rule); }
.industry-list li:first-child { border-top: none; padding-top: 12px; }
.industry-card.on-cream { background: #fff; }

/* generalist band */
.generalist {
  margin-top: 28px; background: var(--bg); border: 1px solid var(--rule);
  border-radius: 6px; padding: 36px 40px;
}
.generalist h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; color: var(--navy); }
.generalist p { font-size: 16px; color: var(--slate); line-height: 1.6; }

/* ---------------- ABOUT / STATS ---------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
.about h2 {
  font-size: 46px; line-height: 1.06; letter-spacing: -0.02em;
  font-weight: 600; color: var(--navy); margin-bottom: 24px;
}
.about-body p { font-size: 18px; line-height: 1.7; color: var(--slate); margin-bottom: 20px; }
.about-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--rule-strong); border: 1px solid var(--rule-strong);
}
.stat { background: #fff; padding: 32px 24px; }
.stat-num {
  font-size: 46px; font-weight: 600; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px;
}
.stat-num .unit { font-size: 22px; color: var(--orange); }
.stat-label {
  font-size: 13px; color: var(--slate-soft); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ---------------- PARTNERS ---------------- */
.partners { background: var(--bg); }
.partner-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--rule); border: 1px solid var(--rule);
}
.partner-cell {
  background: #fff; padding: 26px 20px; text-align: center;
  font-size: 15px; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; justify-content: center; min-height: 84px;
  transition: background 0.15s;
}
.partner-cell:hover { background: #FAF8F3; }
.partner-cell span { display: block; }
.partner-cell small {
  display: block; font-size: 11px; font-weight: 500; color: var(--slate-soft);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px;
}

/* ---------------- FAQ ---------------- */
.faq { background: #fff; }
.faq-list { max-width: 880px; }
.faq-item { border-top: 1px solid var(--rule); padding: 28px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  font-size: 19px; font-weight: 500; color: var(--navy);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.faq-a { font-size: 16px; line-height: 1.65; color: var(--slate); }

/* ---------------- STEPS / PROCESS ---------------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--navy); }
.step p { font-size: 15px; color: var(--slate); line-height: 1.6; }
.step-num {
  font-size: 13px; font-weight: 700; color: var(--orange);
  letter-spacing: 0.08em; margin-bottom: 14px; display: block;
}

/* ---------------- CONTACT ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-block { margin-bottom: 36px; }
.contact-block .label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange); margin-bottom: 10px;
}
.contact-block .value { font-size: 26px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }
.contact-block .value a:hover { color: var(--orange); }
.contact-block .sub { font-size: 16px; color: var(--slate); margin-top: 6px; line-height: 1.6; }
.area-list { list-style: none; }
.area-list li {
  font-size: 16px; color: var(--slate); padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--rule); position: relative;
}
.area-list li:last-child { border-bottom: none; }
.area-list li::before {
  content: ''; position: absolute; left: 2px; top: 20px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}

/* ---------------- FINAL CTA ---------------- */
.final { background: var(--navy); color: #fff; padding: 112px 32px; }
.final-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.final h2 {
  font-size: 52px; line-height: 1.06; letter-spacing: -0.025em;
  font-weight: 600; margin-bottom: 24px; color: #fff;
}
.final h2 .accent { color: var(--orange-light); }
.final p {
  font-size: 18px; color: #C9D2D9; margin-bottom: 40px;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.final-contact {
  margin-top: 28px; font-size: 16px; color: var(--orange-light); font-weight: 500;
}
.final-contact a { color: #fff; }

/* ---------------- FOOTER ---------------- */
footer { background: var(--navy); padding: 64px 32px 32px; color: #C9D2D9; border-top: 1px solid var(--navy-line); }
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-logo { font-size: 24px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer-logo img { height: 26px; width: auto; display: block; }
.footer-tagline { font-size: 14px; color: #C9D2D9; margin-bottom: 20px; line-height: 1.6; max-width: 320px; }
.footer-locations { font-size: 13px; color: var(--slate-mute); line-height: 1.7; }
.footer-col h4 {
  font-size: 12px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; }
.footer-col a { font-size: 14px; color: #C9D2D9; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid var(--navy-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--slate-mute);
}
.footer-bottom a { color: var(--slate-mute); }
.footer-bottom a:hover { color: #fff; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 52px; }
  .premise-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .diff-grid, .industry-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .page-header h1 { font-size: 44px; }
  .premise h2, .section-header h2, .about h2, .diff h2 { font-size: 38px; }
  .final h2 { font-size: 40px; }
}

@media (max-width: 680px) {
  section { padding: 64px 24px; }
  .nav { padding: 18px 24px; }
  .logo img { height: 24px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--rule);
    padding: 8px 24px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--rule); font-size: 16px; }
  .nav-links a.nav-cta { border-bottom: none; margin-top: 12px; width: auto; }
  .nav-toggle { display: block; }
  .hero { padding: 56px 24px 72px; }
  .hero h1 { font-size: 40px; }
  .hero-sub { font-size: 17px; }
  .page-header { padding: 60px 24px 64px; }
  .page-header h1 { font-size: 34px; }
  .page-header p { font-size: 17px; }
  .services-grid, .diff-grid, .industry-grid, .steps-grid, .include-grid, .about-stats { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .premise h2, .section-header h2, .about h2, .diff h2 { font-size: 32px; }
  .final h2 { font-size: 32px; }
  .panel { padding: 32px 24px; }
  .trust-divider { display: none; }
  .trust-inner { gap: 14px; flex-direction: column; align-items: flex-start; }
}

/* small nav script helper: hide toggle target when JS off is fine (links show on desktop) */
