/* ===================== TOKENS ===================== */
:root {
  --paper: #f4eee2;        /* warm cream */
  --paper-2: #efe7d7;      /* alt section */
  --card: #fbf7ee;
  --ink: #1b1a17;          /* near-black, warm */
  --body: #4f4a40;         /* body text */
  --muted: #8a8275;        /* secondary */
  --accent: #c0492b;       /* ember / terracotta */
  --accent-deep: #97361e;
  --line: rgba(27, 26, 23, 0.14);
  --line-soft: rgba(27, 26, 23, 0.08);
  --wrap: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===================== BASE ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--paper);
  color: var(--body);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; color: var(--ink); line-height: 1.08; font-weight: 600; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; color: var(--accent); }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.wrap--narrow { max-width: 760px; }

/* ===================== TYPE HELPERS ===================== */
.kicker { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.kicker--light { color: #e7a07f; }
.h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
.h2--light { color: var(--paper); }
.lead { font-size: 1.12rem; color: var(--body); }
.section__head { max-width: 640px; margin-bottom: 52px; }

/* ===================== BUTTONS ===================== */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 1rem; font-family: "Inter", sans-serif; padding: 15px 28px; border-radius: 999px; cursor: pointer; border: 1px solid transparent; transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -12px rgba(192, 73, 43, 0.6); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--text { color: var(--ink); padding: 15px 6px; }
.btn--text span { transition: transform .2s var(--ease); }
.btn--text:hover span { transform: translateX(4px); }
.btn--full { width: 100%; justify-content: center; }

/* ===================== NAV ===================== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 16px 0; transition: padding .3s var(--ease), background .3s, box-shadow .3s; }
.nav.scrolled { padding: 9px 0; background: rgba(244, 238, 226, 0.86); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line-soft); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.2rem; color: var(--ink); letter-spacing: -0.01em; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--ink); font-size: 0.96rem; font-weight: 500; }
.nav__links a:not(.nav__cta):hover { color: var(--accent); }
.nav__cta { background: var(--ink); color: var(--paper) !important; padding: 10px 20px; border-radius: 999px; transition: background .2s; }
.nav__cta:hover { background: var(--accent); }
.nav__toggle { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s var(--ease); }

/* ===================== HERO ===================== */
.hero { padding: 132px 0 76px; }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero__title { font-size: clamp(2.5rem, 5.4vw, 4rem); font-weight: 600; }
.hero__lead { font-size: 1.18rem; margin-top: 26px; max-width: 38ch; }
.hero__cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

/* ===================== CREDIBILITY BAR ===================== */
.creds { background: var(--ink); color: var(--paper); padding: 30px 0; }
.creds__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.creds__item { display: flex; flex-direction: column; gap: 4px; position: relative; padding-left: 18px; }
.creds__item::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; background: var(--accent); border-radius: 2px; }
.creds__item strong { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.02rem; color: #fff; line-height: 1.2; }
.creds__item span { font-size: 0.86rem; color: #a89f90; line-height: 1.4; }

.hero__portrait { position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero__portrait::before { content: ""; position: absolute; z-index: 0; width: 88%; max-width: 360px; aspect-ratio: 1/1; right: -14px; top: 22px; border-radius: 18px; background: var(--accent); opacity: 0.16; }
.portrait { position: relative; z-index: 1; width: 100%; max-width: 400px; border-radius: 18px; overflow: hidden; aspect-ratio: 1/1; box-shadow: 0 30px 60px -30px rgba(27,26,23,0.5); }
.portrait::before { content: ""; position: absolute; inset: 0; z-index: 2; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(27,26,23,0.08); pointer-events: none; }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait__tag { position: relative; z-index: 1; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ===================== BAND (problem) ===================== */
.band { padding: 64px 0; background: var(--paper-2); border-block: 1px solid var(--line-soft); }

/* STATS strip */
.stats { padding: 56px 0; background: var(--paper); border-bottom: 1px solid var(--line-soft); }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { display: flex; flex-direction: column; gap: 8px; padding-left: 18px; position: relative; }
.stat::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: var(--accent); border-radius: 2px; }
.stat strong { font-family: "Fraunces", serif; font-weight: 600; font-size: 2.1rem; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.stat span { font-size: 0.92rem; color: var(--body); line-height: 1.45; }
.stat em { font-style: italic; color: var(--muted); }
@media (max-width: 760px) { .stats__inner { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 440px) { .stats__inner { grid-template-columns: 1fr; } }

/* Highlighted result line in the story */
.story__result { margin-top: 18px; padding: 16px 20px; background: rgba(255,255,255,0.06); border-left: 2px solid var(--accent); border-radius: 0 10px 10px 0; }
.band__inner { max-width: 880px; }
.band .h2 { margin-bottom: 18px; }

/* ===================== SECTION ===================== */
.section { padding: 96px 0; }
.section--alt { background: var(--paper-2); }

/* services */
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; }
.svc__item { background: var(--paper); padding: 38px 34px; transition: background .25s; }
.svc__item:hover { background: var(--card); }
.svc__num { font-family: "Fraunces", serif; font-size: 0.9rem; color: var(--accent); font-weight: 600; }
.svc__item h3 { font-size: 1.4rem; margin: 12px 0 10px; }
.svc__item p { color: var(--body); font-size: 1rem; }

/* ===================== STORY (dark) ===================== */
.story { background: var(--ink); color: #cfc8ba; padding: 100px 0; }
.story__grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 56px; align-items: center; }
.story__photo img { max-height: 560px; object-fit: cover; object-position: center 30%; }
.story__p { font-size: 1.12rem; margin-top: 20px; color: #cfc8ba; }
.story__p strong { color: #fff; font-weight: 600; }
.story em { color: #f0a888; }
.quote { border-left: 2px solid var(--accent); padding-left: 26px; }
.quote__mark { font-family: "Fraunces", serif; font-size: 3.5rem; line-height: 0.5; color: var(--accent); height: 1.6rem; }
.quote__text { font-family: "Fraunces", serif; font-size: 1.45rem; line-height: 1.3; color: var(--paper); font-style: italic; }
.quote__by { margin-top: 18px; font-size: 0.9rem; color: #9a9183; }
.story__aside { display: flex; flex-direction: column; gap: 34px; }
.story__photo { margin: 0; }
.story__photo img { width: 100%; height: auto; display: block; border-radius: 14px; box-shadow: 0 24px 48px -24px rgba(0,0,0,0.7); }
.story__photo figcaption { margin-top: 12px; font-size: 0.85rem; line-height: 1.4; color: #9a9183; letter-spacing: 0.01em; }

/* ===================== STEPS ===================== */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { position: relative; }
.step__n { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent); font-family: "Fraunces", serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 18px; }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--body); }
.promise { margin-top: 46px; padding: 24px 28px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; font-size: 1.08rem; color: var(--ink); }
.promise strong { color: var(--accent); }

/* ===================== FAQ ===================== */
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 4px; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: "Fraunces", serif; font-size: 1.18rem; color: var(--ink); font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; font-family: "Inter", sans-serif; transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 4px 24px; color: var(--body); max-width: 64ch; }

/* ===================== CONTACT ===================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__list { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.contact__list li { display: flex; gap: 18px; align-items: baseline; }
.contact__list span { flex: 0 0 76px; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.contact__list a { color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line); transition: color .2s, border-color .2s; }
.contact__list a:hover { color: var(--accent); border-color: var(--accent); }

.form { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 7px; font-size: 0.88rem; color: var(--muted); font-weight: 500; }
.form input, .form textarea { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; font-family: inherit; font-size: 16px; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(192,73,43,0.12); }
.form textarea { resize: vertical; }
.form .opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form__note { font-size: 0.86rem; color: var(--muted); text-align: center; }
.form__note a { color: var(--accent); }
.btn[disabled] { opacity: 0.6; cursor: progress; transform: none; }
.form.sent { align-items: center; text-align: center; }
.form__success { display: none; }
.form.sent .form__success { display: block; padding: 14px 0; }
.form.sent > label, .form.sent > .btn, .form.sent > .form__note { display: none; }
.form__success h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form__success p { color: var(--body); }
.form__note.error { color: var(--accent-deep); }

/* ===================== FOOTER ===================== */
.footer { padding: 52px 0; background: var(--ink); color: #b7afa1; }
.footer__inner { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
.footer .brand { color: var(--paper); }
.footer__copy { font-size: 0.86rem; color: #847c6f; }

/* ===================== LIFECYCLE ===================== */
.lifecycle { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; }
.lifecycle li { background: var(--paper); padding: 30px 26px; }
.lifecycle li:hover { background: var(--card); }
.lifecycle span { font-family: "Fraunces", serif; font-size: 0.9rem; color: var(--accent); font-weight: 600; }
.lifecycle h3 { font-size: 1.25rem; margin: 8px 0 8px; }
.lifecycle p { color: var(--body); font-size: 0.98rem; }

/* ===================== WHAT'S POSSIBLE ===================== */
.possible { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.poss { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 26px; }
.poss h3 { font-size: 1.22rem; margin-bottom: 10px; }
.poss > p { color: var(--body); font-size: 0.98rem; }
.poss__fit { font-size: 0.9rem !important; margin-top: 10px; color: var(--ink) !important; }
.poss__fit .yes, .poss__fit .no { display: inline-block; font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 2px 8px; border-radius: 999px; margin-right: 6px; }
.poss__fit .yes { background: rgba(46,110,80,0.12); color: #2e6e50; }
.poss__fit .no { background: rgba(192,73,43,0.12); color: var(--accent-deep); }
.possible__cta { text-align: center; margin-top: 36px; font-size: 1.08rem; color: var(--ink); }
.possible__cta a { color: var(--accent); border-bottom: 1px solid var(--accent); }

/* Plan tiers */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 22px; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 28px 26px; display: flex; flex-direction: column; position: relative; }
.plan--featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.plan--featured::before { content: "Most chosen"; position: absolute; top: -10px; left: 24px; background: var(--accent); color: #fff; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; }
.plan__name { font-family: "Fraunces", serif; font-size: 1.32rem; font-weight: 600; color: var(--ink); }
.plan__for { color: var(--muted); font-size: 0.92rem; margin-top: 2px; }
.plan__price { margin: 16px 0 4px; }
.plan__price strong { font-family: "Fraunces", serif; font-size: 2.4rem; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.plan__price span { color: var(--muted); font-size: 0.9rem; margin-left: 4px; }
.plan__list { list-style: none; margin: 16px 0 16px; padding: 0; display: grid; gap: 9px; }
.plan__list li { position: relative; padding-left: 22px; font-size: 0.96rem; color: var(--ink); line-height: 1.4; }
.plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.plan__founding { font-size: 0.85rem; color: var(--accent-deep); background: rgba(192,73,43,0.08); border-radius: 8px; padding: 9px 11px; margin-bottom: 18px; }
.plan .btn { margin-top: auto; }
.plans__note { text-align: center; color: var(--muted); font-size: 0.98rem; max-width: 700px; margin: 0 auto; line-height: 1.55; }
.plans__note strong { color: var(--ink); }
html[dir="rtl"] .plan__list li { padding-left: 0; padding-right: 22px; }
html[dir="rtl"] .plan__list li::before { left: auto; right: 0; }
html[dir="rtl"] .plan--featured::before { left: auto; right: 24px; }
html[dir="rtl"] .plan__price span { margin-left: 0; margin-right: 4px; }
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }

/* ===================== FINDER ===================== */
.finder__hintword { color: var(--accent); border-bottom: 2px solid var(--accent); font-weight: 500; }
.finder { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 36px; }
.finder__sentence { font-family: "Fraunces", serif; font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 2.1; color: var(--ink); }
.finder__sel {
  font-family: "Fraunces", serif; font-size: inherit; color: var(--accent); font-weight: 600;
  background: rgba(192,73,43,0.07); border: none; border-bottom: 2px solid var(--accent);
  border-radius: 6px 6px 0 0; padding: 1px 26px 2px 8px; margin: 0 2px; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c0492b' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 7px center;
  transition: background-color .2s;
}
.finder__sel:hover { background-color: rgba(192,73,43,0.14); }
.finder__sel:focus { outline: none; box-shadow: 0 3px 0 -1px var(--accent-deep); }

.finder__browse { margin-top: 22px; font-size: 1rem; color: var(--muted); }
.finder__browse .finder__sel { font-size: 1rem; }
.finder__results { margin-top: 30px; display: grid; gap: 14px; }
.finder__lead { font-family: "Fraunces", serif; font-size: 1.2rem; color: var(--ink); margin-bottom: 4px; }
.tool { display: grid; grid-template-columns: 1fr auto; gap: 6px 18px; padding: 20px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; align-items: start; }
.tool__name { font-family: "Fraunces", serif; font-size: 1.12rem; font-weight: 600; color: var(--ink); }
.tool__price { font-size: 0.86rem; color: var(--muted); white-space: nowrap; text-align: right; }
.tool__what { grid-column: 1 / -1; color: var(--body); font-size: 0.96rem; }
.tool__why { grid-column: 1 / -1; font-size: 0.9rem; color: var(--ink); }
.tool__why .yes, .tool__why .no { font-weight: 600; color: #2e6e50; }
.tool__why .no { color: var(--accent-deep); }
.tool__link { grid-column: 1 / -1; justify-self: start; font-size: 0.9rem; font-weight: 600; color: var(--accent); border-bottom: 1px solid var(--accent); }
.tool__link:hover { color: var(--accent-deep); }
.finder__empty { color: var(--body); padding: 10px 0; }
.tool__price { font-weight: 600; }
.finder__sent { color: #2e6e50; font-weight: 600; margin: 4px 0 6px; }
.teaser { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 22px; }
.teaser__chip { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: 0.9rem; color: var(--ink); font-weight: 500; }
.lead-capture { background: var(--paper); border: 1px dashed var(--accent); border-radius: 14px; padding: 24px; }
.lead-capture__pitch { color: var(--body); margin-bottom: 14px; font-size: 1.02rem; }
.lead-capture__row { display: flex; gap: 10px; flex-wrap: wrap; }
.lead-capture__row input { flex: 1; min-width: 200px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; font-family: inherit; font-size: 16px; color: var(--ink); }
.lead-capture__row input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(192,73,43,0.12); }
.lead-capture__note { font-size: 0.84rem; color: var(--muted); margin-top: 10px; }
.lead-capture__note.error { color: var(--accent-deep); }
.diag { display: grid; gap: 18px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 28px; }
.diag__leadin { font-family: "Fraunces", serif; font-size: 1.18rem; color: var(--ink); }
.diag__label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 5px; }
.diag__row p { color: var(--body); font-size: 1.04rem; }
.diag__cost-note { font-size: 0.82rem !important; color: var(--muted) !important; font-style: italic; margin-top: 5px; }
.diag__figure { font-family: "Fraunces", Georgia, serif; font-size: 1.18rem; color: var(--ink); margin-bottom: 4px; }
.diag__figure strong { color: var(--accent-deep); font-weight: 600; white-space: nowrap; }
.diag__diy { background: var(--paper); border-left: 2px solid var(--accent); border-radius: 0 8px 8px 0; padding: 14px 16px; color: var(--ink); font-size: 1rem; }
.tool--mini { padding: 16px 20px; }
.tool--mini .tool__what { font-size: 0.94rem; }

.finder__close { margin-top: 26px; }
.finder__closebox { background: var(--ink); color: var(--paper); border-radius: 14px; padding: 28px 30px; }
.finder__closebox h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.finder__closebox p { color: #cfc8ba; margin-bottom: 18px; }
.finder__closebox .btn--primary { box-shadow: none; }

/* ===================== REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__portrait { align-items: flex-start; }
  .hero__portrait::before { right: auto; left: -10px; }
  .hero__lead { max-width: none; }
  .story__grid, .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; gap: 22px; }
  .creds__inner { grid-template-columns: 1fr 1fr; gap: 22px; }
  .lifecycle { grid-template-columns: 1fr; }
  .possible { grid-template-columns: 1fr; }
  .finder { padding: 26px 20px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.open .nav__links { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); box-shadow: 0 12px 30px -12px rgba(27,26,23,0.25); padding: 8px 0 16px; }
  .nav.open .nav__links a { padding: 14px 26px; }
  .nav.open .nav__cta { margin: 12px 26px 0; text-align: center; }
  .nav.open .nav__toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav.open .nav__toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section, .story { padding: 64px 0; }
  .svc { grid-template-columns: 1fr; }
  .svc__item { padding: 30px 26px; }
  .hero { padding: 110px 0 56px; }
  .creds { gap: 8px 20px; }
}

/* Persona toggle (hero) */
.who { margin-top: 30px; }
.who__label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.who__opts { display: flex; flex-wrap: wrap; gap: 8px; }
.who__opt { font-family: inherit; font-size: 0.92rem; font-weight: 500; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--card); color: var(--ink); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.who__opt:hover { border-color: var(--accent); }
.who__opt.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.who__msg { margin-top: 14px; font-size: 1.02rem; line-height: 1.5; color: var(--body); max-width: 48ch; }

/* Skimmable problem list */
.band__list { list-style: none; display: grid; gap: 11px; margin: 18px 0 22px; }
.band__list li { position: relative; padding-left: 24px; font-size: 1.1rem; line-height: 1.45; color: var(--body); }
.band__list li::before { content: ""; position: absolute; left: 2px; top: 0.62em; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); }
.band__list strong { color: var(--ink); font-weight: 600; }

/* Pilot offer callout */
.pilot { margin-top: 36px; background: var(--ink); color: #cfc8ba; border-radius: 18px; padding: 32px 34px; display: flex; flex-direction: column; gap: 12px; }
.pilot__tag { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #f0a888; }
.pilot h3 { color: #fff; font-size: 1.55rem; line-height: 1.15; }
.pilot p { color: #cfc8ba; font-size: 1.05rem; line-height: 1.5; max-width: 62ch; }
.pilot strong { color: #fff; font-weight: 600; }
.pilot em { color: #f0a888; font-style: italic; }
.pilot .btn { align-self: flex-start; margin-top: 6px; }
.pilot__head { display: flex; flex-direction: column; gap: 10px; }
.pilot__intro { margin: 0; }
.pilot__spots { margin: 4px 0; }
.pilot__bar { height: 8px; background: rgba(255,255,255,0.12); border-radius: 999px; overflow: hidden; }
.pilot__bar span { display: block; height: 100%; background: var(--accent); border-radius: 999px; }
.pilot__spots-label { font-size: 0.85rem !important; color: #f0a888 !important; margin-top: 9px; letter-spacing: 0.02em; }
.pilot__cols { display: grid; grid-template-columns: 1.35fr 1fr; gap: 18px; }
.pilot__col { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 12px; padding: 20px 22px; }
.pilot__col h4 { color: #fff; font-family: "Fraunces", serif; font-weight: 600; font-size: 1.06rem; margin-bottom: 13px; letter-spacing: -0.01em; }
.pilot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pilot__col li { position: relative; padding-left: 25px; color: #cfc8ba; font-size: 0.96rem; line-height: 1.45; }
.pilot__col--get li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: #6fcf97; font-weight: 700; }
.pilot__col--give li::before { content: "›"; position: absolute; left: 3px; top: -2px; color: #f0a888; font-weight: 700; font-size: 1.1rem; }
.pilot__note { border-left: 2px solid var(--accent); padding: 2px 0 2px 18px; margin: 4px 0; }
.pilot__note p { font-style: italic; color: #e7e0d4; font-size: 1.04rem; line-height: 1.55; max-width: 66ch; }
.pilot__note cite { display: block; margin-top: 9px; font-style: normal; color: #f0a888; font-size: 0.9rem; letter-spacing: 0.02em; }
html[dir="rtl"] .pilot__col li { padding-left: 0; padding-right: 25px; }
html[dir="rtl"] .pilot__col--get li::before, html[dir="rtl"] .pilot__col--give li::before { left: auto; right: 0; }
html[dir="rtl"] .pilot__note { border-left: 0; border-right: 2px solid var(--accent); padding-left: 0; padding-right: 18px; }
@media (max-width: 720px) { .pilot__cols { grid-template-columns: 1fr; } }

/* Tool directory (crawlable SEO/GEO listing) */
.tooldir__nav { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--line-soft); }
.tooldir__nav-label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-right: 4px; }
.tooldir__nav a { font-size: 0.86rem; color: var(--ink); background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; transition: background .2s, color .2s, border-color .2s; }
.tooldir__nav a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.tooldir__cat { margin-bottom: 46px; scroll-margin-top: 90px; }
.tooldir__cat-title { font-size: 1.5rem; margin-bottom: 20px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.tooldir__count { font-family: "Inter", sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--accent); background: rgba(192,73,43,0.1); border-radius: 999px; padding: 2px 9px; }
.tooldir__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tooldir__tool { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 9px; }
.tooldir__tool-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.tooldir__name { font-size: 1.06rem; font-family: "Fraunces", serif; font-weight: 600; line-height: 1.15; }
.tooldir__name a { color: var(--ink); border-bottom: 1px solid transparent; transition: color .15s, border-color .15s; }
.tooldir__name a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.tooldir__price { font-size: 0.78rem; font-weight: 600; color: var(--accent-deep); flex-shrink: 0; text-align: right; line-height: 1.3; }
.tooldir__what { font-size: 0.92rem; color: var(--body); line-height: 1.45; }
.tooldir__fit, .tooldir__watch { font-size: 0.86rem; line-height: 1.45; color: var(--ink); margin: 0; }
.tooldir__tag { display: inline-block; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 2px 7px; border-radius: 999px; margin-right: 5px; }
.tooldir__tag--fit { background: rgba(46,110,80,0.12); color: #2e6e50; }
.tooldir__tag--watch { background: rgba(192,73,43,0.12); color: var(--accent-deep); }
.tooldir__foot { margin-top: 22px; font-size: 0.86rem; color: var(--muted); font-style: italic; }
html[dir="rtl"] .tooldir__nav-label { margin-right: 0; margin-left: 4px; }
html[dir="rtl"] .tooldir__tag { margin-right: 0; margin-left: 5px; }
@media (max-width: 900px) { .tooldir__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tooldir__grid { grid-template-columns: 1fr; } }

/* Guides / SEO content articles */
.guide { padding: 120px 0 30px; }
.guide__head, .guide__body, .guide__next { max-width: 768px; margin-left: auto; margin-right: auto; }
.guide__crumb { font-size: 0.86rem; color: var(--muted); margin-bottom: 18px; }
.guide__crumb a { color: var(--accent); }
.guide h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); line-height: 1.08; margin-bottom: 16px; }
.guide__lead { font-size: 1.18rem; line-height: 1.55; color: var(--body); }
.guide__meta { font-size: 0.85rem; color: var(--muted); margin-top: 16px; }
.guide__body { margin-top: 10px; }
.guide__body h2 { font-size: 1.62rem; margin: 42px 0 14px; line-height: 1.16; }
.guide__body h3 { font-size: 1.2rem; margin: 28px 0 8px; }
.guide__body p { font-size: 1.06rem; line-height: 1.72; color: var(--ink); margin-bottom: 16px; }
.guide__body ul, .guide__body ol { margin: 0 0 18px; padding-left: 24px; display: grid; gap: 9px; }
.guide__body li { font-size: 1.05rem; line-height: 1.6; color: var(--ink); }
.guide__body a { color: var(--accent); border-bottom: 1px solid rgba(192,73,43,0.35); }
.guide__body a:hover { border-bottom-color: var(--accent); }
.guide__callout { background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 28px 0; }
.guide__callout p { margin: 0; font-size: 1.03rem; }
.guide__faq { margin-top: 44px; }
.guide__faq h2 { margin-bottom: 6px; }
.guide__faq details { border-top: 1px solid var(--line-soft); padding: 16px 0; }
.guide__faq details:last-child { border-bottom: 1px solid var(--line-soft); }
.guide__faq summary { font-family: "Fraunces", serif; font-size: 1.1rem; font-weight: 600; cursor: pointer; color: var(--ink); list-style: none; }
.guide__faq summary::-webkit-details-marker { display: none; }
.guide__faq summary::before { content: "+"; color: var(--accent); font-weight: 700; margin-right: 10px; }
.guide__faq details[open] summary::before { content: "–"; }
.guide__faq details > p { margin: 10px 0 0; color: var(--ink); line-height: 1.65; }
.guide__next { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line-soft); }
.guide__next-label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px; }
.guide__next a { display: block; color: var(--accent); font-family: "Fraunces", serif; font-size: 1.1rem; margin-bottom: 10px; border: 0; }
.tooldir__guides { margin: 6px 0 0; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.tooldir__guides h3 { font-size: 1.12rem; margin-bottom: 12px; }
.tooldir__guides a { display: inline-block; margin: 0 16px 9px 0; color: var(--accent); border-bottom: 1px solid rgba(192,73,43,0.35); font-size: 0.98rem; }
@media (max-width: 600px) { .guide { padding-top: 100px; } }

/* "Start here" flag on persona-matched strategy cards */
.poss { position: relative; }
.poss--first { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.poss--first::before { content: "Start here"; position: absolute; top: -10px; left: 22px; background: var(--accent); color: #fff; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; }
.who__msg strong { color: var(--ink); font-weight: 600; }

/* Mid-page CTA band */
.ctaband { padding: 46px 0; background: var(--paper-2); border-block: 1px solid var(--line-soft); }
.ctaband__inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.ctaband p { font-family: "Fraunces", Georgia, serif; font-size: 1.35rem; line-height: 1.2; color: var(--ink); max-width: 34ch; }
@media (max-width: 600px) { .ctaband__inner { flex-direction: column; align-items: flex-start; gap: 18px; } }

/* Collapsed finder hint */
.finder__hint { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 4px 0; }
.finder__hint p { color: var(--body); font-size: 1.02rem; }

/* Sticky mobile CTA bar */
.mobilecta { display: none; }
.possible__more { display: none; }
@media (max-width: 760px) {
  .mobilecta { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(244,238,226,0.94);
    backdrop-filter: blur(10px); border-top: 1px solid var(--line-soft);
    transform: translateY(120%); transition: transform .3s var(--ease); }
  .mobilecta.show { transform: translateY(0); }

  /* Strategies: show only the persona's "Start here" cards; expand for the rest */
  #possible .possible > .poss:not(.poss--first) { display: none; }
  #possible .possible.show-all > .poss { display: block; }
  .possible__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
    font-family: inherit; font-size: 0.96rem; font-weight: 600; color: var(--accent);
    background: none; border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; cursor: pointer; }
}

/* ===================== LANGUAGE SWITCHER + i18n ===================== */
.lang { display: flex; gap: 4px; align-items: center; margin-left: 16px; }
.lang__opt { font-family: "Inter", sans-serif; font-size: 0.82rem; font-weight: 600; line-height: 1; padding: 6px 10px; border-radius: 8px; border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.lang__opt:hover { border-color: var(--accent); }
.lang__opt.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.lang__opt[lang="hi"] { font-family: "Noto Sans Devanagari", sans-serif; }
.lang__opt[lang="ur"] { font-family: "Noto Nastaliq Urdu", serif; font-size: 0.95rem; }

/* Script-specific fonts when a language is active */
html.lang-hi body, html.lang-hi h1, html.lang-hi h2, html.lang-hi h3, html.lang-hi .brand, html.lang-hi .btn { font-family: "Noto Sans Devanagari", "Inter", sans-serif; }
html.lang-hi em, html.lang-hi .hero__title em, html.lang-hi .quote__text { font-style: normal; }
html.lang-ur body, html.lang-ur h1, html.lang-ur h2, html.lang-ur h3, html.lang-ur .brand, html.lang-ur .btn { font-family: "Noto Nastaliq Urdu", "Inter", serif; }
html.lang-ur { line-height: 2; }
html.lang-ur em { font-style: normal; }

/* Right-to-left (Urdu) */
html[dir="rtl"] .creds__item, html[dir="rtl"] .stat { padding-left: 0; padding-right: 18px; }
html[dir="rtl"] .creds__item::before, html[dir="rtl"] .stat::before { left: auto; right: 0; }
html[dir="rtl"] .band__list li { padding-left: 0; padding-right: 24px; }
html[dir="rtl"] .band__list li::before { left: auto; right: 2px; }
html[dir="rtl"] .quote { border-left: 0; border-right: 2px solid var(--accent); padding-left: 0; padding-right: 26px; }
html[dir="rtl"] .story__result { border-left: 0; border-right: 2px solid var(--accent); border-radius: 10px 0 0 10px; }
html[dir="rtl"] .poss--first::before { left: auto; right: 22px; }
html[dir="rtl"] .lang { margin-left: 0; margin-right: 16px; }
html[dir="rtl"] .btn--text span { transform: scaleX(-1); }

/* Foldable "how it works" steps */
.steps { display: grid; grid-template-columns: 1fr; gap: 12px; }
.steps details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.steps summary { cursor: pointer; list-style: none; padding: 20px 24px; font-family: "Fraunces", Georgia, serif; font-size: 1.16rem; color: var(--ink); display: flex; align-items: center; gap: 14px; }
.steps summary::-webkit-details-marker { display: none; }
.steps summary::after { content: "+"; margin-left: auto; color: var(--accent); font-size: 1.5rem; line-height: 1; font-family: "Inter", sans-serif; }
.steps details[open] summary::after { content: "–"; }
.steps__n { display: inline-grid; place-items: center; min-width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #fff; font-family: "Fraunces", serif; font-size: 0.95rem; flex: none; }
.steps details > p { padding: 0 24px 22px 68px; color: var(--body); font-size: 1.02rem; line-height: 1.55; }
html[dir="rtl"] .steps summary::after { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .steps details > p { padding: 0 68px 22px 24px; }
@media (max-width: 600px) { .steps details > p { padding-left: 24px; } html[dir="rtl"] .steps details > p { padding-right: 24px; } }

/* Lean homepage clarity block */
.clarity__p + .clarity__p { margin-top: 16px; }
.clarity__p strong { color: var(--ink); font-weight: 600; }

/* Print / PDF packet (generated from details.html) */
@media print {
  .nav, .mobilecta, .lang, .nav__toggle, .finder, .toolbox-trigger, .possible__more, .ctaband { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .section, .stats { padding: 22px 0 !important; }
  .section__head { margin-bottom: 22px; }
  body { font-size: 11.5pt; background: #fff; }
  .possible { grid-template-columns: 1fr 1fr !important; }
  .poss, .stat { break-inside: avoid; }
  a { color: inherit; }
}

/* Smart timeline (homepage steps) — one line each, connected by a vertical thread */
.steplist { list-style: none; margin: 0 0 28px; padding: 0; }
.steplist li { position: relative; display: flex; align-items: center; gap: 16px; min-height: 50px; font-family: "Fraunces", Georgia, serif; font-size: 1.14rem; line-height: 1.3; color: var(--ink); }
.steplist li .steps__n { position: relative; z-index: 1; transition: transform .2s var(--ease); }
.steplist li:not(:last-child)::before { content: ""; position: absolute; left: 14px; top: 50%; height: 100%; width: 2px; background: rgba(192,73,43,.35); z-index: 0; }
.steplist li:hover .steps__n { transform: scale(1.08); }
html[dir="rtl"] .steplist li { text-align: right; }
html[dir="rtl"] .steplist li:not(:last-child)::before { left: auto; right: 14px; }

/* Toolbox teaser bar + modal */
.toolbox-teaser { padding: 0 0 8px; }
.toolbox-trigger { width: 100%; display: flex; align-items: center; gap: 18px; text-align: left; background: var(--ink); color: #cfc8ba; border: 0; border-radius: 16px; padding: 20px 24px; cursor: pointer; font-family: "Inter", sans-serif; transition: transform .2s var(--ease); }
.toolbox-trigger:hover { transform: translateY(-2px); }
.toolbox-trigger__n { font-family: "Fraunces", serif; font-size: 1.9rem; font-weight: 600; color: #f0a888; flex: none; line-height: 1; }
.toolbox-trigger__txt { font-size: 1.02rem; line-height: 1.4; }
.toolbox-trigger__txt strong { color: #fff; }
.toolbox-trigger__arrow { margin-left: auto; color: #f0a888; font-size: 1.4rem; flex: none; }
html[dir="rtl"] .toolbox-trigger { text-align: right; }
html[dir="rtl"] .toolbox-trigger__arrow { margin-left: 0; margin-right: auto; transform: scaleX(-1); }
@media (max-width: 600px) { .toolbox-trigger { flex-wrap: wrap; gap: 10px; } .toolbox-trigger__arrow { display: none; } }

.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(27,26,23,0.6); backdrop-filter: blur(3px); }
.modal__panel { position: absolute; left: 0; right: 0; bottom: 0; max-height: 92vh; overflow-y: auto; -webkit-overflow-scrolling: touch; background: var(--paper); border-radius: 20px 20px 0 0; padding: 26px 22px 40px; box-shadow: 0 -20px 60px -20px rgba(0,0,0,0.5); }
@media (min-width: 760px) { .modal__panel { left: 50%; right: auto; bottom: auto; top: 50%; transform: translate(-50%,-50%); width: min(780px, 92vw); max-height: 88vh; border-radius: 20px; padding: 34px; } }
.modal__close { position: absolute; top: 14px; right: 16px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--card); color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer; z-index: 2; }
html[dir="rtl"] .modal__close { right: auto; left: 16px; }
.modal__body .section__head { margin-bottom: 26px; max-width: none; }

/* Make the toolbox bar work as a link too */
a.toolbox-trigger { text-decoration: none; color: #cfc8ba; }

/* ===== Standalone toolbox / finder funnel page ===== */
.tbhero { padding: 130px 0 28px; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.tbhero__inner { max-width: 720px; }
.tbhero__title { font-size: clamp(2.1rem, 6vw, 3.4rem); line-height: 1.04; }
.tbhero__sub { font-family: "Fraunces", Georgia, serif; font-style: italic; font-size: clamp(1.15rem, 3vw, 1.5rem); color: var(--accent); margin-top: 12px; }
.tbhero__lead { font-size: 1.12rem; line-height: 1.6; color: var(--ink); margin-top: 18px; max-width: 640px; }
.tbhero__btn { margin-top: 24px; }
.tbhero__trust { margin-top: 18px; font-size: 0.96rem; color: var(--muted); max-width: 560px; }
.tbhero__trust strong { color: var(--ink); }

.tb-scarcity { margin-top: 16px; padding: 16px 18px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; font-size: 1rem; line-height: 1.5; color: var(--ink); }
html[dir="rtl"] .tb-scarcity { text-align: right; }

.tb-share { padding: 0 0 70px; }
.tb-share .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.tb-share__txt { font-family: "Fraunces", Georgia, serif; font-size: 1.12rem; color: var(--ink); }
.tb-share__btn { color: var(--accent); font-weight: 600; }
