/* ========================================================================
   Happy Media — redizajn 2026
   Palette: warm cream + terracotta (primary) + forest green (secondary)
   Typography: Instrument Serif (display) + Inter (UI & body)
   ======================================================================== */

/* ─── Pricing Compare Table — semantic <table> for AI + visual UX ──────── */
.pricing-compare-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.pricing-compare-section .compare-header {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 56ch;
}
.pricing-compare-section .compare-header .section-eyebrow {
  justify-content: center;
}
.pricing-compare-section .compare-header h2 {
  margin: .5rem 0 .75rem;
}
.pricing-compare-section .compare-header p {
  color: var(--text-muted);
  font-size: .95rem;
  margin: 0;
}
.pricing-compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,.08);
  -webkit-overflow-scrolling: touch;
}
.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  font-family: var(--font-heading);
  font-size: .9rem;
  background: var(--surface);
}
.pricing-compare-table thead th {
  padding: 1.5rem 1rem 1.25rem;
  background: var(--surface-alt);
  font-weight: 500;
  text-align: center;
  color: var(--text);
  border-bottom: 2px solid var(--border);
  vertical-align: bottom;
}
.pricing-compare-table thead th:first-child {
  background: transparent;
  text-align: left;
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: .14em;
  vertical-align: bottom;
}
.pricing-compare-table thead th .plan-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.1;
}
.pricing-compare-table thead th .plan-price {
  display: block;
  margin-top: .45rem;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: .82rem;
  color: var(--accent-green);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pricing-compare-table thead th.featured {
  background: linear-gradient(180deg, rgba(45,90,61,.10) 0%, rgba(45,90,61,.04) 100%);
  border-bottom-color: var(--accent-green);
  position: relative;
}
.pricing-compare-table thead th.featured::before {
  content: '★ Preporučeno';
  display: block;
  font-family: var(--font-heading);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: .65rem;
  text-align: center;
}
.pricing-compare-table tbody td {
  padding: .95rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  text-align: center;
  color: var(--text);
  font-size: .88rem;
}
.pricing-compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--text);
  text-align: left;
  font-size: .9rem;
}
.pricing-compare-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-compare-table tbody tr:hover {
  background: rgba(217,119,87,.03);
}
.pricing-compare-table tbody td.yes {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 1.05rem;
}
.pricing-compare-table tbody td.no {
  color: var(--text-muted);
  opacity: .35;
}
.pricing-compare-table tbody td.featured-cell {
  background: linear-gradient(180deg, rgba(45,90,61,.05) 0%, rgba(45,90,61,.02) 100%);
}
.pricing-compare-section .compare-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: .8rem;
  color: var(--text-muted);
}
.pricing-compare-section .compare-footer a {
  color: var(--accent-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 768px) {
  .pricing-compare-table { min-width: 620px; font-size: .82rem; }
  .pricing-compare-table thead th .plan-name { font-size: 1.05rem; }
  .pricing-compare-table thead th .plan-price { font-size: .75rem; }
  .pricing-compare-table tbody td { padding: .75rem .65rem; font-size: .8rem; }
  .pricing-compare-table tbody td:first-child { font-size: .82rem; }
}


:root {
  --bg: #FAF9F5;
  --surface: #FFFFFF;
  --surface-alt: #F2EFE6;
  --border: #E8E6DC;
  --text: #141413;
  --text-muted: #605F5A;

  /* Primary accent — terracotta */
  --accent: #D97757;
  --accent-hover: #C86440;
  --accent-soft: #FAE6DB;

  /* Secondary brand — forest green */
  --accent-green: #2D5A3D;
  --accent-green-hover: #1F4028;
  --accent-green-soft: #DFEAE0;

  --blue: #6A9BCC;
  --green: #788C5D;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(20,20,19,.04);
  --shadow-md: 0 8px 24px rgba(20,20,19,.06);
  --max-w: 1200px;
  --gutter: clamp(1.25rem, 2.5vw, 2rem);

  /* Typography */
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-heading: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}

/* Display — Instrument Serif for hero + section titles (H1/H2) */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

/* Italic emphasis inside H1/H2 — Instrument Serif italic looks gorgeous */
h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* Chinese has no italic convention — keep color emphasis only */
html[lang="zh-Hans"] h1 em,
html[lang="zh-Hans"] h2 em {
  font-style: normal;
  color: var(--accent);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; }

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
a:hover { border-bottom-color: var(--accent); color: var(--accent-hover); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ----------------- HEADER / NAV ----------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,249,245,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  font-family: var(--font-display);
  font-weight: 400; font-size: 1.5rem; color: var(--text);
  border-bottom: none; letter-spacing: -0.01em;
  text-transform: lowercase;
  display: inline-flex; align-items: baseline; gap: .55rem;
  line-height: 1;
}
.brand::after {
  content: ".";
  color: var(--accent);
  margin-left: -.05em;
}
/* Logo — multi-tonal 4-list detelina (4 different greens + cream center) */
.brand-dot {
  width: 24px; height: 24px;
  display: inline-block;
  align-self: center;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-50 -50 100 100'><circle cx='0' cy='-22' r='22' fill='%235A9D6F'/><circle cx='22' cy='0' r='22' fill='%234D8B5F'/><circle cx='0' cy='22' r='22' fill='%233D7A4E'/><circle cx='-22' cy='0' r='22' fill='%236AAE7F'/><circle cx='0' cy='0' r='5' fill='%23FAF9F5'/></svg>") no-repeat center / contain;
  transition: transform .3s ease;
}
.brand:hover .brand-dot {
  transform: rotate(15deg) scale(1.08);
}
.nav-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 1.5rem; align-items: center;
  font-family: var(--font-heading); font-size: .95rem;
}
.nav-links a { color: var(--text); border-bottom: none; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }

/* Zakaži konsultacije — CTA dugme u nav-u */
.nav-links a.nav-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .65rem 1.25rem; border-radius: 999px;
  background: var(--accent) !important;
  color: #ffffff !important;
  font-family: var(--font-heading); font-weight: 600; font-size: .92rem;
  letter-spacing: .01em;
  border-bottom: none !important;
  box-shadow: 0 2px 8px rgba(217, 119, 87, 0.25);
  transition: background .18s ease, color .18s ease, transform .15s ease, box-shadow .18s ease;
}
.nav-links a.nav-cta:hover,
.nav-links a.nav-cta:focus-visible {
  background: var(--accent-hover) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 119, 87, 0.35);
  border-bottom: none !important;
}
.nav-links a.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(217, 119, 87, 0.25);
}
.nav-links a.nav-cta.active {
  color: #ffffff !important;
}

/* mobile nav */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; color: var(--text); }
@media (max-width: 860px) {
  /* Mobile nav: logo centered, hamburger right, both more prominent */
  .site-header .nav {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: .85rem 0;
    min-height: 64px;
  }
  /* Scoped to header brand only — footer brand stays normal */
  .site-header .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.85rem;
    gap: .55rem;
  }
  .site-header .brand-dot {
    width: 32px;
    height: 32px;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    background: var(--bg);
    transition: border-color .15s ease, background .15s ease, color .15s ease;
    z-index: 2;
  }
  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
  }
  .nav-toggle[aria-expanded="true"] {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 1rem 0; display: none;
    z-index: 1;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: .75rem var(--gutter); }

  /* Hero on mobile — detelina above text, smaller padding */
  .hero { padding: 1.5rem 0 2rem; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }
  .hero-clover-solid {
    order: -1; /* clover above text on mobile */
    width: 110px;
    margin: 0 0 .5rem;
  }
  .hero-headline {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
    max-width: 100%;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-cta-row { gap: .75rem; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
}
@media (max-width: 420px) {
  /* Extra-small phones — slight tightening */
  .site-header .brand { font-size: 1.55rem; }
  .site-header .brand-dot { width: 28px; height: 28px; }
}

/* ----------------- HERO ----------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}
.hero .container { position: relative; z-index: 1; }

/* Floating clover decoration — Phase 4A */
.hero-clover {
  position: absolute;
  top: 50%;
  right: clamp(-120px, -8vw, -60px);
  transform: translateY(-50%) rotate(18deg);
  width: clamp(280px, 38vw, 520px);
  height: auto;
  color: var(--accent-green);
  opacity: .06;
  pointer-events: none;
  z-index: 0;
  animation: clover-float 12s ease-in-out infinite;
}
@keyframes clover-float {
  0%, 100% { transform: translateY(-50%) rotate(18deg); }
  50%      { transform: translateY(-50%) rotate(22deg) scale(1.02); }
}
@media (max-width: 860px) {
  .hero-clover { right: -160px; opacity: .04; }
}

/* Editorial hero headline — two-line poetic treatment */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 22ch;
  margin: 0 0 1.25rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero-headline .line-2 {
  display: block;
  color: var(--text);
}

/* Stats bar — canvas-design feel, with subtle top divider */
.hero .stats {
  border-top: 1px solid var(--border);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

/* AI page — clover with highlighted center, Phase 4C */
.hero-clover-center .leaf {
  fill: var(--accent-green-soft);
}
.hero-clover-center .center {
  fill: var(--accent);
  animation: pulse-center 3s ease-in-out infinite;
  transform-origin: center;
}
@keyframes pulse-center {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}

/* AI integration grid — 4 channels showing how AI fits each */
.ai-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.ai-channel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.ai-channel::before {
  content: "";
  position: absolute;
  left: 1.75rem; top: 1.75rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-green-soft);
  z-index: 0;
}
.ai-channel::after {
  content: "";
  position: absolute;
  left: calc(1.75rem + 18px); top: calc(1.75rem + 8px);
  width: 16px; height: 16px;
  background-color: var(--accent);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2v4M12 18v4M2 12h4M18 12h4M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3' stroke='black' stroke-width='2' stroke-linecap='round' fill='none'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2v4M12 18v4M2 12h4M18 12h4M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3' stroke='black' stroke-width='2' stroke-linecap='round' fill='none'/></svg>");
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}
.ai-channel:hover {
  transform: translateY(-2px);
  border-color: var(--accent-green);
}
.ai-channel h3 {
  margin: 3.5rem 0 .5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
}
.ai-channel p { color: var(--text-muted); font-size: .95rem; margin-bottom: .75rem; }
.ai-channel .examples {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--accent);
  line-height: 1.5;
  margin: 0;
}

/* Home AI teaser — Phase 4C */
.ai-teaser {
  background: linear-gradient(135deg, var(--accent-green-soft), var(--surface-alt));
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ai-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 50%, transparent 38px, rgba(45,90,61,0.06) 38px, rgba(45,90,61,0.06) 40px, transparent 40px),
    radial-gradient(circle at 75% 50%, transparent 38px, rgba(45,90,61,0.06) 38px, rgba(45,90,61,0.06) 40px, transparent 40px);
  pointer-events: none;
}
.ai-teaser > * { position: relative; }
.ai-teaser .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent-green);
  margin-bottom: 1rem;
}
.ai-teaser .eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.ai-teaser h2 {
  max-width: 28ch;
  margin: 0 auto 1rem;
}
.ai-teaser p {
  color: var(--text);
  max-width: 56ch;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-heading); font-size: .85rem; font-weight: 500;
  color: var(--accent); text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 1rem;
}
.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}
.hero h1 { margin-bottom: 1rem; max-width: 18ch; }
.hero-lead {
  font-size: 1.2rem; color: var(--text-muted); max-width: 60ch;
  line-height: 1.55;
}
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 1.6rem; border-radius: 999px;
  font-family: var(--font-heading); font-weight: 500; font-size: 1rem;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .1s ease, background .15s ease, border-color .15s ease;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: #fff; border-bottom: none; box-shadow: 0 2px 8px rgba(217, 119, 87, 0.22); }
.btn-primary:hover { background: var(--accent-hover); color: #fff; border-bottom: none; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(217, 119, 87, 0.32); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--text); border-bottom: 1px solid var(--text); }
.btn-secondary:hover { background: var(--text); color: var(--bg); border-bottom: 1px solid var(--text); }
.btn-green { background: var(--accent-green); color: #fff; border-bottom: none; box-shadow: 0 2px 8px rgba(45, 90, 61, 0.22); }
.btn-green:hover { background: var(--accent-green-hover); color: #fff; border-bottom: none; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(45, 90, 61, 0.32); }

/* ----------------- SECTIONS ----------------- */
section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-header { max-width: 60ch; margin-bottom: 2.5rem; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading); font-size: .8rem; font-weight: 500;
  color: var(--accent); text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: .75rem;
}
.section-eyebrow::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}
.section-lead { color: var(--text-muted); font-size: 1.1rem; }

/* ----------------- CARDS / GRID ----------------- */
.grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent-green);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform .3s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d6d3c6;
}
.card:hover::before {
  transform: scaleY(1);
  transform-origin: top center;
}
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.25rem;
  transition: background .25s ease, color .25s ease;
}
.card:hover .card-icon {
  background: var(--accent-green-soft);
  color: var(--accent-green);
}

/* Service card clover icon — Phase 4B */
.card-clover {
  display: block;
  width: 56px; height: 56px;
  margin-bottom: 1.25rem;
}
.card-clover .leaf {
  fill: var(--border);
  transition: fill .3s ease, transform .3s ease;
  transform-origin: 28px 28px;
}
.card[data-leaf="top"]    .card-clover .top,
.card[data-leaf="right"]  .card-clover .right,
.card[data-leaf="bottom"] .card-clover .bottom,
.card[data-leaf="left"]   .card-clover .left {
  fill: var(--accent);
}
.card:hover .card-clover .leaf {
  fill: var(--accent-green-soft);
}
.card:hover[data-leaf="top"]    .card-clover .top,
.card:hover[data-leaf="right"]  .card-clover .right,
.card:hover[data-leaf="bottom"] .card-clover .bottom,
.card:hover[data-leaf="left"]   .card-clover .left {
  fill: var(--accent-green);
}
.card[data-leaf="top"]:hover    .card-clover .top    { transform: translateY(-2px); }
.card[data-leaf="right"]:hover  .card-clover .right  { transform: translateX(2px); }
.card[data-leaf="bottom"]:hover .card-clover .bottom { transform: translateY(2px); }
.card[data-leaf="left"]:hover   .card-clover .left   { transform: translateX(-2px); }

/* Card price — Instrument Serif italic */
.card-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
  margin: 0 0 .75rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.card:hover .card-price {
  color: var(--accent-green);
  transition: color .3s ease;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-muted); margin-bottom: 1rem; }
.card-link {
  font-family: var(--font-heading); font-size: .95rem;
  color: var(--text); border-bottom: 1px solid var(--text);
}
.card-link:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ----------------- TWO-COLUMN ----------------- */
.two-col {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

/* ----------------- STATS / FEATURE LIST ----------------- */
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.feature-list li {
  padding: .5rem 0; padding-left: 1.75rem; position: relative;
  color: var(--text); font-size: 1.05rem;
}
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 1rem;
  width: 12px; height: 12px;
  background-color: var(--accent-green);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-7' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-7' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1;
}
.stat-label {
  color: var(--text-muted); font-size: .92rem;
  margin-top: .35rem; line-height: 1.35;
  font-family: var(--font-heading);
}

/* ----------------- AI-ANSWER GRID (4 pitanja above fold) ----------------- */
.answer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.answer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
.answer-card dt {
  font-family: var(--font-heading);
  font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .4rem;
}
.answer-card dd {
  margin: 0; color: var(--text);
  font-size: 1rem; line-height: 1.5;
}

/* ----------------- PRICING TABLE (AI-friendly) ----------------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 1.5rem 0;
  font-size: .95rem;
}
.pricing-table th,
.pricing-table td {
  padding: .9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table th {
  background: var(--surface-alt);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--surface-alt); }
.pricing-table .price-col { font-family: var(--font-heading); font-weight: 600; color: var(--accent); white-space: nowrap; }

/* ----------------- TEAM ----------------- */
.team-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.team-member {
  text-align: center;
  transition: transform .3s ease;
}
.team-member:hover { transform: translateY(-4px); }
.team-member .photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-alt);
  position: relative;
  margin-bottom: .75rem;
  box-shadow: 0 4px 12px rgba(20,20,19,0.05);
  transition: box-shadow .3s ease;
}
.team-member:hover .photo-wrap { box-shadow: 0 8px 20px rgba(20,20,19,0.12); }
.team-member img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(0.95);
  transition: filter .35s ease, transform .35s ease;
}
.team-member:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.03);
}
.team-member .member-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 .2rem 0;
}
.team-member .member-role {
  font-family: var(--font-heading);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin: 0;
}

/* Team — persistent compact strip (above footer, all pages) */
.team-bar {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.team-bar .team-bar-header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.team-bar .team-bar-header p.section-eyebrow {
  margin-bottom: .35rem;
}
.team-bar .team-bar-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 .25rem 0;
  color: var(--text);
}
.team-bar .team-bar-header p.team-bar-sub {
  color: var(--text-muted);
  font-size: .92rem;
  margin: 0;
}
.team-bar .team-bar-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: nowrap;
  overflow-x: auto;
}
.team-bar-member {
  text-align: center;
  width: clamp(110px, 16vw, 160px);
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  cursor: default;
}
.team-bar-member .photo-wrap {
  width: clamp(96px, 14vw, 140px);
  height: clamp(96px, 14vw, 140px);
  margin: 0 auto .75rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(20,20,19,0.06);
  transition: box-shadow .25s ease;
}
.team-bar-member:hover .photo-wrap {
  box-shadow: 0 4px 14px rgba(20,20,19,0.12);
}
.team-bar-member img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.team-bar-member:hover img {
  transform: scale(1.04);
}
.team-bar-member .name {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 .2rem 0;
}
.team-bar-member .role {
  font-family: var(--font-heading);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin: 0;
}
/* Mobile — allow horizontal scroll instead of wrap, keeps 1-row identity */
@media (max-width: 540px) {
  .team-bar .team-bar-row {
    justify-content: flex-start;
    padding: 0 var(--gutter);
    margin: 0 calc(-1 * var(--gutter));
  }
}

/* Team — full page (detailed cards) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(20,20,19,0.08);
}
.team-card .photo-wrap {
  width: 160px; height: 160px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-alt);
  box-shadow: 0 4px 12px rgba(20,20,19,0.06);
}
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(0.95);
  transition: filter .35s ease, transform .35s ease;
}
.team-card:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}
.team-card h3 {
  font-size: 1.25rem;
  margin: 0 0 .25rem 0;
}
.team-card .member-role {
  font-family: var(--font-heading);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin: 0 0 1rem 0;
}
.team-card .bio {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* ----------------- LANGUAGE SWITCHER ----------------- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-left: .75rem;
  padding-left: .75rem;
  border-left: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: .85rem;
}
.lang-switcher a {
  color: var(--text-muted);
  text-decoration: none;
  padding: .2rem .4rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 500;
}
.lang-switcher a:hover { color: var(--accent); background: var(--surface-alt); }
.lang-switcher a.active { color: var(--text); font-weight: 600; }
@media (max-width: 900px) {
  .lang-switcher {
    margin-left: 0; padding-left: 0; border-left: none;
    border-top: 1px solid var(--border); padding-top: .75rem; margin-top: .5rem;
  }
}

/* ----------------- BLOG ----------------- */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,20,19,0.08); }
.blog-card .meta {
  font-family: var(--font-heading); font-size: .78rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent); margin-bottom: .5rem;
}
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem; line-height: 1.25;
  margin: 0 0 .75rem 0;
}
.blog-card h3 a { color: var(--text); text-decoration: none; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { color: var(--text-muted); margin-bottom: 1rem; flex-grow: 1; }
.blog-card .read-more {
  font-family: var(--font-heading); font-weight: 500;
  color: var(--accent); text-decoration: none;
  font-size: .95rem;
}
.blog-card .read-more:hover { text-decoration: underline; }

.article {
  max-width: 720px; margin: 0 auto;
}
.article h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.15; margin-bottom: 1rem;
}
.article .article-meta {
  font-family: var(--font-heading); font-size: .9rem;
  color: var(--text-muted); margin-bottom: 2rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.article h2 {
  font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 1rem;
}
.article h3 {
  font-size: 1.2rem; margin-top: 2rem; margin-bottom: .75rem;
}
.article p, .article ul, .article ol {
  margin-bottom: 1.25rem; line-height: 1.75;
}
.article ul, .article ol { padding-left: 1.5rem; }
.article li { margin-bottom: .5rem; }
.article blockquote {
  border-left: 3px solid var(--accent);
  padding: .5rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
}
.article .toc {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.article .toc h4 {
  font-size: .85rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent); margin: 0 0 .75rem 0;
}
.article .toc ol { margin: 0; padding-left: 1.25rem; }
.article .toc li { margin-bottom: .35rem; font-size: .95rem; }
.article .toc a { color: var(--text); text-decoration: none; }
.article .toc a:hover { color: var(--accent); text-decoration: underline; }

.article-cta {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2.5rem 0;
  text-align: center;
}
.article-cta h3 { margin-bottom: .5rem; }
.article-cta p { margin-bottom: 1rem; color: var(--text-muted); }

/* ----------------- LAST UPDATED (freshness signal) ----------------- */
.last-updated {
  font-family: var(--font-heading);
  font-size: .82rem;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .75rem;
  background: var(--surface-alt);
  border-radius: 999px;
  border: 1px solid var(--border);
}
.last-updated::before {
  content: "●"; color: var(--green); font-size: .6rem;
}

/* ----------------- CALLOUT / CTA BAND ----------------- */
.cta-band {
  background: var(--text); color: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin: 2rem 0;
}
.cta-band h2 { color: var(--bg); margin-bottom: .75rem; }
.cta-band p { color: #d9d7c9; margin-bottom: 2rem; max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { background: var(--accent); }

/* ----------------- BREADCRUMBS ----------------- */
.crumbs {
  font-family: var(--font-heading); font-size: .85rem;
  color: var(--text-muted);
  padding: 1.25rem 0 0;
}
.crumbs a { color: var(--text-muted); border-bottom: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { margin: 0 .5rem; color: #b0aea5; }

/* ----------------- PRICING ----------------- */
.price-tag {
  display: inline-block; padding: .35rem .85rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-heading); font-weight: 500; font-size: .95rem;
  margin-bottom: 1rem;
}

/* ----------------- CONTACT ----------------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info p { margin: .35rem 0; }
.contact-info strong { font-family: var(--font-heading); font-weight: 600; }
.calendly-inline-widget {
  min-width: 320px; height: 680px;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
}

/* ----------------- FOOTER ----------------- */
.site-footer {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem; margin-top: 4rem;
  font-size: .95rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 {
  font-size: .85rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-muted); margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid a { color: var(--text); border-bottom: none; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 1rem;
  color: var(--text-muted); font-size: .875rem; flex-wrap: wrap;
}

/* ----------------- ACCESSIBILITY ----------------- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--text); color: var(--bg); padding: .75rem 1rem;
  border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0s !important; transition: none !important; }
}

/* ========================================================================
   PHASE 5 — Editorial redesign (dark bands + multi-tonal clover + tagged cards)
   ======================================================================== */

:root {
  /* Dark band ink */
  --ink: #1A1815;
  --ink-text: #F5F1EA;
  --ink-muted: #8E8980;

  /* Third accent — warm gold (italic em color, used sparingly) */
  --accent-gold: #C4A57B;

  /* Multi-tonal greens for hero clover */
  --leaf-top: #5A9D6F;
  --leaf-right: #4D8B5F;
  --leaf-bottom: #3D7A4E;
  --leaf-left: #6AAE7F;
}

/* ---- Italic em color variants (sit alongside default terracotta em) ---- */
h1 em.green, h2 em.green, h3 em.green { color: var(--accent-green); }
h1 em.gold,  h2 em.gold,  h3 em.gold  { color: var(--accent-gold); }
html[lang="zh-Hans"] h1 em.green,
html[lang="zh-Hans"] h2 em.green,
html[lang="zh-Hans"] h3 em.green { font-style: normal; color: var(--accent-green); }
html[lang="zh-Hans"] h1 em.gold,
html[lang="zh-Hans"] h2 em.gold,
html[lang="zh-Hans"] h3 em.gold { font-style: normal; color: var(--accent-gold); }

/* ---- Dark sections (stats + process) ---- */
.section-dark {
  background: var(--ink);
  color: var(--ink-text);
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--ink-text); }
.section-dark p { color: var(--ink-muted); }
.section-dark .section-eyebrow {
  color: var(--ink-muted);
}
.section-dark .section-eyebrow::before {
  background: var(--accent-gold);
}
.section-dark a:not(.btn) { color: var(--accent-gold); border-bottom-color: transparent; }
.section-dark a:not(.btn):hover { border-bottom-color: var(--accent-gold); }

/* Stats band — 4 stats edge-to-edge on dark */
.stats-band {
  background: var(--ink);
  color: var(--ink-text);
  padding: clamp(2.25rem, 4vw, 3.25rem) 0;
}
.stats-band .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: end;
}
@media (max-width: 720px) {
  .stats-band .stats-row { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}
.stats-band .stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1;
  color: var(--ink-text);
  letter-spacing: -0.02em;
  margin: 0 0 .35rem;
}
.stats-band .stat-label {
  font-family: var(--font-heading);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-muted);
  margin: 0;
}

/* Process dark band — 4 columns of steps */
.process-dark { background: var(--ink); color: var(--ink-text); }
.process-dark .process-header { max-width: 60ch; margin-bottom: 2.5rem; }
.process-dark .process-header h2 { color: var(--ink-text); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 860px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { padding-top: 1.25rem; border-top: 1px solid #2D2A26; }
.process-step .step-num {
  font-family: var(--font-heading);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent-gold);
  margin: 0 0 .65rem;
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 .5rem;
  color: var(--ink-text);
}
.process-step p {
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
  color: var(--ink-muted);
}

/* ---- Hero — solid multi-tonal clover (replaces faint deco) ---- */
.hero-clover-solid {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  display: block;
  flex-shrink: 0;
}
.hero-clover-solid .leaf-top    { fill: var(--leaf-top); }
.hero-clover-solid .leaf-right  { fill: var(--leaf-right); }
.hero-clover-solid .leaf-bottom { fill: var(--leaf-bottom); }
.hero-clover-solid .leaf-left   { fill: var(--leaf-left); }
.hero-clover-solid .leaf-center { fill: var(--bg); }

.hero-split {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-clover-solid { width: 160px; margin: 0 0 .5rem; }
}

/* Hero eyebrow as PILL (chip) — design uses outlined pill */
.hero-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero-pill {
  display: inline-flex; align-items: center;
  font-family: var(--font-heading);
  font-size: .68rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--text-muted);
  padding: .35rem .85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
}
.hero-pill.green { color: var(--accent-green); border-color: var(--accent-green-soft); }

/* CTA primary in hero — design uses BLACK pill, not terracotta */
.btn-dark {
  background: var(--ink); color: var(--ink-text);
  border-bottom: none;
  box-shadow: 0 2px 8px rgba(20,20,19,0.18);
}
.btn-dark:hover {
  background: #000; color: var(--ink-text);
  border-bottom: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(20,20,19,0.28);
}

/* ---- Service cards: editorial variant (numbered + tags + footer row) ---- */
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 2.5rem;
}
.services-header .lead { color: var(--text-muted); font-size: 1rem; line-height: 1.6; max-width: 44ch; }
@media (max-width: 720px) { .services-header { grid-template-columns: 1fr; gap: 1rem; align-items: start; } }

.cards-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 720px) { .cards-2x2 { grid-template-columns: 1fr; } }
.cards-2x2 .card-row {
  position: relative;
  padding: 2rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: transparent;
  border-left: none; border-right: none; border-top: none;
  border-radius: 0;
  overflow: visible;
  display: flex; flex-direction: column;
  transition: background .2s ease;
}
.cards-2x2 .card-row:nth-child(odd) { border-right: 1px solid var(--border); }
@media (max-width: 720px) {
  .cards-2x2 .card-row:nth-child(odd) { border-right: none; }
}
.cards-2x2 .card-row::before { display: none; } /* no left bar on flat layout */

/* Mini-clover indicator in top-right of each card */
.cards-2x2 .card-clover {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 32px; height: 32px;
  margin: 0;
}

/* Default leaf indicator — green per card position (matches data-leaf) */
.cards-2x2 .card-row .card-clover .leaf {
  fill: var(--border);
  transition: fill .3s ease, transform .3s ease;
}
.cards-2x2 .card-row[data-leaf="top"]    .card-clover .top,
.cards-2x2 .card-row[data-leaf="right"]  .card-clover .right,
.cards-2x2 .card-row[data-leaf="bottom"] .card-clover .bottom,
.cards-2x2 .card-row[data-leaf="left"]   .card-clover .left {
  fill: var(--accent-green);
}

/* HOVER — full dark inversion (cream → ink) */
.cards-2x2 .card-row:hover {
  background: var(--ink);
  color: var(--ink-text);
  transform: none;
  box-shadow: none;
}
.cards-2x2 .card-row:hover h3 { color: var(--ink-text); }
.cards-2x2 .card-row:hover p { color: var(--ink-muted); }
.cards-2x2 .card-row:hover .card-num { color: var(--ink-muted); }
.cards-2x2 .card-row:hover .card-tag {
  background: transparent;
  border-color: #3A3631;
  color: var(--ink-muted);
}
.cards-2x2 .card-row:hover .card-bottom { border-top-color: #3A3631; }
.cards-2x2 .card-row:hover .card-link {
  color: var(--ink-text);
  border-bottom-color: transparent;
}
.cards-2x2 .card-row:hover .card-link:hover { border-bottom-color: var(--ink-text); }
/* Clover on dark hover — soft grey base + lighter green for highlighted leaf */
.cards-2x2 .card-row:hover .card-clover .leaf { fill: #3A3631; }
.cards-2x2 .card-row:hover[data-leaf="top"]    .card-clover .top,
.cards-2x2 .card-row:hover[data-leaf="right"]  .card-clover .right,
.cards-2x2 .card-row:hover[data-leaf="bottom"] .card-clover .bottom,
.cards-2x2 .card-row:hover[data-leaf="left"]   .card-clover .left {
  fill: var(--leaf-top); /* lighter green pops on dark */
}
/* Price stays green on dark */
.cards-2x2 .card-row:hover .card-price { color: var(--leaf-top); }
.card-num {
  font-family: var(--font-heading);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin: 0 0 .75rem;
}
.cards-2x2 .card-row h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.01em;
  margin: 0 0 .65rem;
  color: var(--text);
  line-height: 1.1;
}
.cards-2x2 .card-row p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 44ch;
}
.card-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin: 0 0 1.5rem; }
.card-tag {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  padding: .35rem .7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  margin-top: auto;
  gap: 1rem;
}
.card-bottom .card-price {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1;
  font-weight: 400;
  color: var(--accent-green);
}
.card-bottom .card-link {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}
.card-bottom .card-link:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
  transform: translateX(2px);
}
/* On dark hover state — keep CTA visible with light terracotta */
.cards-2x2 .card-row:hover .card-bottom .card-price { color: var(--leaf-top); }
.cards-2x2 .card-row:hover .card-bottom .card-link {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.cards-2x2 .card-row:hover .card-bottom .card-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* ---- Reviews stripe (cream, with serif H2 + 3 review cards) ---- */
.reviews-stripe { padding: clamp(3rem, 6vw, 5rem) 0; }
.reviews-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2rem;
}
.reviews-head h2 { margin: 0; }
.reviews-head .reviews-meta {
  font-family: var(--font-heading);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.review-card .stars { color: var(--accent); font-size: .85rem; margin-bottom: .65rem; }
.review-card blockquote {
  margin: 0 0 1rem; font-size: 1rem; line-height: 1.55;
  color: var(--text); font-style: normal;
}
.review-card .reviewer {
  font-family: var(--font-heading);
  font-weight: 500; font-size: .92rem;
  color: var(--text); margin: 0;
}
.review-card .reviewer-meta {
  font-family: var(--font-heading);
  font-size: .75rem; color: var(--text-muted);
  margin: .15rem 0 0;
}

/* ========================================================================
   PHASE 6 — Service page (Izrada sajtova) editorial layout
   ======================================================================== */

/* Hero with browser mockup on right */
.service-hero { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.service-hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) {
  .service-hero .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.service-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
}
.service-hero .hero-pills .hero-pill { background: var(--bg); }

/* Inline 3-stat row below hero CTAs (compact, not the dark band) */
.hero-stats-inline {
  display: flex;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stats-inline > div { min-width: 80px; }
.hero-stats-inline .stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1;
  color: var(--accent-green);
  margin: 0 0 .25rem;
  letter-spacing: -0.02em;
}
.hero-stats-inline .stat-label {
  font-family: var(--font-heading);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin: 0;
}

/* Browser mockup in hero — decorative, signals "this is what we make" */
.hero-mockup {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(20,20,19,0.08);
  overflow: hidden;
  font-family: var(--font-heading);
}
.hero-mockup .browser-bar {
  background: var(--surface-alt);
  padding: .65rem .9rem;
  display: flex; align-items: center; gap: .5rem;
  border-bottom: 1px solid var(--border);
}
.hero-mockup .browser-dots {
  display: inline-flex; gap: .35rem;
}
.hero-mockup .browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  display: block;
}
.hero-mockup .browser-dots span:nth-child(1) { background: #ED6A5E; }
.hero-mockup .browser-dots span:nth-child(2) { background: #F5BD4F; }
.hero-mockup .browser-dots span:nth-child(3) { background: #61C454; }
.hero-mockup .browser-url {
  flex: 1;
  background: var(--bg);
  border-radius: 6px;
  padding: .25rem .65rem;
  font-size: .75rem;
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, monospace;
}
.hero-mockup .mockup-body {
  padding: 1.5rem;
}
.hero-mockup .mockup-row {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1rem;
}
.hero-mockup .mockup-clover {
  width: 28px; height: 28px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-50 -50 100 100'><circle cx='0' cy='-22' r='22' fill='%235A9D6F'/><circle cx='22' cy='0' r='22' fill='%234D8B5F'/><circle cx='0' cy='22' r='22' fill='%233D7A4E'/><circle cx='-22' cy='0' r='22' fill='%236AAE7F'/><circle cx='0' cy='0' r='5' fill='%23FAF9F5'/></svg>") no-repeat center / contain;
  flex-shrink: 0;
}
.hero-mockup .mockup-line {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  flex: 1;
}
.hero-mockup .mockup-line.short { max-width: 40%; }
.hero-mockup h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
  color: var(--text);
  line-height: 1.2;
}
.hero-mockup h4 em { color: var(--accent); font-style: italic; }
.hero-mockup .mockup-cta {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--ink);
  color: var(--ink-text);
  padding: .55rem 1rem;
  border-radius: 999px;
  font-size: .78rem; font-weight: 500;
  margin: .75rem 0 1.25rem;
}
.hero-mockup .mockup-image {
  background: var(--accent-green-soft);
  border-radius: var(--radius-sm);
  padding: 2.5rem 1rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent-green);
}

/* PRICING GRID — 3 columns, middle "featured" dark variant */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; gap: 1rem; } }

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(20,20,19,0.08);
}
.pricing-card.featured {
  background: var(--ink);
  color: var(--ink-text);
  border: 1px solid var(--ink);
}
.pricing-card.featured:hover { box-shadow: 0 16px 32px rgba(20,20,19,0.18); }

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .4rem 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(217,119,87,0.35);
}

.pricing-card .pricing-eyebrow {
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.pricing-card.featured .pricing-eyebrow { color: var(--accent); }

.pricing-card .pricing-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
  margin: 0 0 .85rem;
  color: inherit;
}

.pricing-card .pricing-price {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1;
  margin: 0 0 1.5rem;
  color: var(--accent-green);
  letter-spacing: -0.02em;
}
.pricing-card .pricing-price .price-suffix {
  font-style: italic;
  font-size: .55em;
  color: var(--text-muted);
  margin-left: .25rem;
}
.pricing-card.featured .pricing-price { color: var(--accent-gold); }
.pricing-card.featured .pricing-price .price-suffix { color: var(--ink-muted); }

.pricing-card ul.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex-grow: 1;
}
.pricing-card ul.pricing-features li {
  position: relative;
  padding: .4rem 0 .4rem 1.5rem;
  font-size: .92rem;
  line-height: 1.45;
  color: var(--text);
}
.pricing-card.featured ul.pricing-features li { color: var(--ink-text); }
.pricing-card ul.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 600;
}
.pricing-card.featured ul.pricing-features li::before { color: var(--leaf-top); }

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}
.pricing-card .btn.btn-dark { background: var(--ink); color: var(--ink-text); }
.pricing-card.featured .btn { background: var(--accent); color: #fff; box-shadow: 0 4px 12px rgba(217,119,87,0.3); }
.pricing-card.featured .btn:hover { background: var(--accent-hover); }

.pricing-footnote {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-size: .92rem;
  color: var(--text-muted);
}
.pricing-footnote a { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }

/* PROCESS — 5 columns variant for service pages */
.process-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
@media (max-width: 1080px) { .process-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .process-grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .process-grid-5 { grid-template-columns: 1fr; } }

.process-grid-5 .process-step .step-num .day {
  display: block;
  margin-top: .15rem;
  color: var(--ink-muted);
  font-size: .65rem;
}
.process-header-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
@media (max-width: 720px) { .process-header-row { grid-template-columns: 1fr; align-items: start; gap: 1rem; } }
.process-header-row .process-header-text {
  font-size: 1rem; line-height: 1.55;
  color: var(--ink-muted);
  max-width: 44ch;
}

/* FAQ ACCORDION (native <details>) */
.faq-accordion {
  max-width: 820px;
  margin: 2.5rem auto 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s ease, color .2s ease;
}
.faq-item summary:hover { background: var(--surface-alt); }
.faq-item summary:hover::after { color: var(--accent); }
.faq-item[open] summary::after {
  content: "×";
  color: var(--accent);
  transform: rotate(0deg);
}
.faq-item .faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.6;
  margin: 0;
}

/* Client logo bar — text-based, signals trust */
.logo-bar {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.logo-bar .logo-bar-eyebrow {
  text-align: center;
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}
.logo-bar .logo-bar-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: var(--text-muted);
  letter-spacing: -0.01em;
}
.logo-bar .logo-bar-row span {
  white-space: nowrap;
  transition: color .2s ease;
}
.logo-bar .logo-bar-row span:hover { color: var(--text); }

/* Quick answers — 4-col editorial summary (AI-SEO friendly with dl/dt/dd) */
.quick-answers { padding: clamp(3rem, 6vw, 5rem) 0; }
.quick-answers .qa-header {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}
.quick-answers .qa-header .section-eyebrow {
  justify-content: center;
}
.quick-answers .qa-header h2 {
  margin-bottom: 0;
}
.quick-answers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  padding: 0;
}
@media (max-width: 960px) { .quick-answers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .quick-answers-grid { grid-template-columns: 1fr; } }

.quick-answer {
  padding-top: 1.5rem;
  border-top: 2px solid var(--accent-green);
  position: relative;
}
.qa-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent-green);
  margin: 0 0 .65rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.quick-answer dt {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.65rem);
  color: var(--text);
  margin-bottom: .85rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.quick-answer dd {
  margin: 0;
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.6;
}
.quick-answer dd strong {
  color: var(--text);
  font-weight: 500;
}

/* Hero pill — terracotta variant (for "Besplatna SEO analiza" type CTAs) */
.hero-pill.terracotta {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* Google search results mockup — for SEO page hero */
.search-mockup {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(20,20,19,0.08);
  overflow: hidden;
  font-family: var(--font-heading);
}
.search-mockup .search-bar {
  background: var(--surface-alt);
  padding: .75rem 1rem;
  display: flex; align-items: center; gap: .5rem;
  border-bottom: 1px solid var(--border);
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: .72rem;
  color: var(--text-muted);
  word-break: break-all;
}
.search-mockup .search-query {
  color: var(--accent);
}
.search-mockup .search-result {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.search-mockup .search-result:last-child { border-bottom: none; }
.search-mockup .search-result.featured {
  background: var(--accent-green-soft);
  border-left: 3px solid var(--accent-green);
}
.search-mockup .result-rank {
  position: absolute;
  top: .9rem; right: 1rem;
  font-family: var(--font-heading);
  font-size: .65rem; font-weight: 700;
  color: var(--accent-green);
  background: var(--surface);
  padding: .2rem .5rem;
  border-radius: 999px;
  border: 1px solid var(--accent-green);
  margin: 0;
  letter-spacing: .05em;
}
.search-mockup .result-url {
  font-size: .68rem;
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, monospace;
  margin: 0 0 .25rem;
}
.search-mockup .result-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .92rem;
  color: var(--accent-green);
  margin: 0 0 .35rem;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-color: var(--accent-green-soft);
  text-underline-offset: 3px;
}
.search-mockup .search-result:not(.featured) .result-title {
  color: var(--blue);
}
.search-mockup .result-snippet {
  font-family: var(--font-body);
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* 6-services grid (3×2 cells with thin dividers) */
.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
}
@media (max-width: 860px) { .services-grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid-6 { grid-template-columns: 1fr; } }

.service-item {
  padding: 2rem 1.75rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  background: transparent;
  transition: background .2s ease;
}
.services-grid-6 .service-item:nth-child(3n) { border-right: none; }
@media (max-width: 860px) {
  .services-grid-6 .service-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .services-grid-6 .service-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 540px) {
  .services-grid-6 .service-item { border-right: none; }
}
.service-item:hover { background: var(--surface-alt); }
.service-item .item-num {
  font-family: var(--font-heading);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.service-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  letter-spacing: -0.01em;
  margin: 0 0 .65rem;
  color: var(--text);
  line-height: 1.15;
}
.service-item p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

/* Pricing — monthly price suffix variant */
.pricing-card .pricing-price.monthly {
  font-family: var(--font-display);
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: .35rem;
}
.pricing-card .pricing-price.monthly .month {
  font-style: italic;
  font-size: .55em;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-card.featured .pricing-price.monthly .month { color: var(--ink-muted); }

/* Dashboard mockup — dark, for marketing hero (analytics aesthetic) */
.dashboard-mockup {
  background: var(--ink);
  color: var(--ink-text);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  font-family: var(--font-heading);
  box-shadow: 0 12px 40px rgba(20,20,19,0.18);
}
.dashboard-mockup .dash-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
}
.dashboard-mockup .dash-title {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-muted);
}
.dashboard-mockup .dash-live {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent-gold);
  background: rgba(196,165,123,.1);
  padding: .25rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(196,165,123,.3);
}
.dashboard-mockup .dash-live .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.dashboard-mockup .dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-bottom: 1rem;
}
.dashboard-mockup .dash-stat {
  background: rgba(255,255,255,.04);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.06);
}
.dashboard-mockup .dash-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-muted);
  margin: 0 0 .35rem;
}
.dashboard-mockup .dash-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-gold);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1;
}
.dashboard-mockup .dash-delta {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 500;
  margin-left: .4rem;
}
.dashboard-mockup .dash-delta.up { color: var(--leaf-top); }
.dashboard-mockup .dash-chart {
  background: rgba(255,255,255,.04);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.06);
}
.dashboard-mockup .dash-chart .dash-label { margin-bottom: .65rem; }
.dashboard-mockup .dash-svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* Platforms grid — 2×2 flat dividers (variant of services-grid) */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
}
.platforms-grid .service-item {
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.platforms-grid .service-item:nth-child(2n) { border-right: none; }
@media (max-width: 540px) {
  .platforms-grid { grid-template-columns: 1fr; }
  .platforms-grid .service-item { border-right: none; }
}

/* Pricing price with "+ budžet" suffix (marketing fee + spend separation) */
.pricing-price .price-plus {
  font-family: var(--font-heading);
  font-size: .42em;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: .35rem;
  font-style: normal;
  display: inline-block;
}
.pricing-card.featured .pricing-price .price-plus { color: var(--ink-muted); }

/* Status mockup — cream, for maintenance hero (uptime/SSL/backup status) */
.status-mockup {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(20,20,19,0.08);
  font-family: var(--font-heading);
  overflow: hidden;
}
.status-mockup .status-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.status-mockup .status-title {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
}
.status-mockup .status-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent-green);
  background: var(--accent-green-soft);
  padding: .3rem .65rem;
  border-radius: 999px;
}
.status-mockup .status-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-green);
  animation: pulse-dot 2s ease-in-out infinite;
}
.status-mockup .status-row {
  padding: .85rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.status-mockup .status-row:last-child { border-bottom: none; }
.status-mockup .status-label {
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 500;
}
.status-mockup .status-value {
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: .8rem;
  font-weight: 500;
}
.status-mockup .status-value.good { color: var(--accent-green); }
.status-mockup .status-progress {
  width: 90px;
  height: 4px;
  background: var(--surface-alt);
  border-radius: 2px;
  overflow: hidden;
}
.status-mockup .status-progress-bar {
  height: 100%;
  background: var(--accent-gold);
  width: 65%;
}

/* ─── Service-stack mockup — homepage hero right column ─────────────────────
   Vertical "all-in-one" card with 4 service rows. Replaces the lone clover.   */
.service-stack {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,.18), 0 4px 12px -4px rgba(0,0,0,.06);
  overflow: hidden;
  align-self: center;
  width: 100%;
  max-width: 460px;
  justify-self: end;
}
.service-stack-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface-alt);
}
.service-stack .stack-title {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
  text-transform: uppercase;
}
.service-stack .stack-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-heading);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--accent-green);
  text-transform: uppercase;
}
.service-stack .stack-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(45,90,61,.18);
}
.service-stack .stack-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: background .18s ease, transform .18s ease;
}
.service-stack .stack-row:hover {
  background: var(--surface-alt);
}
.service-stack .stack-row:last-of-type { border-bottom: none; }
.service-stack .stack-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-stack .stack-name {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
}
.service-stack .stack-badge {
  display: inline-block;
  margin-left: .35rem;
  font-family: var(--font-heading);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--accent-gold);
  color: #fff;
  padding: .15rem .4rem;
  border-radius: 3px;
  vertical-align: middle;
}
.service-stack .stack-price {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.service-stack .stack-row.featured {
  background: linear-gradient(135deg, rgba(45,90,61,.04) 0%, rgba(196,165,123,.06) 100%);
}
.service-stack .stack-row.featured .stack-check {
  background: var(--accent-gold);
}
.service-stack-footer {
  padding: .85rem 1.5rem;
  background: #1a1a1a;
  color: rgba(255,255,255,.85);
  font-family: var(--font-heading);
  font-size: .75rem;
  text-align: center;
  letter-spacing: .01em;
}

/* ─── Trust strip — social proof bar right under hero ───────────────────── */
.trust-strip {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip .trust-eyebrow {
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 1.5rem;
}
.trust-strip .trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .65rem 1rem;
  margin-bottom: 2rem;
}
.trust-strip .trust-pill {
  display: inline-flex; align-items: center;
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: .55rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.trust-strip .trust-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.45;
  color: var(--text);
  text-align: center;
  max-width: 56ch;
  margin: 0 auto;
  padding: 0;
  border: none;
}
.trust-strip .trust-quote cite {
  display: block;
  font-family: var(--font-heading);
  font-style: normal;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: .8rem;
  letter-spacing: .02em;
}

/* Mobile — service stack stacks naturally below text, trust strip wraps */
@media (max-width: 820px) {
  .service-stack { max-width: 100%; justify-self: stretch; margin-top: 1.5rem; }
  .trust-strip .trust-quote { font-size: 1.1rem; }
}

/* Why-list — numbered editorial list (right column of why-section) */
.why-list { margin: 0; padding: 0; }
.why-list .why-item {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.why-list .why-item:first-child {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.why-list .why-item dt {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 0 0 .4rem;
}
.why-list .why-num {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  min-width: 25px;
}
.why-list .why-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.2;
}
.why-list .why-item dd {
  margin: 0 0 0 calc(25px + 1rem);
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.55;
}

/* Pricing — strikethrough for unavailable features */
.pricing-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: .55;
}
.pricing-features li.disabled::before {
  content: "—";
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
}
.pricing-card.featured ul.pricing-features li.disabled { color: var(--ink-muted); }
.pricing-card.featured ul.pricing-features li.disabled::before { color: var(--ink-muted); }

/* Green CTA band — for maintenance page bottom (warm, friendly close) */
.cta-green {
  background: var(--accent-green);
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}
.cta-green .cta-green-clover {
  position: absolute;
  width: clamp(220px, 30vw, 380px);
  left: clamp(-100px, -8vw, -40px);
  top: 50%;
  transform: translateY(-50%);
  opacity: .12;
  pointer-events: none;
}
.cta-green .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-green .section-eyebrow {
  justify-content: center;
  color: rgba(255,255,255,.7);
}
.cta-green .section-eyebrow::before {
  background: var(--accent-gold);
}
.cta-green h2 {
  color: #fff;
  max-width: 24ch;
  margin: 0 auto 1rem;
}
.cta-green p {
  color: rgba(255,255,255,.85);
  max-width: 56ch;
  margin: 0 auto 1.5rem;
}
.cta-green .cta-row {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.cta-green .btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.cta-green .btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: #fff;
}

/* ========================================================================
   PHASE 7 — Contact page
   ======================================================================== */

/* Contact hero — large editorial headline, no split */
.contact-hero { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); }
.contact-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
  max-width: 22ch;
}
.contact-hero .hero-pills { margin-bottom: 1.25rem; }

/* Contact main — 2-col layout (form + side) */
.contact-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: 4rem;
}
@media (max-width: 860px) { .contact-main { grid-template-columns: 1fr; } }

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 540px) { .contact-form .form-row { grid-template-columns: 1fr; } }
.contact-form .form-field {
  display: flex; flex-direction: column; gap: .4rem;
  margin-bottom: 1.5rem;
}
.contact-form .field-label {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
}
.contact-form .field-label .req { color: var(--accent); margin-left: .15rem; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  padding: .75rem .95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color .15s ease;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
  line-height: 1.5;
}
.contact-form .form-footer {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.contact-form .form-footnote {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
}

/* Pill group — checkbox/radio pills */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.pill-group input[type="checkbox"],
.pill-group input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.pill-group label {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: .85rem;
  color: var(--text);
  cursor: pointer;
  background: var(--bg);
  transition: all .15s ease;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.pill-group label:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pill-group input:checked + label {
  background: var(--ink);
  color: var(--ink-text);
  border-color: var(--ink);
}
.pill-group input:focus-visible + label {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Contact side — direct info + calendly + address */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-block .block-eyebrow {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.contact-block .info-row {
  margin: 0 0 1rem;
}
.contact-block .info-row:last-child { margin-bottom: 0; }
.contact-block .info-label {
  font-family: var(--font-heading);
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0 0 .15rem;
}
.contact-block .info-value {
  color: var(--text);
  font-size: 1.02rem;
  margin: 0;
  font-family: var(--font-heading);
}
.contact-block .info-value a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.contact-block .info-value a:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}
.contact-block .address-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 .5rem;
  color: var(--text);
}
.contact-block .address-meta {
  font-family: var(--font-heading);
  font-size: .75rem;
  color: var(--text-muted);
  margin: .5rem 0 0;
  letter-spacing: .04em;
}

/* Calendly dark wrap */
.calendly-dark {
  background: var(--ink);
  color: var(--ink-text);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.calendly-dark .block-eyebrow {
  color: rgba(255,255,255,.55);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.calendly-dark .block-eyebrow::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-gold);
}
.calendly-dark h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink-text);
  line-height: 1.2;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
.calendly-dark .calendly-inline-widget {
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: none;
  min-height: 600px;
}

/* Social pills */
.social-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  border-top: 1px solid var(--border);
}
.social-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0;
  letter-spacing: -0.01em;
}
.social-pills {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  transition: all .15s ease;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.social-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  border-bottom-color: var(--accent);
}
.social-pill::after {
  content: "↗";
  font-size: .8rem;
  opacity: .6;
}

/* ========================================================================
   PHASE 8 — Blog (index + single post)
   ======================================================================== */

/* Blog hero */
.blog-hero { padding: clamp(3rem, 6vw, 5rem) 0 1.5rem; }
.blog-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
  max-width: 24ch;
}

/* Toolbar — filter pills + search */
.blog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 0 2rem;
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
}
.blog-pills {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-top: 1.25rem;
}
.blog-pills .filter-pill {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: .85rem;
  color: var(--text-muted);
  background: var(--bg);
  cursor: pointer;
  text-decoration: none;
  transition: all .15s ease;
  border-bottom: 1px solid var(--border);
}
.blog-pills .filter-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.blog-pills .filter-pill.active {
  background: var(--ink);
  color: var(--ink-text);
  border-color: var(--ink);
  font-weight: 500;
}
.blog-search {
  position: relative;
  min-width: 220px;
  margin-top: 1.25rem;
}
.blog-search input {
  width: 100%;
  padding: .55rem 1rem .55rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: .88rem;
  background: var(--bg);
  color: var(--text);
}
.blog-search input:focus {
  outline: none;
  border-color: var(--accent);
}
.blog-search::before {
  content: "⌕";
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-58%);
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1;
  pointer-events: none;
}

/* Post thumbnail (colored placeholder + clover decoration) */
.post-thumb {
  position: relative;
  background: var(--accent-green);
  min-height: 200px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.post-thumb-cat {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.18);
  padding: .35rem .8rem;
  border-radius: 999px;
  margin: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}
.post-thumb-clover {
  position: absolute;
  width: 70%;
  bottom: -15%;
  right: -10%;
  opacity: .35;
  pointer-events: none;
}
/* Color variants */
.post-thumb.color-green { background: var(--accent-green); }
.post-thumb.color-terracotta { background: var(--accent); }
.post-thumb.color-gold { background: #C4A57B; }
.post-thumb.color-blue { background: #6A9BCC; }
.post-thumb.color-sage { background: #5A7A4D; }
.post-thumb.color-coral { background: #E89C7C; }

/* Featured post — large 2-col card */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  margin-bottom: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  transition: transform .2s ease, box-shadow .2s ease;
  border-bottom: 1px solid var(--border);
}
.featured-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(20,20,19,0.1);
  color: var(--text);
}
.featured-post .post-thumb {
  min-height: 320px;
}
@media (max-width: 720px) {
  .featured-post { grid-template-columns: 1fr; }
  .featured-post .post-thumb { min-height: 220px; }
}

.featured-post-body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex; flex-direction: column;
}
.featured-post-body .post-cat-text {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin: 0 0 1rem;
}
.featured-post-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  color: var(--text);
}
.featured-post-body p.excerpt {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1.5rem;
}
.featured-post-body .post-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: auto;
}

/* 3-col post grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 3rem;
}
@media (max-width: 860px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .posts-grid { grid-template-columns: 1fr; } }

.post-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  transition: transform .2s ease, box-shadow .2s ease;
  border-bottom: 1px solid var(--border);
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(20,20,19,0.08);
  color: var(--text);
}
.post-card .post-thumb { min-height: 170px; }
.post-card .post-thumb-cat { font-size: .6rem; }
.post-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.post-card-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 .75rem;
  color: var(--text);
}
.post-card-body .post-meta {
  font-family: var(--font-heading);
  font-size: .75rem;
  color: var(--text-muted);
  margin: 0;
}

.load-more-row {
  display: flex;
  justify-content: center;
  margin: 2rem 0 4rem;
}
.load-more-row .btn-load {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .92rem;
  cursor: pointer;
  text-decoration: none;
  transition: all .15s ease;
}
.load-more-row .btn-load:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Newsletter band — dark with form + clover */
.newsletter-band {
  background: var(--ink);
  color: var(--ink-text);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.newsletter-band .nl-clover {
  position: absolute;
  width: clamp(220px, 30vw, 380px);
  right: clamp(-100px, -8vw, -40px);
  top: 50%;
  transform: translateY(-50%);
  opacity: .12;
  pointer-events: none;
}
.newsletter-band .nl-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 720px) { .newsletter-band .nl-grid { grid-template-columns: 1fr; } }
.newsletter-band .section-eyebrow { color: rgba(255,255,255,.5); }
.newsletter-band .section-eyebrow::before { background: var(--accent-gold); }
.newsletter-band h2 {
  color: var(--ink-text);
  margin: .5rem 0 1rem;
}
.newsletter-band p { color: var(--ink-muted); font-size: .98rem; max-width: 50ch; margin: 0; }

.newsletter-form { display: flex; flex-direction: column; gap: .75rem; }
.newsletter-form .nl-row { display: flex; gap: .65rem; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.07);
}
.newsletter-form button {
  padding: .85rem 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;
  transition: background .15s ease;
}
.newsletter-form button:hover { background: var(--accent-hover); }
.newsletter-form .nl-footnote {
  font-family: var(--font-heading);
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}

/* ========================================================================
   Single post template improvements (applied to existing article markup)
   ======================================================================== */

/* Article hero thumbnail (colored block at top of single post) */
.article-thumb {
  max-width: 920px;
  margin: 0 auto 3rem;
  height: clamp(220px, 30vw, 380px);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-start;
}
.article-thumb.color-green { background: var(--accent-green); }
.article-thumb.color-terracotta { background: var(--accent); }
.article-thumb.color-gold { background: #C4A57B; }
.article-thumb.color-blue { background: #6A9BCC; }
.article-thumb.color-sage { background: #5A7A4D; }
.article-thumb.color-coral { background: #E89C7C; }
.article-thumb svg {
  position: absolute;
  width: 50%;
  bottom: -12%;
  right: -5%;
  opacity: .25;
  pointer-events: none;
}
.article-thumb .article-cat-floating {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.2);
  padding: .4rem .85rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin: 1.5rem;
}

/* Stronger article body */
.article p { font-size: 1.05rem; }
.article h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.article h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.01em;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.article h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
}
.article blockquote {
  border-left: 3px solid var(--accent);
  padding: .85rem 1.5rem;
  margin: 1.75rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.45;
  background: rgba(217, 119, 87, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Code blocks */
.article pre {
  background: var(--ink);
  color: var(--ink-text);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: .88rem;
  line-height: 1.5;
}
.article pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-family: inherit;
}
.article code {
  background: var(--surface-alt);
  padding: .15rem .4rem;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: .9em;
  color: var(--accent);
}

/* Improved article CTA card (replaces old centered card style) */
.article .article-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin: 3rem 0;
  text-align: left;
}
.article .article-cta .cta-eyebrow {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin: 0 0 .75rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.article .article-cta .cta-eyebrow::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-green);
}
.article .article-cta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin: 0 0 .65rem;
}
.article .article-cta p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--text-muted);
}
.article .article-cta .btn {
  background: var(--ink);
  color: var(--ink-text);
}
.article .article-cta .btn:hover {
  background: #000;
  color: var(--ink-text);
}
