/* =================================================================
   Smart Consultancy HR Limited - hrsmartnow.com
   Shared stylesheet
   Brand: deep petrol-teal + warm ochre on warm paper
   Display: Bricolage Grotesque   Body: Inter
   ================================================================= */

:root {
  --ink:        #11332F;  /* primary brand - deep petrol teal */
  --ink-2:      #0B2421;  /* darker teal for depth */
  --ink-soft:   #1C4B45;  /* lighter teal */
  --paper:      #FBF8F3;  /* warm off-white page background */
  --paper-2:    #F3EEE4;  /* deeper panel */
  --sage:       #E4ECE7;  /* soft cool tint */
  --amber:      #C97A2C;  /* warm ochre accent */
  --amber-soft: #E6B477;
  --text:       #1E2A28;
  --muted:      #586863;
  --line:       #DED7CA;
  --line-dark:  #2A5A53;
  --white:      #ffffff;

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 64px);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --shadow: 0 1px 2px rgba(17,51,47,.05), 0 14px 40px -22px rgba(17,51,47,.30);
  --shadow-lg: 0 30px 70px -34px rgba(11,36,33,.45);

  --t: 240ms cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .5em;
}
p { margin: 0 0 1.1em; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--amber); display: inline-block;
}
.eyebrow--center { justify-content: center; }

.lede { font-size: clamp(18px, 2vw, 21px); color: var(--muted); max-width: 60ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: 15.5px;
  padding: 14px 26px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t), border-color var(--t);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--amber); color: #fff; }
.btn--primary:hover { background: #b56a23; transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(201,122,44,.7); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(17,51,47,.04); }
.btn--on-dark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.btn--on-dark:hover { background: rgba(255,255,255,.16); }

.textlink {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink);
  border-bottom: 1.5px solid var(--amber); padding-bottom: 2px; transition: gap var(--t), color var(--t);
}
.textlink:hover { gap: 12px; color: var(--amber); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 19px; color: var(--ink); letter-spacing: -.02em; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 11px; background: var(--ink);
  display: grid; place-items: center; flex: none;
}
.brand .mark svg { width: 22px; height: 22px; }
.brand small { display: block; font-family: "Inter", sans-serif; font-weight: 500; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text); padding: 9px 14px; border-radius: 8px; transition: background var(--t), color var(--t);
}
.nav-links a:hover { background: rgba(17,51,47,.06); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 9px;
  width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: var(--t);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 16px var(--gut) 26px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: var(--t);
    box-shadow: var(--shadow);
  }
  .nav-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 8px; border-radius: 8px; font-size: 16px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--paper); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}
.hero h1 { font-size: clamp(40px, 6.2vw, 70px); letter-spacing: -.03em; }
.hero h1 .accent { color: var(--amber); }
.hero p.lede { margin-top: 6px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta b { font-family: "Bricolage Grotesque", sans-serif; font-size: 26px; color: var(--ink); }
.hero-meta span { font-size: 13.5px; color: var(--muted); }

/* network signature */
.hero-art {
  position: relative; aspect-ratio: 1/1; border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-art .glow {
  position: absolute; width: 60%; height: 60%; left: -10%; bottom: -15%;
  background: radial-gradient(circle, rgba(201,122,44,.5), transparent 70%); filter: blur(10px);
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; margin-inline: auto; order: -1; }
}

/* ---------- generic section heads ---------- */
.head { max-width: 680px; }
.head--center { margin-inline: auto; text-align: center; }
.head h2 { font-size: clamp(30px, 4.2vw, 46px); }
.head p { color: var(--muted); font-size: 18px; margin-bottom: 0; }

/* ---------- pill strip ---------- */
.logos { border-block: 1px solid var(--line); background: var(--paper-2); }
.logos .wrap { display: flex; align-items: center; gap: clamp(20px,4vw,52px); flex-wrap: wrap; justify-content: center; padding-block: 26px; }
.logos span { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; color: var(--ink); opacity: .55; font-size: 15px; letter-spacing: .02em; }
.logos .tag { font-family: "Inter",sans-serif; font-weight: 600; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); opacity: 1; }

/* ---------- service / feature cards ---------- */
.grid { display: grid; gap: 22px; margin-top: 48px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 28px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfc6b6; }
.card .ico {
  width: 50px; height: 50px; border-radius: 12px; background: var(--sage); color: var(--ink);
  display: grid; place-items: center; margin-bottom: 20px;
}
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 21px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; margin-bottom: 0; }
.card .num {
  font-family: "Bricolage Grotesque", sans-serif; font-size: 13px; font-weight: 700; color: var(--amber);
  letter-spacing: .04em; margin-bottom: 14px; display: block;
}

/* ---------- split / why ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.checklist { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; margin-top: 2px;
}
.checklist .tick svg { width: 14px; height: 14px; }
.checklist b { display: block; color: var(--ink); font-size: 16.5px; }
.checklist span { color: var(--muted); font-size: 15px; }

.panel {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff; border-radius: var(--r-lg); padding: clamp(30px, 4vw, 48px); box-shadow: var(--shadow-lg);
}
.panel h3 { color: #fff; }
.panel .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 20px; margin-top: 8px; }
.panel .stat-row b { font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(30px,4vw,40px); color: var(--amber-soft); display: block; line-height: 1; }
.panel .stat-row span { color: rgba(255,255,255,.74); font-size: 14px; }

/* ---------- process timeline ---------- */
.steps { counter-reset: step; display: grid; gap: 0; margin-top: 44px; }
.step {
  display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid var(--line); align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .idx {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 30px; color: var(--amber);
}
.step h3 { font-size: 22px; margin-bottom: 6px; }
.step p { color: var(--muted); margin-bottom: 0; }
@media (max-width: 620px) { .step { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; border-radius: 0; }
.cta-band .inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.cta-band p { color: rgba(255,255,255,.72); margin-bottom: 0; }
.cta-band .inner .actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 820px) {
  .cta-band .inner { grid-template-columns: 1fr; }
  .cta-band .inner .actions { justify-content: flex-start; }
}

/* ---------- page hero (interior) ---------- */
.page-hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,122,44,.28), transparent 68%);
}
.page-hero .wrap { position: relative; padding-block: clamp(60px, 8vw, 104px); }
.page-hero .eyebrow { color: var(--amber-soft); }
.page-hero .eyebrow::before { background: var(--amber-soft); }
.page-hero h1 { color: #fff; font-size: clamp(36px, 5.5vw, 62px); max-width: 16ch; }
.page-hero p { color: rgba(255,255,255,.76); max-width: 60ch; font-size: 18px; margin-bottom: 0; }
.crumb { font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 22px; letter-spacing: .02em; }
.crumb a:hover { color: #fff; }

/* ---------- legal / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 26px; margin-top: 48px; padding-top: 8px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin-top: 30px; }
.prose p, .prose li { color: var(--text); font-size: 16.5px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 1.2em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--amber); border-bottom: 1px solid color-mix(in srgb, var(--amber) 40%, transparent); }
.prose a:hover { border-color: var(--amber); }
.prose .updated { font-size: 14px; color: var(--muted); margin-bottom: 36px; }
.toc {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px 26px; margin-bottom: 40px;
}
.toc b { font-family: "Bricolage Grotesque", sans-serif; font-size: 14px; letter-spacing: .04em; color: var(--ink); display: block; margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 18px; columns: 2; column-gap: 30px; }
.toc li { margin-bottom: 6px; font-size: 14.5px; }
.toc a { color: var(--muted); border: none; }
.toc a:hover { color: var(--amber); }
@media (max-width: 620px) { .toc ol { columns: 1; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,56px); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15.5px; color: var(--text);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(28,75,69,.12);
}
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px;
}
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ico { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--sage); color: var(--ink); display: grid; place-items: center; }
.info-row .ico svg { width: 20px; height: 20px; }
.info-row b { display: block; color: var(--ink); font-size: 15.5px; }
.info-row span, .info-row a { color: var(--muted); font-size: 15px; }
.info-row a:hover { color: var(--amber); }
.note { font-size: 13.5px; color: var(--muted); background: var(--sage); border-radius: 10px; padding: 12px 14px; }

/* ---------- faq ---------- */
.faq { max-width: 820px; margin-top: 44px; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 40px 18px 0; position: relative;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: 18.5px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 14px; font-size: 26px; font-weight: 400; color: var(--amber); transition: transform var(--t);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 40px 18px 0; margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink-2); color: rgba(255,255,255,.72); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-block: clamp(48px,6vw,72px); }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; }
.site-footer .brand .mark { background: rgba(255,255,255,.1); }
.site-footer .brand small { color: rgba(255,255,255,.5); }
.footer-about { max-width: 34ch; font-size: 14.5px; margin-top: 18px; }
.footer-col h4 { color: #fff; font-family: "Inter", sans-serif; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,.7); transition: color var(--t); }
.footer-col a:hover { color: var(--amber-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-block: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.55);
}
.footer-bottom a:hover { color: #fff; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
