/* ============================================
   VELONOVA.IO v2 — Design System
   #fda1a2 | #474787 | #222222
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #222222;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Tokens --- */
:root {
  --pink:        #fda1a2;
  --pink-hover:  #fc8a8b;
  --pink-light:  #ffe0e0;
  --pink-bg:     #fff7f7;
  --purple:      #474787;
  --purple-mid:  #5f5fb0;
  --purple-bg:   #f0f0fc;
  --dark:        #222222;
  --darker:      #111111;
  --mid:         #555555;
  --muted:       #888888;
  --border:      #e8e3e3;
  --bg-off:      #faf9f9;
  --white:       #ffffff;
  --shadow-sm:   0 1px 4px rgba(34,34,34,.05);
  --shadow-md:   0 4px 24px rgba(34,34,34,.08);
  --shadow-lg:   0 16px 56px rgba(34,34,34,.13);
  --radius:      14px;
  --radius-lg:   20px;
  --ease:        cubic-bezier(.22,1,.36,1);
  --ease-in:     cubic-bezier(.55,0,1,.45);
}

/* --- Typography --- */
h1 { font-size: clamp(2.4rem,5.5vw,5rem); font-weight: 900; line-height: 1.08; letter-spacing: -.035em; }
h2 { font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 800; line-height: 1.2;  letter-spacing: -.025em; }
h3 { font-size: clamp(1rem,1.6vw,1.25rem); font-weight: 700; line-height: 1.35; }
h4 { font-size: .9rem; font-weight: 700; }
p  { color: var(--mid); line-height: 1.75; }

/* --- Layout --- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
section { padding: 80px 0; }

/* ---- Section label ---- */
.label {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--pink); margin-bottom: 10px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-weight: 700; font-size: .875rem; letter-spacing: .01em;
  transition: all .2s var(--ease); cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
}
.btn--primary { background: var(--pink); color: var(--dark); }
.btn--primary:hover { background: var(--pink-hover); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(253,161,162,.4); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: #333; transform: translateY(-1px); }
.btn--outline-light { border-color: rgba(255,255,255,.3); color: #fff; background: transparent; }
.btn--outline-light:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.07); }
.btn--purple { background: var(--purple); color: #fff; }
.btn--purple:hover { background: var(--purple-mid); transform: translateY(-1px); }

@keyframes pulse-glow {
  0%   { box-shadow: 0 0 0 0 rgba(253,161,162,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(253,161,162,0); }
  100% { box-shadow: 0 0 0 0 rgba(253,161,162,0); }
}
.btn--pulse { animation: pulse-glow 2.4s ease-in-out infinite; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  background: transparent;
  transition: background .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  height: 100%; max-width: 1120px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo {
  display: inline-flex; align-items: flex-start; gap: 2px;
  font-weight: 900; font-size: 1.15rem; letter-spacing: -.04em;
  color: var(--dark); line-height: 1; transition: opacity .2s;
}
.logo:hover { opacity: .8; }
.logo--white { color: #fff; }
.nav.scrolled .logo { color: var(--dark); }
.logo__star { width: 13px; height: 13px; flex-shrink: 0; margin-top: 0px; }

/* Nav links */
.nav__links {
  display: flex; align-items: center; gap: 32px;
}
.nav__links a {
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.75); transition: color .2s;
}
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav.scrolled .nav__links a { color: var(--mid); }
.nav.scrolled .nav__links a:hover, .nav.scrolled .nav__links a.active { color: var(--dark); }

/* Nav CTA */
.nav__cta {
  font-size: .8rem; font-weight: 700; padding: 8px 18px; border-radius: 6px;
  background: var(--pink); color: var(--dark); transition: all .2s;
}
.nav__cta:hover { background: var(--pink-hover); transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; background: var(--dark);
  display: flex; align-items: center;
  padding-top: 64px; position: relative; overflow: hidden;
}

/* Animated gradient blob */
@keyframes blob-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(4%,3%) scale(1.06); }
  66%      { transform: translate(-3%,5%) scale(1.03); }
}
.hero__blob {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 75% at 80% 40%, rgba(71,71,135,.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 75%, rgba(253,161,162,.07) 0%, transparent 55%);
  animation: blob-drift 14s ease-in-out infinite;
}
.hero__dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 680px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em;
  color: var(--pink); margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: ''; width: 22px; height: 2px;
  background: var(--pink); border-radius: 2px;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--pink); }
.hero__sub {
  font-size: 1.05rem; color: rgba(255,255,255,.6);
  max-width: 480px; margin-bottom: 36px; line-height: 1.75;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* Scroll cue */
@keyframes cue-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
.hero__scroll-cue {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.25); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
}
.hero__scroll-cue svg { animation: cue-bounce 2.2s ease-in-out infinite; }

/* ============================================
   WHO I HELP — Marquee
   ============================================ */
.who-help {
  padding: 0; overflow: hidden;
  background: var(--bg-off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.who-help__header {
  padding: 64px 0 40px;
  text-align: center;
}
.who-help__header h2 { margin-bottom: 10px; }
.who-help__header p { max-width: 400px; margin: 0 auto; font-size: .95rem; }

/* Marquee rows */
.marquee-wrap { padding-bottom: 56px; display: flex; flex-direction: column; gap: 12px; }
.marquee-row {
  display: flex; overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.marquee-inner {
  display: flex; gap: 10px;
  animation: scroll-left 30s linear infinite;
  align-items: center; white-space: nowrap;
}
.marquee-row--rev .marquee-inner { animation: scroll-right 34s linear infinite; }
@keyframes scroll-left  { from { transform: translateX(0);    } to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0);    } }
.marquee-row:hover .marquee-inner { animation-play-state: paused; }

/* Marquee pills */
.mpill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 10px 20px;
  font-size: .875rem; font-weight: 600; color: var(--dark);
  white-space: nowrap; cursor: default; user-select: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.mpill:hover {
  border-color: var(--pink);
  box-shadow: 0 2px 16px rgba(253,161,162,.2);
  transform: scale(1.03);
}
.mpill__icon { font-size: 1rem; }
.mpill--purple {
  background: var(--purple-bg); border-color: rgba(71,71,135,.15); color: var(--purple);
}
.mpill--purple:hover { border-color: var(--purple); }
.msep { color: var(--pink); opacity: .5; font-size: .9rem; }

/* ============================================
   WHAT I DO
   ============================================ */
.what-i-do { background: var(--white); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px; gap: 16px; flex-wrap: wrap;
}
.section-head__link {
  font-size: .875rem; font-weight: 600; color: var(--purple);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s; margin-bottom: 3px;
}
.section-head__link:hover { gap: 10px; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.service-card {
  background: var(--bg-off); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px;
  transition: all .25s var(--ease); cursor: default;
}
.service-card:hover {
  background: var(--white); box-shadow: var(--shadow-md);
  transform: translateY(-3px); border-color: transparent;
}
.service-card__accent { width: 36px; height: 3px; border-radius: 2px; margin-bottom: 20px; }
.service-card:nth-child(1) .service-card__accent { background: var(--pink); }
.service-card:nth-child(2) .service-card__accent { background: var(--purple-mid); }
.service-card:nth-child(3) .service-card__accent { background: var(--purple); }
.service-card:nth-child(4) .service-card__accent { background: #9a7aaa; }
.service-card h3 { font-size: .95rem; margin-bottom: 8px; }
.service-card p { font-size: .835rem; line-height: 1.65; }

/* ============================================
   HOW I WORK
   ============================================ */
.how-i-work { background: var(--bg-off); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 36px; }
.step-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 26px; border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-card__bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--pink); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.step-card:hover .step-card__bar { transform: scaleX(1); }
.step-card__num {
  font-size: 2.8rem; font-weight: 900; color: var(--pink);
  opacity: .18; line-height: 1; margin-bottom: 18px; letter-spacing: -.04em;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: .875rem; }

/* ============================================
   WINS — dark section
   ============================================ */
.wins { background: var(--darker); color: #fff; }
.wins h2 { color: #fff; }
.wins .label { color: var(--pink); }
.wins-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 36px; }
.win-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 30px 26px;
  transition: background .2s, border-color .2s;
}
.win-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(253,161,162,.3);
}
.win-card__stat {
  font-size: 2rem; font-weight: 900; color: var(--pink);
  letter-spacing: -.03em; margin-bottom: 6px; line-height: 1;
}
.win-card h3 { color: #fff; margin-bottom: 8px; font-size: 1rem; }
.win-card p { color: rgba(255,255,255,.5); font-size: .875rem; }

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: center; }
.about__photo {
  width: 100%; aspect-ratio: 3/4; background: #e8e2e2;
  border-radius: 18px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.about__photo-placeholder { color: #bbb; font-size: .875rem; }
.about__socials { display: flex; gap: 10px; margin-top: 18px; }
.about__socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); transition: all .2s;
}
.about__socials a:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.about__content p { font-size: 1rem; margin-bottom: 14px; }
.about__tagline {
  font-style: italic; font-weight: 700;
  color: var(--dark) !important; font-size: 1.05rem !important;
}
.about__tools { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.tool {
  width: 32px; height: 32px; border-radius: 7px;
  background: var(--bg-off); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform .2s;
}
.tool:hover { transform: scale(1.15); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg-off); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 36px; }
.t-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  transition: box-shadow .2s;
}
.t-card:hover { box-shadow: var(--shadow-md); }
.t-card__q {
  font-size: 1.6rem; font-weight: 900; color: var(--pink);
  line-height: 1; margin-bottom: 14px; font-family: Georgia, serif;
}
.t-card p { font-size: .85rem; line-height: 1.75; margin-bottom: 16px; }
.t-card__author { font-weight: 700; font-size: .85rem; color: var(--dark); margin-bottom: 10px; }
.t-card__co {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .72rem; color: var(--muted); font-weight: 500;
}
.t-card__badge {
  width: 22px; height: 22px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center; font-size: .8rem;
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-preview { background: var(--white); }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
.post-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: all .25s var(--ease); color: inherit;
}
.post-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent;
}
.post-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: rgba(255,255,255,.3);
}
.post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.post-card__tag {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--pink); margin-bottom: 7px;
}
.post-card h3 { font-size: .9rem; margin-bottom: 7px; }
.post-card p { font-size: .8rem; line-height: 1.6; flex: 1; }
.post-card__meta { margin-top: 14px; font-size: .7rem; color: var(--muted); }

/* Loading/fallback states */
.posts-loading {
  grid-column: 1/-1; text-align: center;
  padding: 48px; color: var(--muted); font-size: .9rem;
}
.posts-loading::after {
  content: ''; display: inline-block;
  width: 16px; height: 16px; margin-left: 8px;
  border: 2px solid var(--border);
  border-top-color: var(--pink);
  border-radius: 50%; animation: spin .8s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }
.posts-fallback {
  grid-column: 1/-1; text-align: center;
  padding: 48px; color: var(--muted);
}
.posts-fallback a { color: var(--purple); font-weight: 600; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--purple) 0%, #3a3a6e 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.cta-section__inner { position: relative; z-index: 2; }
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.65); max-width: 420px; margin: 0 auto 32px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--darker); padding: 52px 0 32px; }
.footer__inner { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.footer__top {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 36px; gap: 32px; flex-wrap: wrap;
}
.footer__brand {}
.footer__logo {
  display: inline-flex; align-items: flex-start; gap: 3px;
  font-weight: 900; font-size: 1.3rem;
  letter-spacing: -.04em; color: #fff; margin-bottom: 6px;
}
.footer__tagline { font-size: .75rem; color: rgba(255,255,255,.3); letter-spacing: .06em; margin-bottom: 22px; }
.footer__socials { display: flex; gap: 9px; }
.footer__socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: all .2s;
}
.footer__socials a:hover { border-color: var(--pink); color: var(--pink); }
.footer__nav { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer__nav a {
  font-size: .875rem; color: rgba(255,255,255,.45);
  font-weight: 500; transition: color .2s;
}
.footer__nav a:hover { color: #fff; }
.footer__bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
  font-size: .72rem; color: rgba(255,255,255,.2);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-animate="left"]  { transform: translateX(-28px); }
[data-animate="right"] { transform: translateX(28px); }
[data-animate="scale"] { transform: scale(.94); opacity: 0; }
[data-animate].in-view { opacity: 1; transform: none; }

/* Stagger containers */
.stagger-children > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.stagger-children.in-view > * { opacity: 1; transform: none; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.page-hero {
  min-height: 52vh; background: var(--dark);
  display: flex; align-items: flex-end;
  padding-top: 64px; padding-bottom: 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 80% at 78% 50%, rgba(71,71,135,.35) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.6); max-width: 500px; font-size: 1.05rem; margin-bottom: 28px; }

.intro-bar {
  background: var(--purple-bg); border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.intro-bar p {
  text-align: center; max-width: 680px; margin: 0 auto;
  font-size: .95rem; color: var(--mid);
}
.intro-bar strong { color: var(--dark); }

.path-section { background: var(--white); padding: 64px 0; }
.path-row {
  display: flex; align-items: stretch; gap: 0;
  margin-top: 28px; background: var(--bg-off);
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.path-step {
  flex: 1; padding: 28px 22px; text-align: center;
  border-right: 1px solid var(--border); position: relative;
}
.path-step:last-child { border-right: none; }
.path-step__label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--pink); margin-bottom: 7px; }
.path-step h3 { font-size: 1.05rem; }
.path-step p { font-size: .8rem; color: var(--muted); margin-top: 5px; }
.path-sep {
  position: absolute; right: -11px; top: 50%; transform: translateY(-50%); z-index: 2;
  background: var(--white); width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--pink); border: 1px solid var(--border);
}

.services-detail { background: var(--bg-off); padding: 80px 0; }
.svc-item {
  background: var(--white); border-radius: 18px;
  padding: 44px 40px; margin-bottom: 20px;
  border: 1px solid var(--border);
  transition: box-shadow .2s;
}
.svc-item:hover { box-shadow: var(--shadow-sm); }
.svc-item__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; gap: 16px; }
.svc-item__badge {
  font-size: .68rem; font-weight: 700; color: var(--muted);
  background: var(--bg-off); border: 1px solid var(--border);
  border-radius: 5px; padding: 5px 10px; white-space: nowrap; flex-shrink: 0;
}
.svc-item__num {
  font-size: 2.2rem; font-weight: 900; color: var(--pink);
  opacity: .18; letter-spacing: -.04em; line-height: 1;
}
.svc-item h2 { font-size: 1.55rem; margin-bottom: 10px; }
.svc-item__when {
  background: var(--bg-off); border-left: 3px solid var(--pink);
  padding: 12px 16px; border-radius: 0 7px 7px 0;
  margin: 18px 0; font-size: .875rem; color: var(--mid);
}
.svc-item__when strong { color: var(--dark); }
.svc-item__desc { color: var(--mid); font-size: .925rem; margin-bottom: 24px; }
.svc-item__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.svc-item__cols h4 {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--pink); margin-bottom: 12px;
}
.svc-item__cols ul { display: flex; flex-direction: column; gap: 8px; }
.svc-item__cols li {
  font-size: .855rem; color: var(--mid);
  padding-left: 16px; position: relative; line-height: 1.55;
}
.svc-item__cols li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--pink); font-size: .75rem;
}
.svc-item__foot {
  display: flex; gap: 24px; align-items: center;
  padding-top: 22px; border-top: 1px solid var(--border); flex-wrap: wrap;
}
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-item__lbl { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.meta-item__val { font-size: .925rem; font-weight: 700; color: var(--dark); }
.meta-item--price .meta-item__val { font-size: 1.35rem; color: var(--pink); }
.svc-item__note { font-size: .72rem; color: var(--muted); font-style: italic; margin-left: auto; }

.faq-section { background: var(--white); padding: 72px 0; }
.faq-list { margin-top: 36px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item__q { font-size: .975rem; font-weight: 700; color: var(--dark); margin-bottom: 9px; }
.faq-item__a { font-size: .875rem; color: var(--mid); line-height: 1.75; max-width: 660px; }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-hero {
  background: var(--purple); min-height: 48vh;
  display: flex; align-items: center;
  padding-top: 64px; position: relative; overflow: hidden; text-align: center;
}
.blog-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.blog-hero__inner {
  position: relative; z-index: 2; padding: 64px 40px;
  width: 100%; max-width: 1120px; margin: 0 auto;
}
.blog-hero__logo {
  display: inline-flex; align-items: flex-start; gap: 3px;
  font-size: 2rem; font-weight: 900; color: #fff;
  letter-spacing: -.04em; margin-bottom: 5px;
}
.blog-hero__tagline { font-size: .78rem; color: rgba(255,255,255,.4); letter-spacing: .07em; margin-bottom: 22px; }
.blog-hero p { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; line-height: 1.75; }

.blog-posts-section { background: var(--bg-off); padding: 72px 0; }
.blog-posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }

.subscribe-section { background: var(--purple); padding: 72px 0; text-align: center; }
.subscribe-section h2 { color: #fff; margin-bottom: 12px; }
.subscribe-section p { color: rgba(255,255,255,.65); max-width: 420px; margin: 0 auto 28px; font-size: .95rem; }
.subscribe-form { display: flex; gap: 10px; justify-content: center; max-width: 400px; margin: 0 auto; }
.subscribe-form input {
  flex: 1; padding: 12px 16px; border-radius: 7px; border: none;
  font-size: .875rem; font-family: inherit; outline: none; color: var(--dark);
}
.subscribe-form button {
  padding: 12px 22px; background: var(--pink); color: var(--dark);
  border: none; border-radius: 7px; font-weight: 700; font-size: .845rem;
  cursor: pointer; font-family: inherit; transition: background .2s; white-space: nowrap;
}
.subscribe-form button:hover { background: var(--pink-hover); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: repeat(2,1fr); }
  .steps-grid      { grid-template-columns: 1fr; }
  .about__grid     { grid-template-columns: 1fr; gap: 40px; }
  .about__photo    { max-width: 280px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
  .svc-item__cols  { grid-template-columns: 1fr; }
  .blog-posts-grid, .posts-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .container       { padding: 0 20px; }
  section          { padding: 56px 0; }
  .nav__inner      { padding: 0 20px; }
  .nav__links      { display: none; }
  h1               { font-size: 2.1rem; }
  .services-grid, .wins-grid { grid-template-columns: 1fr; }
  .path-row        { flex-direction: column; }
  .path-step       { border-right: none; border-bottom: 1px solid var(--border); }
  .path-step:last-child { border-bottom: none; }
  .path-sep        { display: none; }
  .svc-item        { padding: 28px 20px; }
  .svc-item__foot  { flex-direction: column; align-items: flex-start; }
  .svc-item__note  { margin-left: 0; }
  .blog-posts-grid, .posts-grid { grid-template-columns: 1fr; }
  .footer__top     { flex-direction: column; }
  .footer__nav     { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .subscribe-form  { flex-direction: column; }
  .hero__scroll-cue { display: none; }
  .section-head    { flex-direction: column; align-items: flex-start; }
}
