/* ================================================================
   JKFM WEBSITE — STYLESHEET
   Based on approved mockup design system
================================================================ */

:root {
  --primary: #1A3C2E;
  --primary-light: #2D6A4F;
  --accent: #C6A24E;
  --accent-light: #E2C97D;
  --surface-dark: #0F1F17;
  --surface-light: #F7F5F0;
  --white: #FFFFFF;
  --text: #1C1C1C;
  --text-light: #5C6B5C;
  --text-on-dark: #D4CFC4;
  --border: #D8D3C8;
  --success: #2D7D46;
  --error: #C0392B;
  --radius: 6px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--surface-dark); }
body {
  font-family: 'Open Sans', sans-serif; color: var(--text);
  background: var(--surface-light); -webkit-font-smoothing: antialiased;
  hyphens: none; -webkit-hyphens: none; overflow-wrap: break-word;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--accent); }

/* ── Skip link (a11y) ── */
.skip-link {
  position: absolute; left: 8px; top: -40px; z-index: 1000;
  background: var(--primary); color: var(--white);
  padding: 10px 16px; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease-in-out;
}
.skip-link:focus { top: 8px; outline: 3px solid var(--accent); outline-offset: 2px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,31,23,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.2); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1120px; margin: 0 auto; padding: 0 24px; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon { width: 36px; height: 36px; object-fit: contain; }
.nav-logo-text {
  display: flex; flex-direction: column;
  font-family: 'Montserrat', sans-serif; letter-spacing: 0.01em;
}
.nav-logo-line1 {
  font-weight: 700; font-size: 0.85rem; color: #FFFFFF; line-height: 1.25;
}
.nav-logo-line2 {
  font-weight: 700; font-size: 0.85rem; color: #FFFFFF; line-height: 1.25;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 600;
  color: var(--text-on-dark); transition: color 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem;
  background: var(--accent); color: var(--surface-dark);
  padding: 10px 24px; border-radius: var(--radius); transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent-light); }

/* Mobile nav toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; padding: 0;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--white);
  position: absolute; left: 0; transition: all 0.3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 10px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 10px; }

/* Mobile menu */
.nav-mobile {
  display: none; flex-direction: column; gap: 8px;
  padding: 16px 24px 24px; background: var(--surface-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600;
  color: var(--text-on-dark); padding: 8px 0; transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
  background: linear-gradient(165deg, var(--surface-dark) 0%, #12291C 60%, #0A1A11 100%);
  padding: 160px 0 100px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(198,162,78,0.06) 0%, transparent 60%);
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 24px;
}
.hero h1, .hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900;
  color: var(--white); max-width: 700px; letter-spacing: -0.02em;
  line-height: 1.08; margin-bottom: 24px;
}
.hero p, .hero-sub {
  font-size: 1.1rem; color: var(--text-on-dark); max-width: 520px;
  line-height: 1.75; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem;
  background: var(--accent); color: var(--surface-dark);
  padding: 14px 32px; border-radius: var(--radius); border: 2px solid var(--accent);
  cursor: pointer; transition: all 0.2s;
}
.btn-gold:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-outline-white {
  display: inline-block;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.9rem;
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 14px 32px; border-radius: var(--radius); border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.2s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline-dark {
  display: inline-block;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.9rem;
  background: transparent; color: var(--primary);
  padding: 14px 32px; border-radius: var(--radius); border: 2px solid var(--primary);
  cursor: pointer; transition: all 0.2s;
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--primary); border-bottom: 2px solid rgba(198,162,78,0.15); }
.trust-bar-inner {
  display: flex; justify-content: center; gap: 64px; padding: 28px 24px;
  max-width: 1120px; margin: 0 auto;
}
.trust-item { text-align: center; }
.trust-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.8rem;
  color: var(--accent); line-height: 1;
}
.trust-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 6px; letter-spacing: 0.02em; }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-white { background: var(--white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--text); letter-spacing: -0.01em; }
.section-header p { font-size: 1rem; color: var(--text-light); margin-top: 12px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.section-line { width: 48px; height: 3px; background: var(--accent); margin: 20px auto 0; border-radius: 2px; }

/* ── PROBLEM / CHECK LISTS ── */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.problem-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 20px; text-align: left; }
.problem-text p { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.solution-title { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: var(--primary); }

.check-list { margin-top: 16px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem; color: var(--text); line-height: 1.7;
  hyphens: none; -webkit-hyphens: none; word-break: normal;
}
.check-list li:last-child { border-bottom: none; }
.check-list li svg {
  width: 18px; height: 18px; min-width: 18px; flex-shrink: 0; margin-top: 4px;
}
.check-list--red li svg { color: var(--error); }
.check-list--green li svg { color: var(--success); }

/* ── CHALLENGE CARDS ── */
.challenge-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch;
}
.challenge-card {
  border-radius: var(--radius); padding: 36px; border: 1px solid var(--border);
}
.challenge-card h2,
.challenge-card h3 {
  font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 800;
  margin-bottom: 12px; color: var(--text);
}
.challenge-card > p {
  font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px;
}
.challenge-card ul {
  list-style: none; margin: 0; padding: 0;
}
.challenge-card ul li {
  position: relative; padding-left: 20px; padding-top: 10px; padding-bottom: 10px;
  font-size: 0.92rem; color: var(--text); line-height: 1.7;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.challenge-card ul li:last-child { border-bottom: none; }
.challenge-card ul li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 8px; height: 8px; border-radius: 50%;
}
.challenge-card--problem {
  background: #FDF6F0; border-color: #E8D5C4;
}
.challenge-card--problem ul li::before {
  background: var(--error);
}
.challenge-card--solution {
  background: #F2F8F0; border-color: #C4DDB9;
}
.challenge-card--solution ul li::before {
  background: var(--success);
}

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: rgba(26,60,46,0.06); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 24px; height: 24px; color: var(--primary); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.learn-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700;
  color: var(--accent); transition: gap 0.2s;
}
.service-card:hover .learn-more { gap: 10px; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; position: relative; }
.process-step::after {
  content: ''; position: absolute; top: 28px; left: 75%; width: 50%;
  height: 2px; background: var(--border);
}
.process-step:last-child::after { display: none; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--surface-dark); color: var(--accent);
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.process-step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; padding: 0 12px; }
#process { padding-top: 160px; padding-bottom: 280px; scroll-margin-top: 72px; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}
.testimonial-quote {
  font-size: 1rem; color: var(--text); line-height: 1.8;
  font-style: italic; margin-bottom: 20px; position: relative; padding-left: 24px;
}
.testimonial-quote::before {
  content: '\201C'; position: absolute; left: 0; top: -8px;
  font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900;
  color: var(--accent); opacity: 0.3; line-height: 1;
}
.testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ── HUB / OUR ROLE ── */
.hub-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hub-badge {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); background: rgba(26,60,46,0.08);
  padding: 6px 16px; border-radius: 99px; margin-bottom: 20px;
}
.hub-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 20px; text-align: left; line-height: 1.1; }
.hub-text p { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.hub-quote {
  border-left: 4px solid var(--accent); padding: 12px 20px; margin: 0 0 28px;
  font-size: 1.05rem; font-style: italic; font-weight: 600;
  color: var(--primary); background: none;
}
.hub-checklist { list-style: none; }
.hub-checklist li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; font-weight: 600; color: var(--text); padding: 10px 0;
}
.hub-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); color: var(--white); font-size: 0.75rem; font-weight: 700;
}

/* Hub diagram */
.hub-diagram { display: flex; flex-direction: column; align-items: center; }
.hub-node { text-align: center; }
.hub-node-icon { font-size: 1.6rem; margin-bottom: 4px; }
.hub-node-label { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; }
.hub-node-sub { font-size: 0.7rem; color: var(--text-light); }
.hub-node--center {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--surface-dark); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 3px solid var(--accent);
}
.hub-node--center .hub-node-label { color: var(--white); font-size: 0.9rem; }
.hub-node--center .hub-node-sub { color: var(--text-on-dark); }
.hub-node--top, .hub-node--bottom {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 24px;
}
.hub-connector-vertical {
  width: 2px; height: 32px; background: var(--accent); margin: 4px 0;
}
.hub-connector-branch {
  width: 2px; height: 24px; background: var(--accent); margin: 4px 0;
  position: relative;
}
.hub-connector-branch::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 140px; height: 2px; background: var(--accent);
}
.hub-branch {
  display: flex; gap: 48px; margin-top: 24px;
}

/* ── ONBOARDING ROADMAP ── */
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.roadmap-step { text-align: center; position: relative; padding: 0 16px; }
.roadmap-icon { font-size: 2.2rem; margin-bottom: 16px; position: relative; z-index: 1; }
.roadmap-connector {
  position: absolute; top: 22px; left: calc(50% + 20px); width: calc(100% - 40px);
  height: 2px; background: var(--accent); z-index: 0;
}
.roadmap-step:last-child .roadmap-connector { display: none; }
.roadmap-step h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
.roadmap-step p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 20px 0; border: none; background: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 700;
  color: var(--text); text-align: left; transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--text-light);
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0F2A1E 100%);
  padding: 80px 0; text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  color: var(--white); margin-bottom: 16px;
}
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 32px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: var(--radius); flex-shrink: 0;
  background: rgba(26,60,46,0.06); display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--primary); }
.contact-detail-label { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.contact-detail-value { font-size: 0.9rem; color: var(--text-light); }
.contact-detail-value a { color: var(--text-light); transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--accent); }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem; background: var(--surface-light);
  color: var(--text); transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(198,162,78,0.12); }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-btn {
  width: 100%; padding: 14px; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.9rem; background: var(--accent); color: var(--surface-dark);
  border: none; border-radius: var(--radius); cursor: pointer; transition: all 0.2s;
}
.form-btn:hover { background: var(--accent-light); }
.form-status { margin-top: 16px; font-size: 0.9rem; padding: 12px; border-radius: var(--radius); display: none; }
.form-status--success { display: block; background: rgba(45,125,70,0.08); color: var(--success); border: 1px solid var(--success); }
.form-status--error { display: block; background: rgba(192,57,43,0.08); color: var(--error); border: 1px solid var(--error); }

/* ── FOOTER ── */
.footer { background: var(--surface-dark); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo { width: 36px; height: 36px; object-fit: contain; }
.footer-brand h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--white); line-height: 1.25; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; margin-bottom: 0;
}
.footer-social a:hover { border-color: var(--accent); background: rgba(198,162,78,0.1); }
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,0.5); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); margin-top: 48px; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

.footer-nap {
  margin-top: 40px; font-size: 0.8rem; color: rgba(255,255,255,0.45);
  text-align: center; line-height: 1.8;
}
.footer-nap a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-nap a:hover { color: var(--accent); }

/* ── PAGE HEADER (subpages) ── */
.page-header {
  background: linear-gradient(165deg, var(--surface-dark) 0%, #12291C 100%);
  padding: 130px 0 48px; position: relative;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: var(--white); letter-spacing: -0.02em;
}
.page-header p {
  font-size: 1.05rem; color: var(--text-on-dark); margin-top: 16px; max-width: 800px; line-height: 1.75;
  hyphens: none; -webkit-hyphens: none;
}

/* Breadcrumb */
.breadcrumb {
  font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 600;
  margin-bottom: 16px; color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--accent); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { margin: 0 6px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.blog-card h2 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.blog-card h2 a { color: var(--text); transition: color 0.2s; }
.blog-card h2 a:hover { color: var(--accent); }
.blog-card-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); background: rgba(198,162,78,0.08);
  padding: 4px 12px; border-radius: 99px; margin-bottom: 14px;
}
.blog-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.blog-card-meta { font-size: 0.75rem; color: var(--text-light); display: flex; gap: 16px; align-items: center; }

/* Blog post content */
.blog-post { max-width: 720px; margin: 0 auto; }
.blog-post-content h2 { font-size: 1.4rem; font-weight: 800; margin: 40px 0 16px; }
.blog-post-content h3 { font-size: 1.1rem; font-weight: 700; margin: 32px 0 12px; }
.blog-post-content p { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.blog-post-content ul, .blog-post-content ol {
  margin: 16px 0; padding-left: 24px; list-style: disc;
}
.blog-post-content li { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 8px; }
.blog-post-content blockquote {
  border-left: 4px solid var(--accent); padding: 16px 24px; margin: 24px 0;
  background: rgba(198,162,78,0.05); font-style: italic; color: var(--text);
}
.blog-post-content strong { color: var(--text); }
.blog-post-content a { color: var(--accent); text-decoration: underline; }
.blog-post-content a:hover { color: var(--accent-light); }
.blog-back {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 40px;
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700;
  color: var(--accent); transition: gap 0.2s;
}
.blog-back:hover { gap: 12px; }
.blog-back svg { width: 14px; height: 14px; }

/* ── ABOUT PAGE ── */
.about-founder-grid { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center; }
.about-founder-img, .about-founder-image img {
  width: 100%; border-radius: var(--radius); object-fit: cover;
}
.about-founder-text h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 24px; }
.about-founder-text p { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.about-founder-text p:last-child { margin-bottom: 0; }
.about-approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-approach-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.about-approach-card .service-icon,
.about-approach-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: rgba(26,60,46,0.06); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.about-approach-icon svg { width: 24px; height: 24px; color: var(--primary); }
.about-approach-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.about-approach-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.about-value-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2rem;
  color: var(--accent); opacity: 0.3; margin-bottom: 8px;
}
.about-value-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.about-value-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ── CONTENT GRID (services subpages) ── */
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.content-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.content-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.content-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.content-card .service-icon { margin-bottom: 16px; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .services-grid, .testimonial-grid, .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .challenge-grid { grid-template-columns: 1fr; gap: 24px; }
  .hub-layout { grid-template-columns: 1fr; gap: 40px; }
  .hub-diagram { margin-top: 20px; }
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .roadmap-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { flex-wrap: wrap; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-founder-grid { grid-template-columns: 1fr; }
  .about-approach-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 140px 0 72px; }
  .page-header { padding: 110px 0 36px; }
  .section { padding: 64px 0; }
  .about-approach-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
}
