/* HelpLikeAMonk — Global Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #F5F6FA;
  --white: #ffffff;
  --border: #E2E5EF;
  --border-light: #ECEEF5;
  --teal: #1B2B5E;
  --teal-dark: #131F46;
  --teal-light: #EEF0F8;
  --teal-mid: #C3CAE0;
  --gold: #C9A847;
  --gold-light: #DFC070;
  --gold-dim: rgba(201,168,71,0.15);
  --text: #0E1624;
  --text-mid: #374151;
  --text-muted: #6B7A90;
  --text-dim: #9DAAB8;
  --shadow-sm: 0 1px 3px rgba(14,22,36,0.06),0 1px 2px rgba(14,22,36,0.04);
  --shadow-md: 0 4px 16px rgba(14,22,36,0.08),0 2px 6px rgba(14,22,36,0.04);
  --shadow-lg: 0 20px 60px rgba(14,22,36,0.10),0 4px 16px rgba(14,22,36,0.06);
  --radius: 12px;
  --radius-sm: 8px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ====== NAV ====== */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0 48px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 34px; height: 34px; background: var(--teal); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(27,43,94,0.30);
}
.logo-icon svg { width: 18px; height: 18px; }
.logo-wordmark { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.logo-wordmark span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.875rem; font-weight: 500; padding: 6px 14px; border-radius: 8px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-ghost { text-decoration: none; color: var(--text-mid); font-size: 0.875rem; font-weight: 500; padding: 8px 16px; border-radius: var(--radius-sm); transition: background 0.2s; }
.btn-nav-ghost:hover { background: var(--bg); }
.btn-nav-solid {
  text-decoration: none; background: var(--teal); color: #fff;
  font-size: 0.875rem; font-weight: 600; padding: 8px 18px;
  border-radius: var(--radius-sm); letter-spacing: -0.01em;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(27,43,94,0.25);
}
.btn-nav-solid:hover { background: var(--teal-dark); box-shadow: 0 4px 14px rgba(27,43,94,0.35); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--text); stroke-width: 2; fill: none; stroke-linecap: round; }

/* ====== BUTTONS ====== */
.btn-primary {
  background: var(--teal); color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em; padding: 14px 28px;
  border-radius: var(--radius-sm); border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(27,43,94,0.30), 0 1px 3px rgba(27,43,94,0.2);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(27,43,94,0.38); }
.btn-secondary {
  background: var(--white); color: var(--text-mid); font-size: 0.95rem; font-weight: 500;
  padding: 14px 24px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm); transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: var(--text-dim); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold); color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600; padding: 14px 28px;
  border-radius: var(--radius-sm); border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(201,168,71,0.30);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ====== HERO ====== */
.hero { padding: 80px 48px 0; text-align: center; position: relative; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; animation: orbFloat 10s ease-in-out infinite; }
.orb-1 { width: 500px; height: 500px; top: -120px; left: -80px; background: radial-gradient(circle, rgba(27,43,94,0.10) 0%, transparent 70%); }
.orb-2 { width: 400px; height: 400px; top: -60px; right: -60px; background: radial-gradient(circle, rgba(201,168,71,0.10) 0%, transparent 70%); animation-delay: -4s; }
.orb-3 { width: 300px; height: 300px; bottom: 0; left: 40%; background: radial-gradient(circle, rgba(201,168,71,0.06) 0%, transparent 70%); animation-delay: -7s; }
@keyframes orbFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(var(--border-light) 1px, transparent 1px), linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,71,0.1); color: var(--teal-dark);
  border: 1px solid rgba(201,168,71,0.35); padding: 5px 14px 5px 8px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}
.badge-dot { width: 20px; height: 20px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.badge-dot svg { width: 10px; height: 10px; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem); font-weight: 700;
  line-height: 1.06; letter-spacing: -0.03em; color: var(--text); margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hl { color: var(--teal); position: relative; display: inline-block; }
.hl::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), rgba(201,168,71,0.3)); border-radius: 2px; }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; font-weight: 400; max-width: 520px; margin: 0 auto 36px; animation: fadeUp 0.7s ease 0.2s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; animation: fadeUp 0.7s ease 0.3s both; }
.hero-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.78rem; color: var(--text-dim); margin-top: 16px; animation: fadeUp 0.7s ease 0.4s both; }
.hero-note::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* ====== PREVIEW ====== */
.preview-wrap { position: relative; z-index: 1; max-width: 1000px; margin: 60px auto 0; animation: fadeUp 0.8s ease 0.4s both; }
.preview-shadow-ring { background: linear-gradient(135deg, rgba(27,43,94,0.12), rgba(201,168,71,0.18), transparent); border-radius: 20px; padding: 3px; box-shadow: 0 40px 120px rgba(27,43,94,0.08), 0 8px 40px rgba(15,25,35,0.08); }
.preview-frame { background: var(--white); border-radius: 18px; overflow: hidden; border: 1px solid var(--border); }
.pf-bar { background: #F5F7FA; border-bottom: 1px solid var(--border); padding: 12px 20px; display: flex; align-items: center; gap: 10px; }
.pf-dot { width: 10px; height: 10px; border-radius: 50%; }
.pf-dot:nth-child(1) { background: #FF6057; }
.pf-dot:nth-child(2) { background: #FFBC2E; }
.pf-dot:nth-child(3) { background: #28C840; }
.pf-url-bar { flex: 1; max-width: 300px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 4px 12px; font-size: 0.7rem; color: var(--text-dim); font-family: monospace; text-align: center; }
.pf-body { display: grid; grid-template-columns: 210px 1fr; min-height: 380px; }
.pf-sidebar { background: #F8FAFB; border-right: 1px solid var(--border); padding: 20px 12px; }
.pf-sidebar-label { font-size: 0.6rem; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; padding: 0 8px; margin-bottom: 8px; }
.pf-nav-item { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 7px; margin-bottom: 2px; font-size: 0.73rem; color: var(--text-muted); font-weight: 500; cursor: default; }
.pf-nav-item.active { background: var(--teal); color: white; }
.pf-nav-item svg { width: 14px; height: 14px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.pf-nav-badge { margin-left: auto; background: rgba(255,255,255,0.25); color: inherit; font-size: 0.6rem; padding: 1px 6px; border-radius: 10px; font-weight: 600; }
.pf-nav-badge.muted { background: #E9EDF2; color: var(--text-dim); }
.pf-main { padding: 20px; }
.pf-main-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.pf-main-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text); }
.pf-btn-sm { font-size: 0.65rem; font-weight: 600; padding: 5px 10px; border-radius: 6px; cursor: default; border: 1px solid var(--border); background: var(--white); color: var(--text-muted); margin-left: 6px; }
.pf-btn-sm.solid { background: var(--teal); color: white; border-color: var(--teal); }
.pf-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.pf-stat { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.pf-stat-val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text); line-height: 1; }
.pf-stat-lbl { font-size: 0.58rem; color: var(--text-dim); margin-top: 3px; }
.pf-stat-delta { font-size: 0.58rem; font-weight: 600; margin-top: 3px; }
.up { color: #22C55E; } .dn { color: #EF4444; }
.pf-table-head { display: grid; grid-template-columns: 2fr 1.2fr 1fr 0.8fr; font-size: 0.6rem; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; padding: 0 10px 8px; border-bottom: 1px solid var(--border); }
.pf-ticket { display: grid; grid-template-columns: 2fr 1.2fr 1fr 0.8fr; align-items: center; padding: 9px 10px; border-bottom: 1px solid var(--border-light); transition: background 0.15s; cursor: default; }
.pf-ticket:hover { background: var(--bg); }
.pf-t-title { font-size: 0.71rem; font-weight: 600; color: var(--text); }
.pf-t-sub { font-size: 0.6rem; color: var(--text-dim); margin-top: 1px; }
.pf-t-who { font-size: 0.68rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.pf-who-av { width: 20px; height: 20px; border-radius: 50%; background: var(--teal-light); font-size: 0.52rem; color: var(--teal-dark); font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pf-t-time { font-size: 0.65rem; color: var(--text-dim); }
.pill { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 100px; font-size: 0.6rem; font-weight: 600; }
.pill-open { background: #FEF2F2; color: #EF4444; }
.pill-prog { background: #FFF7ED; color: #F97316; }
.pill-done { background: #F0FDF4; color: #22C55E; }
.pill-wait { background: #EFF6FF; color: #3B82F6; }

/* ====== LOGOS ====== */
.logos { padding: 44px 48px; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.logos-label { font-size: 0.73rem; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-bottom: 24px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-item { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text-dim); letter-spacing: -0.02em; opacity: 0.5; transition: opacity 0.2s; cursor: default; }
.logo-item:hover { opacity: 0.85; }

/* ====== SECTIONS ====== */
.section-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: rgba(201,168,71,0.1); color: var(--teal-dark); font-size: 0.73rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; border: 1px solid rgba(201,168,71,0.35); margin-bottom: 16px; }
.section-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; color: var(--text); }
.section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-top: 12px; }

/* ====== FEATURES ====== */
.features { padding: 96px 48px; background: var(--white); }
.features-intro { max-width: 540px; margin-bottom: 52px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feat-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; position: relative; overflow: hidden; transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s; }
.feat-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal-mid); transform: translateY(-2px); }
.feat-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--gold)); opacity: 0; transition: opacity 0.3s; border-radius: var(--radius) var(--radius) 0 0; }
.feat-card:hover .feat-card-accent { opacity: 1; }
.feat-icon { width: 42px; height: 42px; background: var(--teal-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background 0.2s; }
.feat-card:hover .feat-icon { background: var(--teal); }
.feat-icon svg { width: 20px; height: 20px; stroke: var(--teal); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s; }
.feat-card:hover .feat-icon svg { stroke: white; }
.feat-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.02rem; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.feat-desc { font-size: 0.865rem; color: var(--text-muted); line-height: 1.65; }

/* ====== HOW IT WORKS ====== */
.how { padding: 96px 48px; background: var(--bg); }
.how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1100px; margin: 0 auto; }
.how-steps { margin-top: 36px; }
.how-step { display: flex; gap: 18px; margin-bottom: 28px; }
.step-num-box { width: 34px; height: 34px; border-radius: 9px; background: var(--teal-light); border: 1px solid var(--teal-mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--teal-dark); margin-top: 2px; transition: background 0.2s, color 0.2s; cursor: default; }
.how-step:hover .step-num-box { background: var(--gold); color: var(--text); }
.step-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 5px; letter-spacing: -0.01em; }
.step-desc { font-size: 0.865rem; color: var(--text-muted); line-height: 1.65; }

/* Flow visual */
.flow-visual { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-lg); }
.flow-visual-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.84rem; font-weight: 700; color: var(--text); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.flow-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,71,0.2); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 3px rgba(201,168,71,0.2); } 50% { box-shadow: 0 0 0 6px rgba(201,168,71,0.1); } }
.flow-ticket-big { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; margin-bottom: 12px; }
.ftb-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.ftb-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.83rem; font-weight: 700; color: var(--text); }
.ftb-id { font-size: 0.63rem; color: var(--text-dim); margin-top: 2px; }
.ftb-stages { display: flex; align-items: center; }
.stage { flex: 1; text-align: center; position: relative; }
.stage-dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); margin: 0 auto 4px; display: flex; align-items: center; justify-content: center; font-size: 0.52rem; font-weight: 700; position: relative; z-index: 1; }
.stage-dot.done { background: var(--gold); border-color: var(--gold); color: var(--text); }
.stage-dot.active { background: var(--white); border-color: var(--teal); color: var(--teal); box-shadow: 0 0 0 4px var(--teal-light); }
.stage::after { content: ''; position: absolute; top: 10px; left: 50%; right: -50%; height: 2px; background: var(--border); z-index: 0; }
.stage:last-child::after { display: none; }
.stage.done::after { background: var(--gold); }
.stage-label { font-size: 0.56rem; color: var(--text-dim); font-weight: 500; }
.flow-meta { display: flex; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.flow-meta-item { text-align: center; }
.flow-meta-val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--text); }
.flow-meta-lbl { font-size: 0.58rem; color: var(--text-dim); margin-top: 2px; }
.flow-notif { background: rgba(201,168,71,0.07); border: 1px solid rgba(201,168,71,0.25); border-radius: 8px; padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.notif-icon { width: 28px; height: 28px; background: var(--gold); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.notif-icon svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.notif-text { font-size: 0.7rem; color: var(--teal-dark); font-weight: 500; line-height: 1.4; }
.notif-time { font-size: 0.58rem; color: var(--gold); margin-top: 1px; }

/* ====== METRICS ====== */
.metrics-band { background: var(--teal); padding: 56px 48px; display: grid; grid-template-columns: repeat(4,1fr); }
.metric-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.metric-item:last-child { border-right: none; }
.metric-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: -0.03em; }
.metric-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 6px; }

/* ====== PRICING ====== */
.pricing { padding: 96px 48px; background: var(--white); }
.pricing-header { max-width: 500px; margin: 0 auto 52px; text-align: center; }
.pricing-header .section-eyebrow { display: inline-flex; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; max-width: 980px; margin: 0 auto; }
.price-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; position: relative; transition: box-shadow 0.3s, transform 0.2s; }
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.price-card.popular { background: var(--teal); border-color: var(--teal); box-shadow: 0 16px 60px rgba(27,43,94,0.25); }
.price-card.popular:hover { box-shadow: 0 24px 80px rgba(27,43,94,0.35); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 4px 14px; border-radius: 100px; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.plan-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.price-card.popular .plan-name { color: rgba(255,255,255,0.7); }
.plan-price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.plan-price sup { font-size: 1.1rem; vertical-align: top; margin-top: 10px; display: inline-block; }
.price-card.popular .plan-price { color: white; }
.plan-period { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 14px; margin-top: 4px; }
.price-card.popular .plan-period { color: rgba(255,255,255,0.6); }
.plan-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.price-card.popular .plan-desc { color: rgba(255,255,255,0.75); }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.price-card.popular .plan-divider { background: rgba(255,255,255,0.2); }
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }
.plan-features li { display: flex; align-items: center; gap: 9px; font-size: 0.835rem; color: var(--text-mid); }
.price-card.popular .plan-features li { color: rgba(255,255,255,0.9); }
.feat-check { width: 16px; height: 16px; background: rgba(201,168,71,0.12); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-check svg { width: 9px; height: 9px; stroke: #7A5C10; stroke-width: 2.5; fill: none; stroke-linecap: round; }
.price-card.popular .feat-check { background: rgba(255,255,255,0.2); }
.price-card.popular .feat-check svg { stroke: white; }
.plan-cta { display: block; text-align: center; padding: 12px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.cta-outline { border: 1.5px solid var(--border); color: var(--text-mid); background: var(--white); }
.cta-outline:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.cta-white { background: white; color: var(--teal-dark); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.cta-white:hover { background: #F8F6EE; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* ====== TESTIMONIALS ====== */
.testimonials { padding: 96px 48px; background: var(--bg); }
.test-header { max-width: 500px; margin-bottom: 48px; }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.test-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: box-shadow 0.25s, transform 0.2s; }
.test-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.test-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.star { color: #F59E0B; font-size: 0.83rem; }
.test-quote { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.test-author { display: flex; align-items: center; gap: 10px; padding-top: 18px; border-top: 1px solid var(--border); }
.test-av { width: 36px; height: 36px; border-radius: 50%; background: var(--teal-light); color: var(--teal-dark); font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.88rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.test-name { font-size: 0.83rem; font-weight: 600; color: var(--text); }
.test-role { font-size: 0.73rem; color: var(--text-dim); margin-top: 1px; }

/* ====== CTA SECTION ====== */
.cta-section { padding: 72px 48px; }
.cta-inner { background: var(--teal); border-radius: 20px; padding: 64px 72px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; overflow: hidden; }
.cta-orb-1 { position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.cta-orb-2 { position: absolute; bottom: -40px; left: 30%; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-text { position: relative; z-index: 1; }
.cta-text h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 700; color: white; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 10px; }
.cta-text p { font-size: 0.93rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.cta-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; flex-shrink: 0; }
.btn-cta-white { background: white; color: var(--teal-dark); font-size: 0.93rem; font-weight: 700; padding: 14px 26px; border-radius: var(--radius-sm); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,0.12); transition: transform 0.2s, box-shadow 0.2s; }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.cta-sub-note { font-size: 0.76rem; color: rgba(255,255,255,0.6); }

/* ====== FOOTER ====== */
footer { background: var(--text); padding: 56px 48px 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand-desc { font-size: 0.84rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 12px; }
.footer-logo-text { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.05rem; font-weight: 700; color: white; letter-spacing: -0.01em; }
.footer-logo-text span { color: #C9A847; }
.footer-col-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col-links a { font-size: 0.86rem; color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.2s; }
.footer-col-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; }
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.28); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { font-size: 0.76rem; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-socials a:hover { color: #C9A847; }

/* ====== REVEAL ====== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; }

/* ====== PAGE HEADER (for inner pages) ====== */
.page-header { padding: 80px 48px 60px; text-align: center; position: relative; overflow: hidden; background: var(--bg); }
.page-header .hero-grid { position: absolute; inset: 0; pointer-events: none; z-index: 0; background-image: linear-gradient(var(--border-light) 1px, transparent 1px), linear-gradient(90deg, var(--border-light) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 100%); }
.page-header-content { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.page-header h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; color: var(--text); margin-bottom: 16px; }
.page-header p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

/* ====== CONTENT SECTIONS ====== */
.content-section { padding: 80px 48px; max-width: 900px; margin: 0 auto; }
.content-section.wide { max-width: 1100px; }
.content-section h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 16px; letter-spacing: -0.02em; }
.content-section h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; margin-top: 32px; }
.content-section p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.content-section ul, .content-section ol { margin-bottom: 16px; padding-left: 24px; }
.content-section li { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 6px; }

/* ====== FAQ ====== */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; background: var(--white); }
.faq-q { padding: 18px 24px; font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.faq-q:hover { background: var(--bg); }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--text-dim); transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 18px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }

/* ====== BLOG CARDS ====== */
.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); 
  overflow: hidden; 
  transition: box-shadow 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { 
  height: 200px; 
  background: var(--teal-light); 
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-body { 
  padding: 24px;
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-tag { 
  font-size: 0.7rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.08em; 
  color: var(--white);
  background: var(--teal);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 12px;
}
.blog-card-title { 
  font-family: 'Bricolage Grotesque', sans-serif; 
  font-size: 1.1rem; 
  font-weight: 700; 
  color: var(--text); 
  margin-bottom: 10px; 
  letter-spacing: -0.01em; 
  line-height: 1.35;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--teal); }
.blog-card-excerpt { 
  font-size: 0.88rem; 
  color: var(--text-muted); 
  line-height: 1.65; 
  margin-bottom: 16px;
  flex: 1;
}
.blog-card-meta { 
  font-size: 0.76rem; 
  color: var(--text-dim);
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

/* ====== FORMS ====== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; color: var(--text);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-light); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ====== AUTH PAGES ====== */
.auth-wrap { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; padding: 48px; background: var(--bg); }
.auth-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 44px; width: 100%; max-width: 440px; box-shadow: var(--shadow-lg); }
.auth-card h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 6px; text-align: center; }
.auth-card .auth-sub { font-size: 0.88rem; color: var(--text-muted); text-align: center; margin-bottom: 28px; }
.auth-card .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; font-size: 0.78rem; color: var(--text-dim); }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.84rem; color: var(--text-muted); }
.auth-footer a { color: var(--teal); font-weight: 600; text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }
.btn-google { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); font-size: 0.88rem; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.btn-google:hover { background: var(--bg); border-color: var(--text-dim); }

/* ====== CHANGELOG ====== */
.changelog-item { border-left: 3px solid var(--teal); padding-left: 24px; margin-bottom: 40px; position: relative; }
.changelog-item::before { content: ''; position: absolute; left: -7px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--teal); border: 2px solid var(--white); }
.changelog-date { font-size: 0.75rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.changelog-version { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.changelog-list { list-style: none; padding: 0; }
.changelog-list li { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; padding: 3px 0; padding-left: 20px; position: relative; }
.changelog-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.changelog-tag { display: inline-block; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 2px 8px; border-radius: 4px; margin-right: 6px; }
.tag-new { background: #F0FDF4; color: #22C55E; }
.tag-improved { background: #EFF6FF; color: #3B82F6; }
.tag-fixed { background: #FEF2F2; color: #EF4444; }

/* ====== TEAM GRID ====== */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; text-align: center; transition: box-shadow 0.25s, transform 0.2s; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-av { width: 64px; height: 64px; border-radius: 50%; background: var(--teal-light); color: var(--teal-dark); font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.team-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); }
.team-role { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* ====== IMAGE STYLES ====== */
.test-av-img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.team-av-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; display: block; border: 3px solid var(--teal-light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.about-story-img { margin-bottom: 32px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-story-img img { width: 100%; max-height: 400px; object-fit: cover; display: block; }

/* Contact split layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: sticky; top: 100px; }
.contact-image img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; display: block; }

/* Auth split layout */
.auth-split { max-width: 900px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.auth-split .auth-card { box-shadow: none; border: none; border-radius: 0; }
.auth-side-image { position: relative; overflow: hidden; min-height: 100%; }
.auth-side-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.auth-side-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; background: linear-gradient(transparent, rgba(27,43,94,0.85)); }
.auth-side-overlay h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 6px; }
.auth-side-overlay p { font-size: 0.88rem; color: rgba(255,255,255,0.8); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .hero, .features, .how, .pricing, .testimonials, .cta-section, .page-header, .content-section { padding-left: 24px; padding-right: 24px; }
  .logos { padding: 36px 24px; }
  .metrics-band { padding: 44px 24px; }
  footer { padding: 44px 24px 28px; }
  .features-grid, .test-grid, .blog-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .metrics-band { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .cta-inner { flex-direction: column; text-align: center; padding: 44px 32px; }
  .cta-actions { align-items: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pf-stats-row { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-image { position: static; }
  .contact-image img { min-height: 250px; }
  .auth-split { grid-template-columns: 1fr; max-width: 440px; }
  .auth-side-image { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .features-grid, .test-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
  .pf-body { grid-template-columns: 1fr; }
  .pf-sidebar { display: none; }
  .auth-wrap { padding: 24px; }
  .auth-card { padding: 28px; }
  .auth-side-image { display: none; }
  .auth-split { max-width: 440px; grid-template-columns: 1fr; }
}

/* ====== BLOG POST PAGE ====== */
.blog-post { max-width: 800px; margin: 0 auto; padding-bottom: 60px; }

.blog-post-hero {
  position: relative;
  padding: 60px 24px 40px;
  text-align: center;
  background: var(--bg);
}

.blog-post-hero .hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(var(--border-light) 1px, transparent 1px), linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--teal);
}

.blog-post-hero-content {
  position: relative;
  z-index: 1;
}

.blog-post-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  margin-bottom: 16px;
}

.blog-post-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.blog-post-meta-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-post-author {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.blog-post-date {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.blog-post-featured-img {
  margin: 0 24px 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.blog-post-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

.blog-post-body {
  padding: 0 24px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.blog-post-body h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 20px;
  letter-spacing: -0.01em;
}

.blog-post-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 16px;
}

.blog-post-body p {
  margin-bottom: 20px;
}

.blog-post-body ul, .blog-post-body ol {
  margin: 20px 0;
  padding-left: 24px;
}

.blog-post-body li {
  margin-bottom: 10px;
}

.blog-post-body a {
  color: var(--teal);
  text-decoration: none;
}

.blog-post-body a:hover {
  text-decoration: underline;
}

.blog-post-body strong {
  color: var(--text);
  font-weight: 600;
}

.blog-pullquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-pullquote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--teal-dark);
  line-height: 1.6;
  margin: 0;
}

.blog-tip {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--gold-dim);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.blog-share {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-share span {
  font-weight: 600;
  color: var(--text);
  margin-right: 4px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.share-twitter {
  background: #E8F5FD;
  color: #1DA1F2;
}

.share-linkedin {
  background: #E8F3FC;
  color: #0A66C2;
}

.share-whatsapp {
  background: #E8F8F0;
  color: #25D366;
}

.share-copy {
  background: var(--bg);
  color: var(--text-mid);
}

.share-btn:hover {
  transform: translateY(-1px);
}

.blog-author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 48px 24px 0;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius);
}

.blog-author-box img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-author-box h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.blog-author-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Blog CTA Banner */
.blog-cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 60px 24px;
  margin-top: 60px;
}

.blog-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.blog-cta-content h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.blog-cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

.blog-cta-content .btn-primary {
  background: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,71,0.35);
}

.blog-cta-content .btn-primary:hover {
  background: var(--gold-light);
}

/* Related Posts */
.related-posts {
  padding: 60px 24px;
  background: var(--bg);
}

.related-posts-header {
  max-width: 1000px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.related-posts-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.view-all-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.view-all-link:hover {
  text-decoration: underline;
}

.related-posts-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-post-hero h1 {
    font-size: 1.6rem;
  }
  
  .blog-post-featured-img {
    margin: 0 16px 32px;
  }
  
  .blog-post-body {
    padding: 0 16px;
  }
  
  .blog-author-box {
    flex-direction: column;
    text-align: center;
    margin: 40px 16px 0;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-share {
    flex-direction: column;
    align-items: flex-start;
  }
}
