/* EasySoftApp — main stylesheet. Hand-written, no framework. */

/* ---------- Fonts (self-hosted, latin + latin-ext) ---------- */
@font-face { font-family: "Bricolage"; src: url(../fonts/bricolage-800.woff2) format("woff2"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Bricolage"; src: url(../fonts/bricolage-600.woff2) format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Instrument"; src: url(../fonts/instrument-400.woff2) format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Instrument"; src: url(../fonts/instrument-500.woff2) format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Instrument"; src: url(../fonts/instrument-600.woff2) format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "JetBrains"; src: url(../fonts/jetbrains-500.woff2) format("woff2"); font-weight: 500; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
	--ink: #111315;
	--ink-2: #1d2024;
	--paper: #f5f3ee;
	--paper-2: #ece8df;
	--card: #fffdf9;
	--line: #dcd6ca;
	--muted: #595e66;
	--accent: #e8552d;
	--accent-ink: #b33c18;
	--green: #1f4d45;
	--green-2: #2b6a5f;
	--radius: 14px;
	--radius-lg: 22px;
	--shadow: 0 1px 2px rgba(17, 19, 21, .05), 0 8px 30px rgba(17, 19, 21, .07);
	--font-display: "Bricolage", "Segoe UI", system-ui, sans-serif;
	--font-body: "Instrument", -apple-system, "Segoe UI", system-ui, sans-serif;
	--font-mono: "JetBrains", ui-monospace, "Cascadia Code", Consolas, monospace;
	--container: 1200px;
	--gutter: clamp(16px, 4vw, 32px);
	--section: clamp(64px, 9vw, 120px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 17px/1.65 var(--font-body); text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -.025em; margin: 0 0 .5em; text-wrap: balance; }
h3 { font-weight: 600; letter-spacing: -.015em; line-height: 1.2; }
p { margin: 0 0 1em; text-wrap: pretty; }
code { font-family: var(--font-mono); font-size: .88em; }
.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; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 8px; z-index: 100; }
.skip-link:focus { top: 12px; color: var(--paper); }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 780px; }
.section { padding-block: var(--section); }
.h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.eyebrow { font: 500 12.5px/1.4 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; display: inline-flex; align-items: center; gap: 8px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(232, 85, 45, .18); }
.icon { flex: none; }
.rounded { border-radius: var(--radius-lg); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1.5px solid transparent; border-radius: 999px; padding: 11px 20px; font: 600 15px/1.2 var(--font-body); text-decoration: none; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s; white-space: nowrap; }
.btn .icon { width: 18px; height: 18px; transition: transform .2s; }
.btn:hover .icon-arrow { transform: translateX(3px); }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); color: var(--ink); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--accent); color: var(--ink); }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; text-decoration: none; }
.link-arrow .icon { width: 18px; height: 18px; transition: transform .2s; }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(245, 243, 238, .86); backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s; }
.site-header.is-scrolled { border-bottom-color: var(--line); }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.header-inner { display: flex; align-items: center; gap: 28px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark { color: var(--ink); display: inline-flex; }
.brand-word { font: 800 21px/1 var(--font-display); letter-spacing: -.03em; }
.brand-word b { color: var(--accent); font-weight: 800; }
.brand-logo { max-height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.nav-list a { display: block; padding: 8px 12px; border-radius: 999px; text-decoration: none; font-weight: 500; font-size: 15.5px; }
.nav-list a:hover, .nav-list .current-menu-item > a, .nav-list .current_page_item > a { background: var(--paper-2); color: var(--ink); }
.nav-list .sub-menu { display: none; }
.header-tools { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); cursor: pointer; }
.cart-link { position: relative; display: inline-flex; padding: 8px; color: var(--ink); }
.cart-count { position: absolute; top: 2px; right: 0; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--accent); color: var(--ink); font: 600 11px/18px var(--font-body); text-align: center; }

/* Language switcher (EN live, others soon) */
.lang { position: relative; }
.lang-current { display: inline-flex; align-items: center; gap: 6px; background: none; border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; font: 600 13px/1 var(--font-body); color: var(--ink); cursor: pointer; }
.lang-current svg { border-radius: 2px; }
.lang-menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 180px; list-style: none; margin: 0; padding: 6px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); display: none; }
.lang.is-open .lang-menu { display: block; }
.lang-menu span { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; font-size: 14px; }
.lang-menu svg { border-radius: 2px; }
.lang-menu .is-active { background: var(--paper-2); font-weight: 600; }
.lang-menu .is-soon { color: var(--muted); cursor: not-allowed; }
.lang-menu .is-soon svg { filter: grayscale(1); opacity: .55; }
.lang-menu em { margin-left: auto; font: 500 10.5px/1 var(--font-mono); font-style: normal; text-transform: uppercase; letter-spacing: .06em; background: var(--paper-2); padding: 4px 6px; border-radius: 6px; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(40px, 7vw, 96px) clamp(56px, 8vw, 110px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-title { font-size: clamp(2.4rem, 5vw, 4.1rem); margin-bottom: 22px; }
.hero-lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 36em; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; margin: 0; padding: 0; font-size: 15px; color: var(--muted); }
.hero-points li { display: inline-flex; align-items: center; gap: 6px; }
.hero-points .icon { width: 18px; height: 18px; color: var(--green-2); }
.hero-visual { position: relative; }
.hero-img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; border-radius: var(--radius-lg); }
.score-card { position: absolute; left: -28px; bottom: -28px; background: var(--card); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 16px 18px; width: min(320px, 88%); }
.score-label { font: 500 11.5px/1.3 var(--font-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.scores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; list-style: none; margin: 0 0 12px; padding: 0; text-align: center; }
.scores li { position: relative; display: grid; justify-items: center; gap: 2px; }
.scores .ring { width: 54px; height: 54px; border-radius: 50%; background: conic-gradient(#1a9a5a calc(var(--v) * 1%), var(--paper-2) 0); -webkit-mask: radial-gradient(circle 21px, transparent 98%, #000 100%); mask: radial-gradient(circle 21px, transparent 98%, #000 100%); }
.scores b { position: absolute; top: 15px; font: 800 16px/1.5 var(--font-display); }
.scores small { font-size: 12px; color: var(--muted); }
.score-foot { display: flex; gap: 8px; margin: 0; }
.score-foot code { background: var(--paper-2); border-radius: 6px; padding: 3px 7px; font-size: 12px; }

/* ---------- Services ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head-row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.section-sub { color: var(--muted); max-width: 40em; margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.service { padding: 28px 24px 8px 0; position: relative; }
.service + .service { padding-left: 24px; border-left: 1px solid var(--line); }
.service-num { font: 500 12px/1 var(--font-mono); color: var(--muted); display: block; margin-bottom: 26px; }
.service .icon { width: 30px; height: 30px; color: var(--accent); margin-bottom: 16px; }
.service h3 { font-size: 1.28rem; }
.service p { color: var(--muted); font-size: 15.5px; }
.service ul { list-style: none; margin: 0; padding: 0; font-size: 14.5px; }
.service li { padding: 7px 0; border-top: 1px dashed var(--line); }

/* ---------- Split ---------- */
.split { background: var(--card); border-block: 1px solid var(--line); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.split-media { margin: 0; }
.split-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.split-copy p { color: var(--muted); font-size: 17.5px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0 0; }
.facts div { border-top: 2px solid var(--ink); padding-top: 12px; }
.facts dt { font: 800 1.7rem/1.1 var(--font-display); letter-spacing: -.02em; }
.facts dd { margin: 4px 0 0; color: var(--muted); font-size: 14px; }

/* ---------- Cards / products ---------- */
.product-group + .product-group { margin-top: clamp(56px, 8vw, 96px); }
ul.products, .post-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-media { display: block; aspect-ratio: 16 / 10; background: var(--paper-2); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 1.3rem; margin-bottom: 8px; }
.card-title a { text-decoration: none; }
.card-text { color: var(--muted); font-size: 15px; }
.card-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.price { font: 800 1.15rem/1 var(--font-display); }
.price del { opacity: .5; font-weight: 600; margin-right: 6px; }
.price ins { text-decoration: none; }
.empty-state { border: 1.5px dashed var(--line); border-radius: var(--radius-lg); padding: 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; background: rgba(255, 253, 249, .6); }
.empty-state p { margin: 0; max-width: 46em; }

/* ---------- Process ---------- */
.process { background: var(--paper-2); }
.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.process-intro { position: sticky; top: 110px; }
.process-media { margin: 28px 0 0; }
.process-media img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; }
.step { display: grid; grid-template-columns: 70px 1fr; gap: 12px; padding: 28px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num { font: 800 2.2rem/1 var(--font-display); color: var(--accent); letter-spacing: -.04em; }
.step h3 { font-size: 1.35rem; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Tech marquee ---------- */
.stack { background: var(--ink); color: var(--paper); padding-block: 22px; overflow: hidden; }
.marquee { display: flex; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 48px; flex: none; animation: marquee 40s linear infinite; padding-right: 48px; }
.marquee-track span { font: 600 1.25rem/1 var(--font-display); white-space: nowrap; display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green); color: var(--paper); padding-block: clamp(56px, 8vw, 96px); }
.cta-grid { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-band .h2 { max-width: 16em; }
.cta-band p { opacity: .82; max-width: 38em; margin: 0; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-outline-light { border-color: rgba(245, 243, 238, .55); color: var(--paper); }
.btn-outline-light:hover { background: var(--paper); color: var(--ink); }

/* ---------- Pages & prose ---------- */
.page-hero { padding-block: clamp(48px, 8vw, 104px) clamp(28px, 4vw, 48px); }
.page-title { font-size: clamp(2.3rem, 5vw, 4rem); }
.page-lead { font-size: 1.2rem; color: var(--muted); }
.page-search { margin-top: 20px; }
.prose { font-size: 18px; padding-bottom: var(--section); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 1.8em; }
.prose h3 { font-size: 1.35rem; margin-top: 1.6em; }
.prose a { color: var(--accent-ink); }
.prose img { border-radius: var(--radius); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .35em; }
.prose blockquote { margin: 1.6em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--accent); font-size: 1.15em; }
.prose pre { background: var(--ink); color: #e9e6df; padding: 18px; border-radius: var(--radius); overflow-x: auto; font-size: 14px; }
.prose table { width: 100%; border-collapse: collapse; font-size: 16px; }
.prose th, .prose td { border-bottom: 1px solid var(--line); padding: 10px 8px; text-align: left; }
.prose .alignwide { margin-inline: calc(-1 * min(120px, 8vw)); }
.prose .alignfull { margin-inline: calc(50% - 50vw); max-width: 100vw; }
.article-cover { margin: 0 auto 40px; }
.article-cover img { border-radius: var(--radius-lg); width: 100%; }
.post-nav { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid var(--line); font-weight: 600; }
.pagination { margin: 40px 0 var(--section); }
.pagination .nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.pagination .page-numbers { padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; }
.pagination .current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.post-grid { padding-bottom: var(--section); }

/* ---------- FAQ ---------- */
.faq { margin-block: 8px var(--section); }
.faq h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 18px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; font: 600 1.12rem/1.35 var(--font-display); position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font: 400 28px/1 var(--font-body); color: var(--accent); transition: transform .2s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 0 20px; color: var(--muted); }
.faq-answer p:last-child { margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.contact-intro .prose { padding-bottom: 12px; font-size: 17px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 28px; }
.contact-list li { display: flex; gap: 10px; align-items: center; padding: 10px 0; border-top: 1px solid var(--line); font-weight: 600; }
.contact-list .icon { color: var(--accent); width: 20px; height: 20px; }
.contact-media { margin: 0; }
.contact-media img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.contact-form-wrap { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 36px); box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; font-weight: 600; font-size: 14.5px; }
input[type=text], input[type=email], input[type=search], input[type=tel], input[type=url], input[type=number], input[type=password], select, textarea {
	width: 100%; font: 400 16px/1.4 var(--font-body); color: var(--ink); background: var(--paper); border: 1.5px solid var(--line); border-radius: 10px; padding: 11px 13px; transition: border-color .2s, background .2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ink); background: #fff; }
.field-check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.field-check input { margin-top: 4px; accent-color: var(--accent); }
.hp { position: absolute !important; left: -9999px; }
.form-note { padding: 12px 14px; border-radius: 10px; margin: 0; font-weight: 600; }
.form-note.is-ok { background: #e3f3ea; color: #145c38; }
.form-note.is-error { background: #fde8e3; color: #8f2a12; }
.search-form { display: flex; gap: 8px; max-width: 520px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c9c5bc; padding-block: clamp(56px, 7vw, 88px) 28px; font-size: 15px; }
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.brand-light { color: var(--paper); }
.brand-light .brand-word { color: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid #2c3035; }
.footer-brand p { max-width: 30em; margin-top: 16px; }
.footer-mail { font-weight: 600; }
.footer-title { font: 500 12px/1 var(--font-mono); text-transform: uppercase; letter-spacing: .08em; color: #8d9098; margin-bottom: 16px; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-size: 13.5px; color: #8d9098; }
.footer-bottom p { margin: 0; }

/* ---------- Consent banner ---------- */
.consent { position: fixed; z-index: 90; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); max-width: 560px; margin-inline: auto; background: var(--ink); color: var(--paper); border-radius: 18px; padding: 18px 20px; box-shadow: 0 18px 50px rgba(0, 0, 0, .3); display: grid; gap: 14px; }
.consent p { margin: 0; font-size: 14.5px; }
.consent a { color: var(--paper); }
.consent-actions { display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; }
.consent .btn-ghost { border-color: #4a4e55; color: var(--paper); }
.consent .btn-ghost:hover { background: #2c3035; }
.consent .btn-primary { background: var(--accent); color: var(--ink); }
.consent .btn-primary:hover { background: var(--paper); }

/* ---------- WooCommerce ---------- */
.shop { padding-block: clamp(32px, 5vw, 64px) var(--section); }
.crumbs { font-size: 14px; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.crumbs a { text-decoration: none; }
.woocommerce-products-header__title { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
.term-description { color: var(--muted); max-width: 44em; margin-bottom: 20px; }
.woocommerce-result-count { color: var(--muted); font-size: 14px; float: left; margin: 10px 0 24px; }
.woocommerce-ordering { float: right; margin-bottom: 24px; }
.woocommerce-ordering select { width: auto; }
ul.products { clear: both; }
.woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { list-style: none; background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--green-2); border-radius: 12px; padding: 14px 18px; margin: 0 0 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.woocommerce-error { border-left-color: var(--accent); }
.woocommerce-message .button, .woocommerce-info .button { order: 2; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .single_add_to_cart_button, .wc-forward { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--ink); color: var(--paper) !important; border: 0; border-radius: 999px; padding: 13px 24px; font: 600 15.5px/1.2 var(--font-body); text-decoration: none; cursor: pointer; transition: background .2s, color .2s; }
.woocommerce a.button:hover, .woocommerce button.button:hover, .single_add_to_cart_button:hover { background: var(--accent); color: var(--ink) !important; }
.product.type-product .product-top, div.product { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
div.product .woocommerce-product-gallery { position: relative; opacity: 1 !important; }
div.product .woocommerce-product-gallery img { border-radius: var(--radius-lg); width: 100%; }
div.product .woocommerce-product-gallery__wrapper { margin: 0; }
div.product .flex-control-thumbs { list-style: none; padding: 0; margin: 12px 0 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
div.product .flex-control-thumbs img { border-radius: 10px; cursor: pointer; opacity: .6; }
div.product .flex-control-thumbs img.flex-active { opacity: 1; }
div.product .summary .product_title { font-size: clamp(2rem, 4vw, 3rem); }
div.product .summary .price { font-size: 1.8rem; display: block; margin: 8px 0 18px; }
div.product .woocommerce-product-details__short-description { color: var(--muted); font-size: 17px; }
div.product form.cart { display: flex; gap: 10px; align-items: center; margin: 22px 0; flex-wrap: wrap; }
div.product form.cart .quantity input { width: 76px; text-align: center; }
.product-perks { list-style: none; padding: 16px 0 0; margin: 8px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; font-size: 15px; }
.product-perks li { display: flex; gap: 10px; align-items: center; }
.product-perks .icon { width: 20px; height: 20px; color: var(--green-2); }
.product_meta { font-size: 14px; color: var(--muted); margin-top: 18px; display: grid; gap: 4px; }
.woocommerce-tabs, .product-faq, .related, .upsells { grid-column: 1 / -1; }
.woocommerce-tabs { margin-top: 32px; }
.woocommerce-tabs ul.tabs { list-style: none; display: flex; gap: 6px; padding: 0; margin: 0 0 20px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.woocommerce-tabs ul.tabs li a { display: block; padding: 12px 16px; text-decoration: none; font-weight: 600; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.woocommerce-tabs ul.tabs li.active a { border-bottom-color: var(--accent); }
.woocommerce-Tabs-panel { max-width: 820px; font-size: 17px; }
.woocommerce-Tabs-panel h2:first-child { display: none; }
.related > h2, .upsells > h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 48px 0 24px; }
.onsale { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--accent); color: var(--ink); font-weight: 700; font-size: 13px; padding: 4px 10px; border-radius: 999px; }
.woocommerce-cart .shop, .woocommerce-checkout .shop, .woocommerce-account .shop { max-width: 100%; }
.wc-block-components-button:not(.is-link) { border-radius: 999px !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
	.service-grid { grid-template-columns: repeat(2, 1fr); }
	.service:nth-child(3) { padding-left: 0; border-left: 0; }
	.service:nth-child(n+3) { border-top: 1px solid var(--line); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
	.nav-toggle { display: inline-flex; }
	.nav { position: fixed; inset: 72px 0 auto 0; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 12px; padding: 16px var(--gutter) 24px; margin: 0; display: none; max-height: calc(100vh - 72px); overflow-y: auto; }
	.admin-bar .nav { inset-block-start: 118px; }
	.nav.is-open { display: flex; }
	.nav-list { flex-direction: column; }
	.nav-list a { padding: 12px 8px; border-radius: 10px; font-size: 17px; }
	.header-tools { margin-left: auto; }
	.hero-grid, .split-grid, .process-grid, .contact-grid, div.product { grid-template-columns: 1fr; }
	.hero-visual { margin-inline: 12px; }
	.score-card { left: -12px; bottom: -24px; }
	.process-intro { position: static; }
	ul.products, .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	body { font-size: 16.5px; }
	.service-grid { grid-template-columns: 1fr; }
	.service, .service + .service { padding-left: 0; border-left: 0; }
	.service + .service { border-top: 1px solid var(--line); }
	.facts { grid-template-columns: 1fr 1fr; }
	ul.products, .post-grid { grid-template-columns: 1fr; }
	.field-row { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.lang-current span { display: none; }
	.hero-actions .btn { width: 100%; }
	.cta-band .btn { width: 100%; }
	.step { grid-template-columns: 52px 1fr; }
}

/* ---------- Plan cards (variable license products) ---------- */
.plan-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0 8px; }
.plan-card { position: relative; display: grid; gap: 4px; text-align: left; background: var(--card); border: 1.5px solid var(--line); border-radius: 16px; padding: 16px 14px 14px; cursor: pointer; font: inherit; color: var(--ink); transition: border-color .2s, box-shadow .2s, transform .2s; }
.plan-card:hover { border-color: var(--ink); }
.plan-card.is-selected { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232, 85, 45, .15); }
.plan-name { font: 600 1.05rem/1.2 var(--font-display); }
.plan-price { font: 800 1.35rem/1.2 var(--font-display); }
.plan-price del { font-size: .8em; opacity: .5; font-weight: 600; margin-right: 4px; }
.plan-price ins { text-decoration: none; }
.plan-sites { font-size: 13.5px; color: var(--muted); }
.plan-desc { font-size: 13px; color: var(--muted); }
.plan-badge { position: absolute; top: -10px; left: 12px; background: var(--ink); color: var(--paper); font: 500 10.5px/1 var(--font-mono); letter-spacing: .06em; text-transform: uppercase; padding: 5px 8px; border-radius: 999px; }
.plan-note { font-size: 13px; color: var(--muted); margin: 0 0 6px; }
.variations_form.has-plan-cards .variations, .variations_form.has-plan-cards .woocommerce-variation-price { display: none; }
.variations_form .reset_variations { display: none !important; }
@media (max-width: 600px) { .plan-cards { grid-template-columns: 1fr; } }
