:root {
  --orange: #ff6a00;
  --orange-2: #ff8a00;
  --orange-3: #ffad3d;
  --cream: #fff8ef;
  --cream-2: #fff1df;
  --brown: #3d1609;
  --brown-2: #6c2a10;
  --ink: #26120a;
  --muted: #6e5a50;
  --line: rgba(75, 29, 8, .13);
  --white: #fff;
  --green: #178a47;
  --blue: #2475ff;
  --shadow: 0 22px 65px rgba(90, 35, 0, .16);
  --shadow-sm: 0 10px 30px rgba(90, 35, 0, .11);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 17px;
  --max: 1180px;
}
* { 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;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 1000; background: #fff; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { top: 12px; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; color: var(--orange); font-weight: 850; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: currentColor; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--brown); line-height: 1.05; margin: 0 0 .55em; }
h1 { font-size: clamp(2.7rem, 7vw, 5.7rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.15rem, 4.2vw, 4rem); letter-spacing: -.035em; }
h3 { font-size: 1.42rem; }
p { margin: 0 0 1.15rem; }
.lead { font-size: clamp(1.06rem, 2vw, 1.28rem); color: var(--muted); max-width: 690px; }
.small { font-size: .88rem; color: var(--muted); }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-title { max-width: 760px; margin-bottom: 42px; }
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(17px); background: rgba(255,248,239,.88); border-bottom: 1px solid rgba(65,24,8,.08); }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 950; font-size: 1.35rem; color: var(--brown); }
.brand img { width: 42px; height: 42px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; font-weight: 750; font-size: .94rem; }
.nav-links a:hover { color: var(--orange); }
.lang-link { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 21px; border-radius: 16px; border: 1px solid transparent; font-weight: 850; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--orange), #ee4200); box-shadow: 0 13px 28px rgba(240,78,0,.27); }
.btn-secondary { background: #fff; color: var(--brown); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-dark { background: var(--brown); color: #fff; }
.btn[aria-disabled="true"] { opacity: .62; cursor: not-allowed; transform: none; }
.store-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; align-items: center; }
.store-badge { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; line-height: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 12px 28px rgba(25,10,0,.18); transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease; }
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(25,10,0,.22); }
.store-badge img { display: block; width: 198px; height: auto; }
.store-badge[aria-disabled="true"], .store-badge.is-coming-soon { opacity: .82; cursor: not-allowed; }
.store-badge[aria-disabled="true"]:hover, .store-badge.is-coming-soon:hover { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hero { position: relative; overflow: hidden; min-height: 780px; background: radial-gradient(circle at 80% 25%, #ffc05d 0, rgba(255,192,93,.12) 31%, transparent 50%), linear-gradient(145deg, #fff8ef 3%, #fff0d8 55%, #ffd08d 140%); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(255,110,0,.1); filter: blur(2px); right: -180px; top: 80px; }
.hero-grid { min-height: 780px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 55px; padding: 70px 0 88px; }
.hero-copy { position: relative; z-index: 3; }
.hero-copy h1 span { color: var(--orange); }
.hero-bullets { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.hero-bullets li { padding: 8px 12px; background: rgba(255,255,255,.74); border: 1px solid rgba(81,30,8,.1); border-radius: 999px; font-size: .9rem; font-weight: 750; }
.hero-visual { position: relative; min-height: 660px; }
.hero-phone { position: absolute; right: 2%; top: 20px; width: min(390px, 70%); border-radius: 44px; box-shadow: 0 34px 80px rgba(86,26,0,.28); transform: rotate(2.2deg); }
.hero-mascot { position: absolute; width: min(330px, 58%); left: -6%; bottom: 0; filter: drop-shadow(0 22px 20px rgba(82,24,0,.17)); z-index: 2; }
.scan-card { position: absolute; z-index: 4; right: 0; bottom: 90px; width: 250px; border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); padding: 20px; border: 1px solid rgba(80,30,8,.08); }
.scan-card strong { font-family: Georgia, serif; font-size: 2rem; color: var(--brown); }
.scan-card .label { color: var(--orange); font-weight: 900; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: var(--muted); font-size: .9rem; font-weight: 700; }
.trust-row span { display: inline-flex; gap: 7px; align-items: center; }
.check { width: 19px; height: 19px; border-radius: 50%; display: inline-grid; place-items: center; color: #fff; background: var(--green); font-size: .72rem; }
.logo-strip { background: #fff; border-block: 1px solid var(--line); }
.logo-strip-inner { min-height: 86px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 30px; color: var(--muted); font-weight: 750; text-align: center; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.feature-card { padding: 28px; }
.icon-box { width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg,var(--orange-2),var(--orange)); margin-bottom: 20px; box-shadow: 0 13px 26px rgba(255,101,0,.24); font-size: 1.6rem; }
.feature-card p { color: var(--muted); }
.showcase-wrap { overflow: hidden; }
.showcase { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(245px, 315px); gap: 20px; overflow-x: auto; padding: 8px 18px 35px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.showcase img { width: 100%; border-radius: 28px; box-shadow: var(--shadow); scroll-snap-align: center; border: 1px solid rgba(77,28,6,.09); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px; overflow: hidden; }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; right: 18px; top: 8px; font-family: Georgia, serif; font-size: 4rem; color: rgba(255,106,0,.11); font-weight: 900; }
.step p { color: var(--muted); }
.calculator-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.calc-card { padding: 24px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.calc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.calc-card .arrow { color: var(--orange); font-weight: 950; }
.pricing-shell { background: linear-gradient(135deg,#3e1708,#6b250b); color: #fff; border-radius: var(--radius-xl); padding: clamp(32px, 6vw, 68px); position: relative; overflow: hidden; }
.pricing-shell::after { content: ""; position: absolute; width: 390px; height: 390px; border-radius: 50%; background: rgba(255,121,0,.24); right: -160px; top: -150px; }
.pricing-shell h2, .pricing-shell h3 { color: #fff; }
.pricing-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.price-card { background: #fff; color: var(--ink); padding: 30px; border-radius: 26px; box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.price-lines { display: grid; gap: 12px; margin: 18px 0 24px; }
.price-line { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 11px; border-bottom: 1px solid var(--line); }
.price-line strong { font-size: 1.25rem; color: var(--brown); }
.price-pill { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: #fff1df; color: #d94c00; font-size: .8rem; font-weight: 850; }
.faq { display: grid; gap: 13px; }
details { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 0 20px; box-shadow: 0 7px 22px rgba(80,30,8,.05); }
summary { padding: 18px 0; cursor: pointer; font-weight: 850; color: var(--brown); }
details p { color: var(--muted); padding-bottom: 6px; }
.cta { background: linear-gradient(135deg,#ff8b05,#f05200); color: #fff; border-radius: var(--radius-xl); padding: 55px; position: relative; overflow: hidden; }
.cta-copy { max-width: min(100%, 760px); position: relative; z-index: 2; }
.cta h2 { color: #fff; max-width: 720px; }
.cta p { max-width: 680px; color: rgba(255,255,255,.88); }
.cta-mascot { position: absolute; right: 22px; bottom: -8px; width: clamp(180px, 18vw, 250px); height: auto; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(72, 20, 0, .18)); z-index: 1; }
.footer { padding: 46px 0 34px; background: #2b1007; color: rgba(255,255,255,.77); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer h3 { color: #fff; font-family: inherit; font-size: 1rem; }
.footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); font-size: .82rem; }
/* Calculator pages */
.calc-hero { padding: 88px 0 52px; background: radial-gradient(circle at 85% 15%, rgba(255,166,55,.36), transparent 35%), linear-gradient(145deg,#fff8ef,#ffe6bd); }
.calc-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: start; }
.calculator { padding: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: var(--brown); }
input, select { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid rgba(82,32,9,.18); border-radius: 13px; background: #fffdf9; color: var(--ink); outline: none; }
input:focus, select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,106,0,.12); }
.result { display: none; margin-top: 20px; padding: 22px; border-radius: 18px; background: linear-gradient(135deg,#fff2de,#fffaf3); border: 1px solid rgba(255,106,0,.22); }
.result.is-visible { display: block; }
.result-value { font-family: Georgia, serif; font-size: 2.65rem; color: var(--orange); font-weight: 900; line-height: 1; }
.content-card { padding: 30px; }
.content-card h2 { font-size: 2rem; }
.content-card ul { padding-left: 22px; }
.notice { padding: 15px 17px; border-left: 4px solid var(--orange); background: #fff5e8; color: var(--muted); border-radius: 0 12px 12px 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; }
th, td { padding: 13px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--brown); background: #fff3e4; }
@media (max-width: 960px) {
  .nav-links a:not(.lang-link):not(.nav-cta) { display: none; }
  .hero-grid, .pricing-grid, .calc-layout { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 54px; }
  .hero-visual { min-height: 620px; max-width: 620px; width: 100%; margin-inline: auto; }
  .feature-grid, .steps { grid-template-columns: 1fr 1fr; }
  .calculator-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-copy { max-width: 100%; }
  .cta-mascot { right: 16px; bottom: -6px; width: clamp(160px, 26vw, 220px); opacity: .18; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--max)); }
  .section { padding: 72px 0; }
  .nav { height: 68px; }
  .brand span { display: none; }
  .nav-links { gap: 10px; }
  .nav-cta { padding-inline: 14px; min-height: 44px; font-size: .86rem; }
  .store-badge img { width: min(198px, 42vw); }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; gap: 28px; padding-bottom: 55px; }
  .hero-visual { min-height: 500px; }
  .hero-phone { width: 70%; right: 3%; }
  .hero-mascot { width: 58%; left: -8%; }
  .scan-card { width: 190px; padding: 15px; bottom: 55px; }
  .feature-grid, .steps, .calculator-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .pricing-shell, .cta { padding: 30px 22px; border-radius: 24px; }
  .cta-mascot { display: none; }
  .showcase { grid-auto-columns: 77vw; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
