:root {
  --ink: #101827;
  --muted: #5f6672;
  --cream: #fbf8f3;
  --paper: #ffffff;
  --orange: #e8651a;
  --orange-deep: #a3420b;
  --orange-soft: #fff0e4;
  --green: #0f8a60;
  --green-soft: #e8f8f1;
  --line: #e9e3da;
  --shadow: 0 24px 60px rgba(34, 27, 20, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { margin-right: auto; display: inline-flex; }
.brand img { width: 190px; height: auto; object-fit: contain; }
.site-header nav { display: flex; gap: 28px; color: #3f4651; font-size: 14px; font-weight: 600; }
.site-header nav a:hover { color: var(--orange); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--orange), #c94e0c); box-shadow: 0 12px 28px rgba(232, 101, 26, .24); }
.button-link { color: var(--orange-deep); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 14px; }
.button-ghost { border-color: #d8d0c5; background: rgba(255,255,255,.55); }

.section-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hero {
  min-height: 700px;
  padding: 74px 0 84px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}
.hero-copy { max-width: 610px; }
.eyebrow, .overline {
  margin: 0 0 18px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow span { width: 26px; height: 2px; background: var(--orange); }
h1 { max-width: 720px; margin: 0; font-size: clamp(43px, 5vw, 68px); line-height: 1.02; letter-spacing: -.055em; }
.hero-lead { max-width: 590px; margin: 24px 0 0; color: var(--muted); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 22px; padding: 0; margin: 26px 0 0; list-style: none; color: #4a515b; font-size: 13px; font-weight: 600; }
.trust-list span { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 5px; color: var(--green); background: var(--green-soft); border-radius: 50%; }

.calculator-card {
  position: relative;
  padding: 30px;
  background: var(--paper);
  border: 1px solid rgba(225, 215, 202, .9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.calculator-card::before {
  content: "";
  position: absolute;
  inset: -16px -18px auto auto;
  width: 100px;
  height: 100px;
  z-index: -1;
  background: radial-gradient(circle, rgba(232,101,26,.2), transparent 70%);
}
.calculator-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.calculator-head h2 { margin: 0; font-size: 27px; letter-spacing: -.035em; }
.overline { margin-bottom: 8px; }
.live-badge { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border-radius: 999px; color: var(--green); background: var(--green-soft); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.live-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(15,138,96,.12); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.form-grid label { display: grid; gap: 8px; color: #505762; font-size: 12px; font-weight: 700; }
.form-grid label:first-child { grid-column: 1 / -1; }
select, input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fcfbf9;
  border: 1px solid #ddd6ce;
  border-radius: 11px;
  outline: none;
}
select:focus, input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,101,26,.11); }
.money-input, .suffix-input { position: relative; display: flex; align-items: center; }
.money-input > span, .suffix-input > span { position: absolute; color: #777e87; font-size: 13px; font-weight: 700; }
.money-input > span { left: 14px; }
.money-input input { padding-left: 40px; }
.suffix-input > span { right: 14px; }
.suffix-input input { padding-right: 45px; }
.result-panel { margin-top: 22px; padding: 22px; background: linear-gradient(135deg, #f1fbf6, #e4f6ee); border: 1px solid #cce9dc; border-radius: 18px; }
.result-main { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2px 16px; padding-bottom: 18px; border-bottom: 1px solid #c7e4d7; }
.result-main p { margin: 0; color: #3d6455; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.result-main strong { grid-row: 1 / 3; grid-column: 2; color: #086846; font-size: 31px; letter-spacing: -.04em; }
.result-main small { color: #5b786c; }
.result-panel dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 0; }
.result-panel dl div { display: grid; gap: 5px; }
.result-panel dt { color: #60746b; font-size: 11px; }
.result-panel dd { margin: 0; font-size: 14px; font-weight: 800; }
.data-note { margin: 14px 2px 0; color: #7a8088; font-size: 11px; line-height: 1.5; }
.quick-calculator-actions { display: grid; gap: 11px; margin-top: 16px; text-align: center; }
.quick-calculator-actions .button { min-height: 46px; font-size: 13px; }
.quick-calculator-actions > a:last-child { color: var(--orange-deep); font-size: 12px; font-weight: 800; }
.proof-strip { padding: 26px 20px; color: #fff; background: var(--ink); text-align: center; }
.proof-strip p { margin: 0 0 14px; color: #f4b78e; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.proof-strip div { display: flex; justify-content: center; flex-wrap: wrap; gap: 38px; color: #f4f5f7; font-size: 14px; font-weight: 700; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 50px; }
  .hero-copy { max-width: 760px; }
  .calculator-card { max-width: 650px; }
}
@media (max-width: 600px) {
  .site-header { width: min(100% - 26px, 1180px); height: 72px; }
  .brand img { width: 155px; }
  .button-small { display: none; }
  .section-shell { width: min(100% - 26px, 1180px); }
  .hero { padding: 40px 0 62px; }
  h1 { font-size: 42px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .trust-list { gap: 12px; }
  .calculator-card { padding: 22px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label:first-child { grid-column: auto; }
  .result-main { grid-template-columns: 1fr; }
  .result-main strong { grid-row: auto; grid-column: auto; margin-top: 6px; }
  .result-panel dl { grid-template-columns: 1fr 1fr; }
  .proof-strip div { gap: 16px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 10px 14px; color: #fff; background: var(--ink); border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.menu-button { display: none; width: 42px; height: 42px; padding: 9px; background: transparent; border: 1px solid var(--line); border-radius: 10px; }
.menu-button > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--ink); }
.content-section { padding: 104px 0; }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading.narrow { max-width: 790px; }
.section-heading h2, .story-copy h2, .trial-card h2, .final-cta h2, .guide-header h1, .tool-hero h1 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.pain-grid, .feature-grid, .tool-explainer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-grid article, .feature-grid article, .tool-explainer article { padding: 28px; background: rgba(255,255,255,.75); border: 1px solid var(--line); border-radius: 20px; }
.pain-grid b, .tool-explainer article > span { color: var(--orange); font-size: 12px; letter-spacing: .08em; }
.pain-grid h3, .feature-grid h3, .tool-explainer h2 { margin: 24px 0 10px; font-size: 20px; letter-spacing: -.025em; }
.pain-grid p, .feature-grid p, .tool-explainer p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.product-story { padding: 108px 0; background: #f0ebe4; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 82px; align-items: center; }
.story-image { position: relative; padding: 30px; background: #fff; border: 1px solid #ded5ca; border-radius: 30px; box-shadow: var(--shadow); }
.story-image::after { content: ""; position: absolute; inset: 24px -25px -25px 24px; z-index: -1; background: var(--orange); border-radius: 30px; opacity: .12; }
.story-image img { display: block; width: 100%; height: auto; border-radius: 18px; }
.story-copy > p:not(.eyebrow) { margin: 22px 0; color: var(--muted); line-height: 1.75; }
.check-list { display: grid; gap: 18px; padding: 0; margin: 28px 0 34px; list-style: none; }
.check-list li { display: flex; gap: 13px; }
.check-list li > span { flex: 0 0 27px; display: grid; place-items: center; height: 27px; color: var(--green); background: var(--green-soft); border-radius: 50%; font-weight: 800; }
.check-list div { display: grid; gap: 5px; }
.check-list small { color: var(--muted); line-height: 1.5; }
.feature-grid article { min-height: 250px; }
.product-proof { padding: 100px 0 20px; }
.product-proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product-proof figure { margin: 0; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 16px 44px rgba(35,27,20,.06); }
.product-proof img { display: block; width: 100%; height: auto; border-radius: 15px; }
.product-proof figcaption { padding: 17px 4px 2px; color: #4e5662; font-size: 13px; font-weight: 800; }
.feature-icon { display: grid; place-items: center; width: 46px; height: 46px; color: var(--orange-deep); background: var(--orange-soft); border-radius: 13px; font-size: 21px; font-weight: 800; }
.feature-grid h3 { margin-top: 22px; }
.feature-grid a { display: inline-block; margin-top: 24px; color: var(--orange-deep); font-size: 13px; font-weight: 800; }
.trial-section { padding: 0 0 104px; }
.trial-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 58px 64px; color: #fff; background: linear-gradient(135deg, #1c2839, #0c121c); border-radius: 32px; overflow: hidden; }
.trial-card h2 { max-width: 680px; }
.trial-card p:not(.eyebrow) { max-width: 680px; margin: 18px 0 0; color: #cbd1da; line-height: 1.7; }
.eyebrow.light { color: #ffbc91; }
.button-white { color: var(--ink); background: #fff; }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.4); }
.trial-actions { display: grid; gap: 10px; min-width: 200px; text-align: center; }
.trial-actions small { color: #aeb8c5; }
.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { padding: 24px 4px; border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding-right: 38px; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; color: var(--orange); font-size: 22px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 15px 38px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.final-cta { padding: 84px 0; color: #fff; background: var(--orange-deep); text-align: center; }
.final-cta .eyebrow { justify-content: center; }
.final-cta .eyebrow span { background: #fff; }
.final-cta h2 { max-width: 820px; margin: 0 auto; }
.final-cta .section-shell > div { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }
.site-footer { padding: 74px 0 24px; background: #0e1622; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 46px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-grid strong { margin-bottom: 7px; font-size: 13px; }
.footer-grid a { color: #aeb8c5; font-size: 13px; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { width: 175px; filter: brightness(0) invert(1); object-fit: contain; }
.footer-brand p { max-width: 280px; margin: 8px 0 0; color: #aeb8c5; font-size: 13px; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; color: #778394; border-top: 1px solid #273141; font-size: 11px; }
.consent { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: min(430px, calc(100% - 44px)); padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.consent p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.consent > div { display: flex; justify-content: flex-end; gap: 8px; margin-top: 14px; }
.guide-header, .guide-hero { padding: 78px 0 62px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: #7a8088; font-size: 12px; }
.breadcrumbs a { color: var(--orange-deep); }
.guide-header h1, .guide-hero h1 { max-width: 900px; }
.guide-header > p, .guide-hero > p:not(.eyebrow) { max-width: 790px; margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.guide-hero > .button { margin-top: 26px; }
.guide-layout, .guide-body { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 70px; padding-bottom: 100px; }
.guide-content { padding: 42px 48px; background: #fff; border: 1px solid var(--line); border-radius: 24px; }
.guide-content section + section { padding-top: 34px; margin-top: 34px; border-top: 1px solid var(--line); }
.guide-content h2 { margin: 0 0 14px; font-size: 29px; letter-spacing: -.035em; }
.guide-content p, .guide-content li { color: #505762; line-height: 1.8; }
.formula-card { padding: 25px; margin: 32px 0; background: var(--green-soft); border-left: 4px solid var(--green); border-radius: 12px; }
.formula-card code { display: block; margin-top: 8px; color: #07583c; font: 700 14px/1.7 Inter, ui-sans-serif, system-ui, sans-serif; }
.guide-aside, .guide-sidebar { display: grid; align-content: start; gap: 18px; }
.guide-aside > div, .guide-sidebar > div, .guide-sidebar > nav { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
.guide-aside h3, .guide-sidebar h2 { margin: 8px 0 10px; font-size: 22px; }
.guide-aside p, .guide-sidebar p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.guide-sidebar nav { display: grid; gap: 13px; }
.guide-sidebar nav a { color: var(--orange-deep); font-size: 12px; font-weight: 700; }
.article-faq details { padding: 17px 0; border-bottom: 1px solid var(--line); }
.article-faq summary { cursor: pointer; font-weight: 800; }
.tool-switcher { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 30px; }
.tool-switcher a { display: grid; grid-template-columns: auto 1fr; gap: 3px 12px; align-items: center; padding: 17px 20px; color: #555d68; background: rgba(255,255,255,.55); border: 1px solid var(--line); border-radius: 16px; }
.tool-switcher a > span { grid-row: 1 / 3; display: grid; place-items: center; width: 35px; height: 35px; color: var(--orange-deep); background: var(--orange-soft); border-radius: 10px; font-size: 11px; font-weight: 800; }
.tool-switcher strong { font-size: 13px; }
.tool-switcher small { color: var(--muted); font-size: 11px; }
.tool-switcher a.is-active { color: #fff; background: var(--ink); border-color: var(--ink); }
.tool-switcher a.is-active > span { color: #fff; background: var(--orange); }
.tool-switcher a.is-active small { color: #bdc5d0; }
.tool-hero { display: flex; justify-content: space-between; align-items: end; gap: 55px; padding: 68px 0 54px; }
.tool-hero > div { max-width: 780px; }
.tool-hero > div > p:last-child { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.privacy-note { flex: 0 0 280px; display: grid; gap: 7px; padding: 20px; color: #315a4a; background: var(--green-soft); border: 1px solid #cbe8dc; border-radius: 16px; }
.privacy-note strong { font-size: 13px; }
.privacy-note span { font-size: 11px; line-height: 1.6; }
.simulator-shell { display: grid; grid-template-columns: minmax(0, 1fr) 365px; gap: 26px; align-items: start; padding-bottom: 76px; }
.sim-card, .results-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 14px 42px rgba(35,27,20,.07); }
.sim-card { padding: 30px; }
.step-title { display: flex; align-items: center; gap: 13px; margin-bottom: 24px; }
.step-title > span { flex: 0 0 36px; display: grid; place-items: center; height: 36px; color: #fff; background: var(--orange); border-radius: 50%; font-size: 13px; font-weight: 800; }
.step-title div { display: grid; gap: 4px; }
.step-title p { margin: 0; font-weight: 800; }
.step-title small { color: var(--muted); line-height: 1.4; }
.step-title.compact { margin-top: 30px; }
.step-title.compact > span { width: 30px; flex-basis: 30px; height: 30px; }
.control-grid { display: grid; gap: 16px; }
.control-grid-three { grid-template-columns: repeat(3, 1fr); }
.control-grid label, .yield-row label { display: grid; gap: 8px; color: #505762; font-size: 12px; font-weight: 700; }
.control-grid label > small, .comparison-grid label > small { color: var(--muted); font-size: 10px; font-weight: 500; line-height: 1.45; }
.refine-toggle { width: 100%; margin-top: 24px; padding: 16px 18px; color: var(--orange-deep); background: var(--orange-soft); border: 0; border-radius: 12px; cursor: pointer; font-weight: 800; text-align: left; }
.refine-toggle span { display: inline-block; width: 26px; }
.refine-panel { padding-top: 2px; }
.yield-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 430px; }
.ingredient-table-wrap { margin-top: 20px; overflow-x: auto; }
.ingredient-table { width: 100%; min-width: 810px; border-collapse: collapse; }
.ingredient-table th { padding: 10px 8px; color: #747b85; border-bottom: 1px solid var(--line); font-size: 10px; text-align: left; text-transform: uppercase; letter-spacing: .04em; }
.ingredient-table td { padding: 10px 7px; border-bottom: 1px solid #f0ece6; }
.ingredient-table input, .ingredient-table select { min-height: 40px; padding: 0 9px; font-size: 12px; }
.ingredient-table .ingredient-name { min-width: 150px; font-weight: 700; }
.ingredient-table td:nth-child(2), .ingredient-table td:nth-child(4) { min-width: 170px; }
.joined-input { display: grid; grid-template-columns: 1fr 72px; }
.joined-input input { border-radius: 9px 0 0 9px; }
.joined-input select { border-left: 0; border-radius: 0 9px 9px 0; }
.remove-row { width: 32px; height: 32px; color: #a14b42; background: #fff1ef; border: 0; border-radius: 8px; cursor: pointer; font-size: 19px; }
.text-action { padding: 14px 0; color: var(--orange-deep); background: transparent; border: 0; cursor: pointer; font-size: 12px; font-weight: 800; }
.cost-step { padding-top: 26px; border-top: 1px solid var(--line); }
.advanced-grid input { background: #fff; }
.results-card { position: sticky; top: 20px; padding: 27px; }
.profit-highlight { display: grid; gap: 5px; padding: 22px; color: #075c3f; background: linear-gradient(135deg, #f0fbf6, #e3f6ed); border: 1px solid #c7e8d9; border-radius: 16px; }
.profit-highlight span { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.profit-highlight strong { font-size: 32px; letter-spacing: -.04em; }
.profit-highlight small { color: #557a6b; }
.roi-highlight { color: #85400f; background: linear-gradient(135deg, #fff8ef, #ffead9); border-color: #f5d3b8; }
.roi-highlight small { color: #83654f; }
.metric-list { display: grid; margin: 20px 0; }
.metric-list > div { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid #eee9e2; }
.metric-list dt { color: var(--muted); font-size: 11px; }
.metric-list dd { margin: 0; font-size: 12px; font-weight: 800; text-align: right; }
.assumption-box { padding: 16px; background: #f7f5f1; border-radius: 12px; }
.assumption-box strong { font-size: 11px; }
.assumption-box ul { display: grid; gap: 6px; padding-left: 17px; margin: 10px 0 0; color: #656c75; font-size: 10px; line-height: 1.5; }
.assumption-box p { margin: 10px 0 0; color: #757c84; font-size: 10px; }
.result-cta { width: 100%; margin-top: 18px; font-size: 12px; }
.tool-explainer { padding: 0 0 96px; }
.tool-explainer h2 { margin-top: 18px; font-size: 18px; }
.scenario-example { display: flex; gap: 10px; padding: 18px 22px; margin-top: -25px; margin-bottom: 26px; color: #65421f; background: #fff4e8; border: 1px solid #f3d2b4; border-radius: 15px; font-size: 12px; line-height: 1.65; }
.scenario-example strong { flex: 0 0 auto; color: var(--orange-deep); }
.control-grid label { align-content: start; }
.scenario-grid { grid-template-columns: repeat(2, 1fr); }
.scenario-selector { display: grid; gap: 18px; }
.machine-shell [hidden] { display: none !important; }
.scenario-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.scenario-option { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; padding: 18px; background: #fbfaf8; border: 1px solid var(--line); border-radius: 15px; cursor: pointer; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.scenario-option:hover { border-color: #edb07d; }
.scenario-option.is-selected { background: #fff7ef; border-color: var(--orange); box-shadow: 0 0 0 2px rgba(241,99,19,.09); }
.scenario-option input { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--orange); }
.scenario-option > span { display: grid; gap: 5px; }
.scenario-option strong { color: var(--ink); font-size: 12px; line-height: 1.35; }
.scenario-option small { color: var(--muted); font-size: 10px; font-weight: 500; line-height: 1.5; }
.new-business-fields { padding: 20px; margin-top: 20px; background: #f4fbf7; border: 1px solid #d6e9df; border-radius: 16px; }
.new-business-heading { display: grid; gap: 4px; margin-bottom: 16px; }
.new-business-heading strong { color: #075c3f; font-size: 12px; }
.new-business-heading small { color: #547568; font-size: 10px; line-height: 1.45; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.comparison-grid fieldset { display: grid; gap: 15px; padding: 20px; margin: 0; background: #faf8f5; border: 1px solid var(--line); border-radius: 16px; }
.comparison-grid legend { padding: 0 8px; color: var(--orange-deep); font-size: 12px; font-weight: 800; }
.comparison-grid label { display: grid; gap: 8px; color: #505762; font-size: 12px; font-weight: 700; }
.roi-cost-grid { margin-top: 18px; }
.growth-toggle { display: flex; align-items: flex-start; gap: 13px; padding: 17px; background: var(--green-soft); border: 1px solid #cbe8dc; border-radius: 14px; cursor: pointer; }
.growth-toggle input { flex: 0 0 20px; width: 20px; min-height: 20px; margin: 2px 0 0; accent-color: var(--green); }
.growth-toggle > span { display: grid; gap: 4px; }
.growth-toggle strong { color: #185d47; font-size: 12px; }
.growth-toggle small { color: #4d7568; font-size: 10px; line-height: 1.5; }
.growth-panel { padding: 18px; margin-top: 14px; background: #f7fbf9; border: 1px solid #dbece4; border-radius: 14px; }
.metric-list .metric-total { padding: 15px 11px; margin: 4px -11px 0; background: var(--green-soft); border: 0; border-radius: 10px; }
.metric-list .metric-total dt, .metric-list .metric-total dd { color: #075c3f; font-weight: 800; }
.calculation-breakdown { padding: 15px; margin-bottom: 14px; color: #6b481f; background: #fff6ed; border: 1px solid #f3dbc5; border-radius: 12px; }
.calculation-breakdown strong { font-size: 11px; }
.calculation-breakdown p { margin: 8px 0 0; font-size: 10px; line-height: 1.6; }
.process-card { padding: 22px; margin: 0; border: 1px solid var(--line); border-radius: 18px; }
.process-card legend { padding: 0 10px; color: var(--orange-deep); font-size: 12px; font-weight: 800; }
.process-manual { background: #fbfaf8; }
.process-machine { background: #f4fbf7; border-color: #d6e9df; }
.logic-note { padding: 19px 21px; margin-top: 26px; color: #64411f; background: #fff6ed; border: 1px solid #f3dbc5; border-radius: 14px; }
.logic-note strong { font-size: 12px; }
.logic-note p { margin: 8px 0 0; color: #7a5b3c; font-size: 11px; line-height: 1.65; }
.payback-clarifier { padding: 13px 14px; margin: 12px 0 0; color: #674824; background: #fff8f1; border-left: 3px solid var(--orange); border-radius: 8px; font-size: 10px; line-height: 1.55; }
.highlight-label { display: flex; align-items: center; gap: 6px; }
.metric-list dt { display: flex; align-items: center; gap: 5px; }
.metric-info { position: relative; display: inline-flex; flex: 0 0 auto; }
.metric-info > button { display: inline-grid; place-items: center; width: 17px; min-height: 17px; padding: 0; color: #746b61; background: #f3efe9; border: 1px solid #d9d1c7; border-radius: 50%; cursor: help; font-family: Georgia, serif; font-size: 10px; font-weight: 700; line-height: 1; }
.metric-info > button:hover, .metric-info > button:focus-visible { color: #fff; background: var(--orange-deep); border-color: var(--orange-deep); outline: 0; }
.metric-tooltip { position: absolute; right: -8px; top: calc(100% + 9px); z-index: 30; width: min(250px, 75vw); padding: 11px 12px; color: #fff; background: #182130; border-radius: 9px; box-shadow: 0 10px 24px rgba(15,23,42,.2); font-family: inherit; font-size: 10px; font-weight: 500; line-height: 1.5; text-align: left; text-transform: none; letter-spacing: normal; opacity: 0; pointer-events: none; transform: translateY(-3px); transition: opacity .15s ease, transform .15s ease; }
.metric-tooltip::before { position: absolute; top: -5px; right: 11px; width: 10px; height: 10px; background: #182130; content: ''; transform: rotate(45deg); }
.metric-info:hover .metric-tooltip, .metric-info:focus-within .metric-tooltip { opacity: 1; transform: translateY(0); }
.roi-highlight .metric-info > button { color: #85400f; background: rgba(255,255,255,.72); border-color: #e9b98f; }
.roi-highlight .metric-tooltip { color: #fff; font-size: 10px; font-weight: 500; text-transform: none; letter-spacing: normal; }

.pain-grid-four { grid-template-columns: repeat(4, 1fr); }
.system-workflow, .profitability-grid, .reports-story { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.system-workflow { padding: 112px 0; }
.workflow-copy h2, .profitability-copy h2, .reports-copy h2, .comparison-section h2, .plans-section h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.workflow-copy > p:not(.eyebrow), .profitability-copy > p:not(.eyebrow), .reports-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.workflow-points { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; margin-top: 34px; }
.workflow-points article { display: flex; gap: 12px; }
.workflow-points article > span { flex: 0 0 28px; display: grid; place-items: center; width: 28px; height: 28px; color: var(--green); background: var(--green-soft); border-radius: 50%; font-size: 11px; font-weight: 800; }
.workflow-points article div { display: grid; gap: 5px; }
.workflow-points strong { font-size: 13px; }
.workflow-points small { color: var(--muted); font-size: 11px; line-height: 1.55; }
.order-demo { padding: 28px; background: #f5f7fa; border: 1px solid #dce2e9; border-radius: 28px; box-shadow: 0 20px 52px rgba(31,42,55,.09); }
.demo-heading { display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center; padding: 0 3px 19px; }
.demo-heading > span { color: var(--orange-deep); font-size: 20px; }
.demo-heading strong { font-size: 18px; }
.demo-heading small { color: var(--muted); font-weight: 700; }
.order-demo article { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 21px; background: #fff; border: 1px solid #e4e8ed; border-radius: 17px; box-shadow: 0 7px 18px rgba(31,42,55,.05); }
.order-demo article + article { margin-top: 12px; }
.order-demo article div { display: grid; gap: 5px; }
.order-demo article small { color: var(--orange-deep); font-size: 10px; font-weight: 800; }
.order-demo article strong { font-size: 14px; }
.order-demo article p { margin: 0; color: #6b7480; font-size: 11px; }
.status { flex: 0 0 auto; padding: 7px 10px; border-radius: 999px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.status-new { color: #8a4e05; background: #fff0bd; }
.status-done { color: #087451; background: #d6f6e8; }
.demo-total { display: flex; justify-content: space-between; gap: 18px; padding: 19px 4px 2px; margin-top: 18px; color: #556171; border-top: 1px solid #dce2e9; font-size: 11px; }

.profitability-story { padding: 112px 0; background: #f0ebe4; }
.compact-list { margin-bottom: 30px; }
.recipe-profit-card { padding: 22px; background: #fff; border: 1px solid #ded5ca; border-radius: 28px; box-shadow: var(--shadow); }
.recipe-profit-card img { display: block; width: 100%; height: auto; border-radius: 17px; }
.recipe-profit-card dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0 10px; }
.recipe-profit-card dl div { display: grid; gap: 6px; padding: 13px; background: #f7f5f1; border-radius: 11px; }
.recipe-profit-card dt { color: var(--muted); font-size: 9px; }
.recipe-profit-card dd { margin: 0; font-size: 14px; font-weight: 800; }
.recipe-profit-card dl div:last-child { color: #075c3f; background: var(--green-soft); }
.recipe-profit-card > small { color: #7c838d; font-size: 9px; }

.reports-story { padding: 112px 0; }
.reports-visual { position: relative; padding-bottom: 70px; }
.reports-visual > img { display: block; width: 100%; height: auto; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 16px 44px rgba(35,27,20,.07); }
.report-cards { position: absolute; left: 28px; right: -28px; bottom: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.report-cards article { display: grid; gap: 4px; padding: 15px; background: #fff; border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 12px 30px rgba(35,27,20,.1); }
.report-cards small, .report-cards span { color: var(--muted); font-size: 9px; }
.report-cards strong { font-size: 16px; }
.report-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.report-list article { padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.report-list strong { font-size: 12px; }
.report-list p { margin: 7px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }

.steps-section { padding: 104px 0; background: #101827; color: #fff; }
.steps-section .section-heading { margin-bottom: 40px; }
.steps-section .eyebrow { color: #f6b68e; }
.system-steps { display: grid; grid-template-columns: repeat(6, 1fr); padding: 0; margin: 0; list-style: none; border: 1px solid #2d3747; border-radius: 22px; overflow: hidden; }
.system-steps li { position: relative; display: grid; align-content: start; gap: 10px; min-height: 190px; padding: 24px 20px; background: #151f2e; }
.system-steps li + li { border-left: 1px solid #2d3747; }
.system-steps li > span { color: #f39860; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.system-steps strong { font-size: 13px; }
.system-steps small { color: #aeb8c5; font-size: 10px; line-height: 1.55; }

.comparison-section { padding: 112px 0; }
.comparison-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 14px 38px rgba(35,27,20,.06); }
.comparison-table { width: 100%; min-width: 820px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 23px 25px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison-table thead th { color: #293241; background: #f6f7f8; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.comparison-table thead th:nth-child(2) { color: #a02b42; background: #fff6f7; }
.comparison-table thead th:nth-child(3) { color: #08714f; background: #f0faf6; }
.comparison-table tbody th { width: 21%; font-size: 12px; }
.comparison-table td { color: #66707d; font-size: 12px; line-height: 1.65; }
.comparison-table td:nth-child(3) { color: #096647; background: #f8fcfa; font-weight: 700; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.centered-action { display: flex; justify-content: center; margin-top: 34px; }

.plans-section { padding: 110px 0; background: #f1f4f7; }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; padding: 40px; background: #fff; border: 1px solid #dce3ea; border-radius: 28px; box-shadow: 0 15px 40px rgba(31,42,55,.06); }
.plan-card.plan-featured { border: 2px solid var(--orange-deep); box-shadow: 0 22px 55px rgba(163,66,11,.12); }
.recommended { position: absolute; top: -18px; right: 35px; padding: 10px 20px; color: #fff; background: var(--orange-deep); border-radius: 999px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.plan-heading > span { color: var(--orange-deep); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.plan-heading h3 { margin: 10px 0 7px; font-size: 25px; letter-spacing: -.035em; }
.plan-heading p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.plan-price { display: flex; align-items: end; gap: 8px; padding: 27px 0; margin: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-price strong { font-size: 38px; letter-spacing: -.045em; }
.plan-price small { padding-bottom: 6px; color: var(--muted); }
.plan-card ul { display: grid; gap: 13px; padding: 0; margin: 0 0 30px; list-style: none; color: #465160; font-size: 12px; }
.plan-card li { position: relative; padding-left: 24px; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.plan-card .button { width: 100%; margin-top: auto; }
.payment-note { margin-top: 10px; color: #8a929d; font-size: 9px; text-align: center; }
.trial-reminder { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 24px 28px; margin-top: 28px; background: #fff; border: 1px solid #dce3ea; border-radius: 18px; }
.trial-reminder > div { display: grid; gap: 5px; }
.trial-reminder strong { font-size: 14px; }
.trial-reminder span { color: var(--muted); font-size: 11px; }
.final-cta .section-shell > p:not(.eyebrow) { margin: 20px 0 0; color: #ffe5d5; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .site-header nav.is-open { position: absolute; top: 75px; left: 20px; right: 20px; z-index: 20; display: grid; gap: 0; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .site-header nav.is-open a { padding: 12px; }
  .story-grid, .faq-section, .guide-layout, .guide-body { grid-template-columns: 1fr; gap: 42px; }
  .pain-grid, .feature-grid, .tool-explainer { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .tool-hero { align-items: start; flex-direction: column; }
  .privacy-note { flex-basis: auto; max-width: 500px; }
  .simulator-shell { grid-template-columns: 1fr; }
  .results-card { position: static; }
  .pain-grid-four { grid-template-columns: repeat(2, 1fr); }
  .system-workflow, .profitability-grid, .reports-story { grid-template-columns: 1fr; gap: 48px; }
  .reports-visual { max-width: 650px; }
  .system-steps { grid-template-columns: repeat(3, 1fr); }
  .system-steps li:nth-child(4) { border-left: 0; }
  .system-steps li:nth-child(n+4) { border-top: 1px solid #2d3747; }
}

@media (max-width: 600px) {
  .content-section, .product-story { padding: 72px 0; }
  .product-proof { padding-top: 72px; }
  .product-proof-grid { grid-template-columns: 1fr; }
  .pain-grid, .feature-grid, .tool-explainer { grid-template-columns: 1fr; }
  .story-grid { gap: 48px; }
  .story-image { padding: 16px; }
  .trial-section { padding-bottom: 72px; }
  .trial-card { align-items: stretch; flex-direction: column; padding: 36px 24px; border-radius: 22px; }
  .faq-section { gap: 22px; }
  .final-cta .section-shell > div { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .consent > div { flex-direction: column; }
  .consent .button-small { display: inline-flex; }
  .guide-header, .guide-hero { padding: 48px 0 38px; }
  .guide-content { padding: 28px 22px; }
  .guide-layout, .guide-body { padding-bottom: 72px; }
  .tool-hero { padding: 46px 0 38px; }
  .tool-switcher { grid-template-columns: 1fr; padding-top: 18px; }
  .scenario-example { align-items: flex-start; flex-direction: column; margin-top: -15px; }
  .sim-card, .results-card { padding: 21px; border-radius: 18px; }
  .control-grid-three, .yield-row { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario-options { grid-template-columns: 1fr; }
  .tool-explainer { padding-bottom: 72px; }
  .pain-grid-four { grid-template-columns: 1fr; }
  .system-workflow, .profitability-story, .reports-story, .comparison-section, .plans-section { padding-top: 72px; padding-bottom: 72px; }
  .workflow-points, .report-list { grid-template-columns: 1fr; }
  .order-demo { padding: 18px; border-radius: 20px; }
  .order-demo article { align-items: flex-start; flex-direction: column; }
  .recipe-profit-card dl { grid-template-columns: 1fr; }
  .report-cards { position: static; grid-template-columns: 1fr; margin-top: 12px; }
  .reports-visual { padding-bottom: 0; }
  .system-steps { grid-template-columns: 1fr; }
  .system-steps li { min-height: auto; }
  .system-steps li + li { border-top: 1px solid #2d3747; border-left: 0; }
  .plans-grid { grid-template-columns: 1fr; gap: 38px; }
  .plan-card { padding: 31px 23px; }
  .trial-reminder { align-items: stretch; flex-direction: column; }
}
