/* =============================================
   ZORAN PEŠIĆ RECRUITMENT — Main Stylesheet
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #ffffff;
  --bg-soft:     #f9f7f4;
  --bg-dark:     #2d2523;
  --bg-darker:   #1f1a18;
  --text:        #1a1714;
  --text-muted:  #6b6560;
  --text-light:  #9e9690;
  --accent:      #E8BF3C;
  --accent-hover:#CC9F1A;
  --accent-light:#FDF6DC;
  --border:      #e6e0d8;
  --border-dark: #3d3532;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --max-w:       1160px;
  --nav-h:       72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-header p  { color: var(--text-muted); font-size: 1.05rem; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
  color: #1a1714;
  box-shadow: 0 4px 14px rgba(232,191,60,.35);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,191,60,.45); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); transform: translateY(-1px); }

.btn-block { width: 100%; justify-content: center; }

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0a66c2;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 8px;
  transition: background .2s, transform .15s;
  margin-top: 24px;
}
.btn-linkedin:hover { background: #094fa3; transform: translateY(-1px); }


/* =============================================
   NAVIGATION
   ============================================= */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.nav-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}
.nav-header.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.logo-zpr { display: flex; align-items: baseline; font-size: 1.6rem; font-weight: 900; letter-spacing: .02em; line-height: 1; }
.logo-zpr .lz, .logo-zpr .lp { color: var(--text); }
.logo-zpr .lr { color: var(--accent); }

.logo-wordmark { display: flex; flex-direction: column; line-height: 1.15; }
.logo-wordmark .logo-name { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text); }
.logo-wordmark .logo-sub  { font-size: .6rem; font-weight: 400; color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 7px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-soft); }

.nav-cta {
  background: var(--accent) !important;
  color: #1a1714 !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }

.nav-linkedin { padding: 8px 10px !important; color: var(--text-muted) !important; }
.nav-linkedin:hover { color: #0a66c2 !important; background: var(--accent-light) !important; }
.nav-linkedin svg { display: block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background .15s;
}
.nav-toggle:hover { background: var(--bg-soft); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .25s; }


/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 80px;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 800px 600px at 70% 30%, rgba(232,191,60,.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid rgba(37,99,235,.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero-headline .line { display: block; }
.hero-headline .hl { color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-size: 1.2rem; font-weight: 800; color: var(--text); }
.stat-label { font-size: .72rem; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* Hero floating cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
  animation: fadeInRight .7s ease both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  animation: cardIn .5s ease calc(var(--d, 0s) + .3s) both;
  transition: transform .2s, box-shadow .2s;
}
.hero-card:hover { transform: translateX(-4px); box-shadow: var(--shadow-lg); }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hc-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hc-body { display: flex; flex-direction: column; gap: 2px; }
.hc-body strong { font-size: .9rem; font-weight: 700; color: var(--text); }
.hc-body span   { font-size: .78rem; color: var(--text-muted); }


/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 100px 0;
  background: var(--bg-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,.2); }

.service-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
.service-card--featured:hover { box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg); }

.svc-badge {
  position: absolute;
  top: -12px; left: 32px;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.svc-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card--featured .svc-icon { background: var(--accent); color: var(--text); }

.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-card p  { color: var(--text-muted); font-size: .9rem; line-height: 1.65; margin-bottom: 20px; }

.svc-list { display: flex; flex-direction: column; gap: 8px; }
.svc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-muted);
}
.svc-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}


/* =============================================
   ABOUT PREVIEW
   ============================================= */
.about-preview { padding: 100px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-visual { position: relative; display: flex; justify-content: flex-end; }

.about-photo-wrap {
  width: 65%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1f1a18 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-initials {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,.3);
  letter-spacing: -.02em;
}

.about-badge-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ab-year  { font-size: 1.4rem; font-weight: 800; color: var(--accent); }
.ab-label { font-size: .75rem; color: var(--text-muted); font-weight: 500; }

.about-body h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.about-body p  { color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.about-body em { color: var(--text); font-style: italic; font-weight: 500; }

.about-pull {
  border-left: 3px solid var(--accent);
  padding: 12px 0 12px 20px;
  margin: 24px 0 32px;
  font-size: .95rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}


/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial {
  padding: 100px 0;
  background: var(--bg-dark);
  color: #fff;
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-glyph {
  font-size: 8rem;
  line-height: .6;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: .5;
  margin-bottom: 8px;
  display: block;
}

.testimonial-inner blockquote {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  margin-bottom: 40px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  color: #1a1714;
  flex-shrink: 0;
}

.author-meta { text-align: left; }
.author-meta strong { display: block; font-size: 1rem; font-weight: 700; color: #fff; }
.author-meta span   { font-size: .85rem; color: rgba(255,255,255,.55); }


/* =============================================
   BLOG PREVIEW
   ============================================= */
.blog-preview { padding: 100px 0; background: var(--bg-soft); }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.2); }

.blog-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr;
  padding: 36px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg) 60%);
  border-color: rgba(37,99,235,.2);
}

.bc-meta { display: flex; align-items: center; gap: 12px; }
.bc-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 100px;
}
.bc-date { font-size: .78rem; color: var(--text-muted); }

.blog-card h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.3; color: var(--text); }
.blog-card--featured h3 { font-size: 1.3rem; }
.blog-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; flex: 1; }

.bc-link { font-size: .85rem; font-weight: 600; color: var(--accent); align-self: flex-start; transition: gap .15s; }
.bc-link:hover { text-decoration: underline; }

.blog-footer { text-align: center; }


/* =============================================
   CONTACT
   ============================================= */
.contact { padding: 100px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-body h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.contact-body p  { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }

.contact-list { display: flex; flex-direction: column; gap: 16px; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: .9rem;
  transition: color .15s;
}
a.contact-row:hover { color: var(--accent); }
a.contact-row:hover .cr-icon { background: var(--accent); color: #fff; }

.cr-icon {
  width: 40px; height: 40px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background .2s, color .2s;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group:last-of-type { margin-bottom: 24px; }

.form-group label { font-size: .8rem; font-weight: 600; color: var(--text); letter-spacing: .02em; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group textarea { resize: vertical; min-height: 120px; }


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,.6);
  padding: 48px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand .logo-zpr .lz,
.footer-brand .logo-zpr .lp { color: #fff; }
.footer-brand .logo-wordmark .logo-name { color: rgba(255,255,255,.9); }
.footer-brand .logo-wordmark .logo-sub  { color: rgba(255,255,255,.45); }
.footer-brand p { font-size: .8rem; line-height: 1.6; }

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-nav a:hover { color: #fff; }

.footer-copy { text-align: right; }
.footer-copy p { font-size: .78rem; line-height: 1.8; }
.footer-copy a { color: rgba(255,255,255,.55); transition: color .15s; }
.footer-copy a:hover { color: #fff; }


/* =============================================
   ABOUT PAGE
   ============================================= */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.page-hero-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1f1a18 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-photo .ph-initials { font-size: 5rem; font-weight: 800; color: rgba(255,255,255,.3); }

.page-hero-body h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 12px; }
.page-hero-body .page-role { font-size: 1rem; color: var(--accent); font-weight: 600; margin-bottom: 24px; }
.page-hero-body p { color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; font-size: .975rem; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag {
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.about-details { padding: 80px 0; }
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.about-col h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.about-col p  { color: var(--text-muted); line-height: 1.7; font-size: .95rem; margin-bottom: 12px; }

.interest-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.interest-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .83rem;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 8px;
}

.about-cta {
  padding: 80px 0;
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
}
.about-cta h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; }
.about-cta p { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 32px; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--accent);
  font-size: .9rem; font-weight: 700;
  padding: 13px 26px; border-radius: 8px;
  transition: transform .15s, box-shadow .15s;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: .9rem; font-weight: 600;
  padding: 13px 26px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: border-color .2s, background .2s;
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.05); }


/* =============================================
   BLOG PAGE
   ============================================= */
.blog-page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.blog-page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.blog-page-hero p  { color: var(--text-muted); font-size: 1.05rem; }

.blog-main { padding: 80px 0; }

.blog-posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.blog-post-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.blog-post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.2); }
.blog-post-card--featured { grid-column: span 2; }

.bpc-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bpc-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-light); padding: 3px 10px; border-radius: 100px;
}
.bpc-date { font-size: .78rem; color: var(--text-muted); }
.bpc-read { font-size: .78rem; color: var(--text-light); }

.blog-post-card h2 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
.blog-post-card--featured h2 { font-size: 1.5rem; }
.blog-post-card p  { color: var(--text-muted); font-size: .9rem; line-height: 1.7; flex: 1; }

.read-more { font-size: .875rem; font-weight: 600; color: var(--accent); align-self: flex-start; }
.read-more:hover { text-decoration: underline; }


/* =============================================
   JOBS PAGE
   ============================================= */
.jobs-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.jobs-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.jobs-hero p  { color: var(--text-muted); font-size: 1.05rem; }

.jobs-main { padding: 80px 0; }

.jobs-empty {
  text-align: center;
  padding: 80px 24px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  max-width: 520px;
  margin: 0 auto;
}
.jobs-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.jobs-empty h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.jobs-empty p  { color: var(--text-muted); font-size: .9rem; line-height: 1.6; margin-bottom: 28px; }

.jobs-cta {
  margin-top: 80px;
  padding: 56px 48px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
}
.jobs-cta h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
.jobs-cta p  { color: rgba(255,255,255,.75); margin-bottom: 28px; }


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-visual  { display: flex; justify-content: center; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .footer-copy   { text-align: left; grid-column: span 2; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 60px;
  }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .hero-card  { flex: 1; min-width: 140px; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-column: span 1; }

  .page-hero-inner { grid-template-columns: 1fr; }
  .about-cols { grid-template-columns: 1fr; }

  .blog-posts-grid { grid-template-columns: 1fr; }
  .blog-post-card--featured { grid-column: span 1; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-copy  { grid-column: span 1; text-align: left; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px !important; border-radius: 8px !important; font-size: 1.05rem !important; font-weight: 500 !important; color: var(--text) !important; }
  .nav-cta { text-align: left !important; background: none !important; color: var(--text) !important; font-weight: 600 !important; color: var(--accent) !important; }
  .nav-linkedin { padding: 14px 16px !important; }
  .nav-linkedin svg { display: none; }
  .nav-linkedin::before { content: 'LinkedIn'; font-size: 1.05rem; font-weight: 500; color: var(--text); }

  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-div   { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .hero-actions  { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .about-photo-wrap { width: 100%; max-width: 300px; }
  .contact-form-wrap { padding: 24px; }
  .jobs-cta { padding: 36px 24px; }
}


/* =============================================
   BLOG POST PAGES
   ============================================= */
.post-page { padding-bottom: 0; }

.post-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.post-hero-inner { max-width: 760px; }

.post-meta-top { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }

.post-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.post-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.post-author { display: flex; align-items: center; gap: 14px; }
.pa-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.pa-meta { display: flex; flex-direction: column; gap: 2px; }
.pa-meta strong { font-size: .9rem; font-weight: 700; color: var(--text); }
.pa-meta span   { font-size: .78rem; color: var(--text-muted); }

.post-body {
  max-width: 760px;
  padding-top: 60px;
  padding-bottom: 80px;
}

.post-body p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }
.post-body h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin: 40px 0 16px; }
.post-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 28px 0 10px; }
.post-body ul { padding-left: 24px; margin-bottom: 20px; }
.post-body ul li { font-size: 1rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 8px; }

.post-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* Research list (post-top-5) */
.research-list { display: flex; flex-direction: column; gap: 0; margin: 32px 0; }
.research-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.ri-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  opacity: .5;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.ri-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 0 0 8px; }
.ri-body p  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

@media (max-width: 600px) {
  .research-item { flex-direction: column; gap: 8px; }
}
