/* Sitepolished — site styles. Hand-tuned; keep it small. */
:root {
  --paper: #fbf7f1;
  --paper-2: #f3ece2;
  --ink: #17213a;
  --ink-2: #2b3450;
  --muted: #5d6579;
  --line: rgba(23, 33, 58, .12);
  --line-2: rgba(23, 33, 58, .2);
  --card: #ffffff;
  --accent: #d4552b;
  --accent-2: #b8461f;
  --accent-soft: #fbe6dc;
  --gold: #e9a93b;
  --gold-soft: #fdf1d9;
  --green: #2f8f5b;
  --green-soft: #e2f3e8;
  --red: #c2352e;
  --radius: 18px;
  --radius-s: 12px;
  --shadow: 0 1px 2px rgba(23, 33, 58, .06), 0 12px 32px -16px rgba(23, 33, 58, .25);
  --shadow-s: 0 1px 2px rgba(23, 33, 58, .05), 0 6px 16px -10px rgba(23, 33, 58, .2);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font); font-size: 17px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a:focus-visible, button:focus-visible, summary:focus-visible, .opt:focus-within, .drop:focus-within { outline: 3px solid rgba(23, 33, 58, .35); outline-offset: 3px; }
.btn:focus-visible { outline-offset: 4px; border-radius: 999px; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -.01em; line-height: 1.1; margin: 0; font-variation-settings: "opsz" 72; }
h1 { font-size: clamp(2.1rem, 6.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: 1.2rem; line-height: 1.3; }
p { margin: 0; }
.wrap { width: min(1120px, 100% - 32px); margin-inline: auto; position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: var(--accent-2); }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.muted { color: var(--muted); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Header */
.top { position: sticky; top: 0; z-index: 20; backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); background: rgba(251, 247, 241, .94); border-bottom: 1px solid var(--line); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 12px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; }
.brand .mark { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--accent), #e8763f); position: relative; box-shadow: inset 0 -2px 0 rgba(0,0,0,.12); }
.brand .mark::after { content: ""; position: absolute; left: 8px; right: 8px; top: 9px; height: 3px; background: #fff; border-radius: 2px; box-shadow: 0 6px 0 #fff, 0 12px 0 rgba(255,255,255,.7); }
.nav { display: flex; align-items: center; gap: 8px; }
.lang { display: inline-flex; border: 1px solid var(--line-2); border-radius: 999px; padding: 0; background: rgba(255,255,255,.6); }
.lang a { display: inline-flex; align-items: center; min-height: 42px; text-decoration: none; font-size: .82rem; font-weight: 600; padding: 0 12px; border-radius: 999px; color: var(--muted); line-height: 1; }
.lang a[aria-current="true"] { background: var(--ink); color: #fff; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 20px; border-radius: 999px; border: 0; font: inherit; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; transition: transform .12s var(--ease), background .2s, box-shadow .2s; -webkit-tap-highlight-color: transparent; white-space: nowrap; }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px -10px rgba(212, 85, 43, .7); }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: rgba(255,255,255,.7); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: .92rem; }
.btn-wa { background: #1fa855; color: #fff; }
.btn-wa:hover { background: #17924a; }
.top .btn-sm .long { display: none; }
@media (max-width: 359px) { .top .btn-sm { display: none; } }
@media (min-width: 560px) { .top .btn-sm .long { display: inline; } .top .btn-sm .short { display: none; } }

/* Hero */
.hero { padding: 56px 0 24px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: -60px -20% auto; height: 520px; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 55% at 20% 20%, rgba(233, 169, 59, .28), transparent 70%), radial-gradient(45% 45% at 85% 10%, rgba(212, 85, 43, .18), transparent 70%); filter: blur(10px); }
.hero .wrap { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) { .hero { padding: 72px 0 40px; } .hero .wrap { grid-template-columns: 1.1fr .9fr; gap: 48px; } }
.hero h1 { margin: 14px 0 16px; }
.hero h1 em { font-style: italic; color: var(--accent-2); font-variation-settings: "opsz" 72, "SOFT" 60; }
.lead { font-size: 1.15rem; color: var(--ink-2); max-width: 54ch; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 22px; font-size: .92rem; color: var(--muted); }
.trust span { display: inline-flex; align-items: center; gap: 6px; }
.trust svg { width: 16px; height: 16px; color: var(--green); }

/* Phone mockup */
.phone-wrap { position: relative; display: grid; place-items: center; padding: 10px 0; }
.phone { width: 290px; max-width: 100%; aspect-ratio: 9 / 19; border-radius: 40px; background: #111; padding: 10px; box-shadow: 0 30px 60px -30px rgba(23,33,58,.6), 0 0 0 1px rgba(0,0,0,.4); position: relative; transform: rotate(-2deg); }
.phone::before { content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 90px; height: 24px; background: #111; border-radius: 14px; z-index: 3; }
.screen { position: absolute; inset: 10px; border-radius: 32px; overflow: hidden; background: #fff; }
.mock { position: absolute; inset: 0; animation: mockscroll 18s var(--ease) infinite; will-change: transform; font-size: 11px; color: #1c1c1c; }
.phone:hover .mock { animation-play-state: paused; }
@keyframes mockscroll { 0%, 12% { transform: translateY(0); } 45%, 58% { transform: translateY(-46%); } 88%, 100% { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .mock { animation: none; } }
.mock-hero { height: 250px; background: linear-gradient(160deg, #3a1d10, #7a2f18 55%, #b8461f); color: #fff; padding: 52px 16px 16px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; }
.mock-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 80% 20%, rgba(255,205,120,.35), transparent 70%); }
.mock-hero * { position: relative; }
.mock-lang { position: absolute; top: 44px; right: 12px; background: rgba(255,255,255,.18); border-radius: 999px; padding: 3px 8px; font-size: 9px; font-weight: 600; }
.mock-hero h4 { font-family: var(--display); font-size: 21px; margin: 0 0 4px; line-height: 1.1; font-weight: 600; }
.mock-hero p { font-size: 10.5px; opacity: .9; }
.mock-btns { display: flex; gap: 6px; margin-top: 10px; }
.mock-btns span { flex: 1; text-align: center; background: #fff; color: #7a2f18; border-radius: 999px; padding: 7px 0; font-weight: 700; font-size: 10px; }
.mock-btns span.wa { background: #25d366; color: #fff; }
.mock-sec { padding: 14px 16px; border-bottom: 1px solid #eee; }
.mock-sec h5 { margin: 0 0 8px; font-size: 12px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: #7a2f18; }
.mock-row { display: flex; justify-content: space-between; padding: 5px 0; border-top: 1px dashed #eee; }
.mock-row:first-of-type { border-top: 0; }
.mock-row b { font-weight: 600; }
.mock-map { height: 90px; border-radius: 10px; background: repeating-linear-gradient(45deg, #e9efe6 0 8px, #dfe7da 8px 16px); position: relative; }
.mock-map::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 12px; border-radius: 50% 50% 50% 0; transform: translate(-50%, -70%) rotate(-45deg); background: var(--accent); box-shadow: 0 2px 4px rgba(0,0,0,.3); }
.mock-stars { color: #e9a93b; letter-spacing: 1px; font-size: 11px; }
.sample-tag { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-size: .75rem; font-weight: 600; padding: 6px 12px; border-radius: 999px; white-space: nowrap; }

/* Sections */
section { padding: 56px 0; }
@media (min-width: 900px) { section { padding: 80px 0; } }
.sec-head { max-width: 62ch; margin-bottom: 28px; }
.sec-head h2 { margin: 10px 0 12px; }
.sec-head p { color: var(--ink-2); font-size: 1.05rem; }
.grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px) and (max-width: 899px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-s); }
.card h3 { margin-bottom: 6px; }
.card p { color: var(--muted); font-size: .97rem; }
.ico { width: 40px; height: 40px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-2); display: grid; place-items: center; margin-bottom: 14px; }
.ico svg { width: 22px; height: 22px; }

/* Pricing */
.price-grid { display: grid; gap: 16px; }
@media (min-width: 900px) { .price-grid { grid-template-columns: 1.15fr .85fr; align-items: start; } }
.price { position: relative; overflow: hidden; }
.price.main { border: 2px solid var(--ink); }
.ribbon { position: absolute; top: 18px; right: 18px; background: var(--gold); color: var(--ink); font-size: .74rem; font-weight: 700; padding: 6px 12px; border-radius: 999px; letter-spacing: .03em; text-transform: uppercase; }
.amount { display: flex; align-items: baseline; gap: 10px; margin: 10px 0 4px; flex-wrap: wrap; }
.amount .now { font-family: var(--display); font-size: 3rem; font-weight: 600; line-height: 1; }
.amount .was { color: var(--muted); text-decoration: line-through; font-size: 1.2rem; }
.amount .per { color: var(--muted); }
.note { font-size: .92rem; color: var(--muted); }
.list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; }
.list li { display: flex; gap: 10px; align-items: flex-start; font-size: .97rem; }
.list svg { flex: none; width: 20px; height: 20px; color: var(--green); margin-top: 2px; }
.price .btn { margin-top: 20px; width: 100%; }
.cap { display: inline-flex; align-items: center; gap: 6px; background: var(--gold-soft); color: #7a5410; font-size: .8rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; margin-top: 8px; }

/* Steps */
.steps { counter-reset: s; display: grid; gap: 14px; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { counter-increment: s; }
.step::before { content: counter(s); display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 700; margin-bottom: 14px; font-size: .95rem; }

/* FAQ */
.faq { display: grid; gap: 8px; }
.faq-grid { display: grid; gap: 8px 40px; }
@media (min-width: 900px) { .faq-grid { grid-template-columns: .8fr 1.4fr; align-items: start; } .faq-grid .sec-head { position: sticky; top: 84px; margin-bottom: 0; } }
details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-s); padding: 0 18px; }
summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--muted); transition: transform .2s var(--ease); flex: none; }
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 0 16px; color: var(--ink-2); font-size: .97rem; }

/* Form */
.form-sec { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); max-width: 720px; }
@media (min-width: 640px) { .form-card { padding: 32px; } }
fieldset { border: 0; padding: 0; margin: 0 0 22px; min-width: 0; }
legend { font-weight: 700; font-size: 1.05rem; padding: 0; margin-bottom: 12px; }
.f { display: grid; gap: 6px; margin-bottom: 14px; }
.f label, .f .lbl { font-weight: 600; font-size: .95rem; }
.f .help { font-size: .86rem; color: var(--muted); }
.f :where(input:not([type="radio"]):not([type="checkbox"]):not([type="file"]), select, textarea) {
  width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: var(--radius-s); background: #fff; color: var(--ink); font: inherit; font-size: 16px; transition: border-color .15s, box-shadow .15s; -webkit-appearance: none; appearance: none; }
.f select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%235d6579' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.f textarea { min-height: 96px; resize: vertical; }
.f input:focus, .f select:focus, .f textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(23,33,58,.12); }
.f.err input, .f.err select, .f.err textarea { border-color: var(--red); }
.f.err .opt { border-color: var(--red); }
.f .msg { font-size: .86rem; color: var(--red); display: none; }
.f.err .msg { display: block; }
.row2 { display: grid; gap: 0 14px; }
@media (min-width: 560px) { .row2 { grid-template-columns: 1fr 1fr; } }
.opts { display: grid; gap: 8px; }
.opt { display: flex; gap: 12px; align-items: center; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: var(--radius-s); cursor: pointer; background: #fff; transition: border-color .15s, background .15s; font-weight: 500; }
.opt:has(input:checked) { border-color: var(--ink); background: var(--paper); }
.opt input { width: 20px; height: 20px; margin: 0; accent-color: var(--accent); flex: none; }
.seg { display: flex; gap: 8px; }
.seg .opt { flex: 1; justify-content: center; padding: 10px; }
.f.yn { display: grid; grid-template-columns: 1fr; align-items: center; gap: 10px; padding: 12px 0; margin: 0; border-top: 1px solid var(--line); }
@media (min-width: 560px) { .yn { grid-template-columns: 1fr auto; gap: 12px; } }
.f.yn.last { border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.f.yn .msg { grid-column: 1 / -1; }
.yn .q { font-size: .95rem; }
.yn .seg { min-width: 150px; }
@media (max-width: 559px) { .yn .seg { width: 100%; } }
.drop { border: 1.5px dashed var(--line-2); border-radius: var(--radius-s); padding: 18px; text-align: center; background: #fff; cursor: pointer; transition: border-color .15s, background .15s; position: relative; }
.drop:hover, .drop.over { border-color: var(--accent); background: var(--accent-soft); }
.drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.drop b { display: block; font-weight: 600; }
.drop .cnt { font-size: .86rem; color: var(--muted); margin-top: 4px; }
.thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.thumbs img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--ink-2); }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--accent); flex: none; }
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.submit { display: grid; gap: 10px; margin-top: 8px; }
.submit .btn { width: 100%; min-height: 54px; font-size: 1.05rem; }
.submit .btn[disabled] { opacity: .7; cursor: progress; }
.spin { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; display: none; }
.btn.busy .spin { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-err { display: none; background: #fdeceb; color: var(--red); border: 1px solid #f3c2bf; border-radius: var(--radius-s); padding: 12px 14px; font-size: .95rem; }
.form-err.show { display: block; }
.done { display: none; text-align: center; padding: 20px 0; }
.done.show { display: block; }
.done .tick { width: 72px; height: 72px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin: 0 auto 16px; animation: pop .5s var(--ease); }
.done .tick svg { width: 36px; height: 36px; }
@keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: none; opacity: 1; } }
.done h3 { font-size: 1.6rem; margin-bottom: 8px; }
.done p { color: var(--ink-2); max-width: 46ch; margin: 0 auto; }
.done .btn { margin-top: 18px; }

/* Footer */
footer { padding: 36px 0 44px; color: var(--muted); font-size: .9rem; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: space-between; }
footer a { color: inherit; }
footer nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* Language hint */
.hint { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 30; background: var(--ink); color: #fff; border-radius: 16px; padding: 12px 14px; display: none; align-items: center; gap: 12px; box-shadow: 0 20px 40px -20px rgba(0,0,0,.6); font-size: .95rem; }
.hint.show { display: flex; }
.hint a { color: #fff; font-weight: 700; }
.hint button { margin-left: auto; background: transparent; border: 0; color: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer; width: 44px; height: 44px; margin-top: -8px; margin-bottom: -8px; margin-right: -8px; border-radius: 12px; display: grid; place-items: center; }
@media (min-width: 640px) { .hint { left: auto; max-width: 420px; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Legal pages */
.legal { max-width: 720px; padding: 40px 0 60px; }
.legal h1 { font-size: clamp(1.9rem, 5vw, 2.6rem); margin-bottom: 6px; }
.legal h2 { font-size: 1.3rem; margin: 28px 0 8px; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { padding-left: 20px; }
