:root {
    --ink: #102a25;
    --muted: #62736f;
    --green-950: #062b25;
    --green-900: #0a3a31;
    --green-800: #0d5143;
    --green-700: #14705b;
    --green-600: #16866a;
    --green-100: #dff2eb;
    --cream: #f7f4ed;
    --paper: #fff;
    --line: #dce5e1;
    --orange: #f2a84b;
    --shadow: 0 20px 60px rgba(10, 50, 42, .11);
    --radius: 20px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: "Manrope", sans-serif; line-height: 1.15; letter-spacing: -.035em; }
p { margin: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.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: fixed; top: -60px; left: 20px; z-index: 999; padding: 12px 18px; background: white; border-radius: 8px; }
.skip-link:focus { top: 20px; }
.section { padding: 62px 0; }

.site-header { position: sticky; top: 0; z-index: 50; height: 76px; background: rgba(255,255,255,.92); border-bottom: 1px solid rgba(220,229,225,.85); backdrop-filter: blur(16px); }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--green-950); font: 800 21px/1 "Manrope", sans-serif; letter-spacing: -.05em; }
.brand > span:last-child > span { color: var(--green-600); }
.brand-mark { display: grid; place-items: center; width: 35px; height: 35px; color: white; background: var(--green-800); border-radius: 10px; transform: rotate(-3deg); }
.brand-mark svg { width: 20px; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-nav a { color: #3d504c; font-size: 14px; font-weight: 600; transition: color .2s; }
.desktop-nav a:hover { color: var(--green-600); }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.btn { min-height: 44px; padding: 0 19px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 11px; font-weight: 700; font-size: 14px; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 17px; }
.btn-primary { color: white; background: var(--green-800); box-shadow: 0 7px 18px rgba(13,81,67,.2); }
.btn-primary:hover { background: var(--green-700); box-shadow: 0 10px 25px rgba(13,81,67,.25); }
.btn-ghost { color: var(--green-900); background: transparent; }
.btn-light { color: var(--green-950); background: white; }
.btn-accent { color: var(--green-950); background: var(--orange); }
.btn-large { width: 100%; min-height: 56px; font-size: 16px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; color: var(--ink); background: transparent; }
.mobile-nav { display: none; padding-block: 14px; background: white; }
.account-link { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; }
.avatar { width: 36px; height: 36px; display: grid; place-items: center; color: white; background: var(--green-700); border-radius: 50%; }

.hero { position: relative; min-height: 625px; padding: 20px 0 45px; overflow: hidden; background: linear-gradient(125deg, #f8f6ef 10%, #edf6f0 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .32; background-image: radial-gradient(#89a79e 1px, transparent 1px); background-size: 26px 26px; mask-image: linear-gradient(90deg, transparent 30%, black); }
.hero-glow { position: absolute; width: 600px; height: 600px; right: -150px; top: -150px; background: rgba(87,178,148,.17); border-radius: 50%; filter: blur(10px); }
.hero-grid { position: relative; display: grid; grid-template-columns: .98fr 1.02fr; align-items: center; gap: 70px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--green-700); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: var(--orange); }
.hero h1 { max-width: 630px; margin-top: 0; font-size: clamp(45px, 5.2vw, 70px); color: var(--green-950); }
.hero h1 em { color: var(--green-600); font-style: normal; }
.hero-copy .eyebrow { margin-top: 22px; }
.hero-copy > p { max-width: 590px; margin-top: 24px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-search { height: 62px; max-width: 580px; margin-top: 32px; padding: 6px 6px 6px 18px; display: flex; align-items: center; gap: 11px; background: white; border: 1px solid #d5e0db; border-radius: 14px; box-shadow: 0 14px 35px rgba(21,73,61,.1); }
.hero-search svg { flex: 0 0 20px; color: #7f918c; }
.hero-search input { min-width: 0; flex: 1; height: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; }
.hero-search button { align-self: stretch; padding: 0 24px; color: white; background: var(--green-800); border: 0; border-radius: 10px; font-weight: 700; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 25px; color: #62736f; font-size: 12px; font-weight: 600; }
.trust-row span { display: flex; align-items: center; gap: 6px; }
.trust-row svg { width: 15px; color: var(--green-600); }

.hero-visual { position: relative; min-height: 490px; }
.visual-orbit { position: absolute; border: 1px solid rgba(36,128,104,.18); border-radius: 50%; }
.orbit-one { width: 470px; height: 470px; top: 0; right: -20px; }
.orbit-two { width: 340px; height: 340px; top: 60px; right: 45px; }
.showcase-shell { position: absolute; z-index: 2; top: 50%; right: 0; width: min(100%, 555px); padding: 0 18px 18px; overflow: hidden; background: rgba(255,255,255,.92); border: 7px solid white; border-radius: 22px; box-shadow: 0 35px 80px rgba(7,55,45,.2); transform: translateY(-57%) rotate(1.2deg); backdrop-filter: blur(12px); }
.showcase-head { height: 54px; display: flex; align-items: center; justify-content: space-between; color: #82948f; }
.showcase-head > div { display: flex; gap: 6px; }
.showcase-head > div span { width: 7px; height: 7px; background: #cad8d3; border-radius: 50%; }
.showcase-head b { font-size: 9px; letter-spacing: .16em; }
.showcase-head > svg { width: 16px; color: var(--orange); }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.showcase-card { position: relative; min-width: 0; min-height: 305px; padding: 14px; display: flex; flex-direction: column; border-radius: 15px; transition: transform .25s; }
.showcase-card:hover { transform: translateY(-5px); }
.showcase-gis { color: #126a57; background: linear-gradient(155deg, #e0f3ec, #c1e3d7); }
.showcase-book { color: #9b5a18; background: linear-gradient(155deg, #fff1dc, #f4d5a5); }
.showcase-excel { color: #4b5f8b; background: linear-gradient(155deg, #e9edf7, #cbd5e9); }
.showcase-icon { width: 47px; height: 47px; display: grid; place-items: center; background: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.9); border-radius: 13px; box-shadow: 0 8px 20px rgba(30,70,61,.08); }
.showcase-icon svg { width: 24px; height: 24px; stroke-width: 1.8; }
.showcase-preview { height: 92px; margin: 18px 0; overflow: hidden; background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.75); border-radius: 10px; }
.map-preview { display: grid; place-items: center; }
.map-preview svg { width: 90%; }
.map-preview path { fill: rgba(50,154,126,.28); stroke: currentColor; stroke-width: 3; stroke-linejoin: round; }
.map-preview circle { fill: var(--orange); stroke: white; stroke-width: 3; }
.book-preview { padding: 15px 13px; display: grid; align-content: center; gap: 8px; }
.book-preview span { display: block; height: 5px; background: rgba(151,91,27,.21); border-radius: 5px; }
.book-preview span:nth-child(2) { width: 72%; }
.book-preview span:nth-child(3) { width: 88%; }
.book-preview span:nth-child(4) { width: 55%; }
.sheet-preview { padding: 10px; display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); gap: 4px; }
.sheet-preview span { background: rgba(77,98,143,.16); border: 1px solid rgba(77,98,143,.14); border-radius: 3px; }
.sheet-preview span:first-child { grid-column: 1/-1; background: rgba(77,98,143,.34); }
.showcase-label b, .showcase-label small { display: block; }
.showcase-label b { color: currentColor; font: 800 13px/1.2 "Manrope", sans-serif; }
.showcase-label small { min-height: 28px; margin-top: 5px; color: rgba(25,50,45,.58); font-size: 9px; }
.showcase-format { margin-top: auto; padding-top: 10px; border-top: 1px solid currentColor; opacity: .72; font-size: 7px; font-weight: 800; letter-spacing: .08em; }
.showcase-foot { height: 45px; padding-top: 15px; display: flex; align-items: center; justify-content: space-between; color: #657b75; font-size: 9px; font-weight: 700; }
.showcase-foot span { display: flex; align-items: center; gap: 5px; }
.showcase-foot svg { width: 13px; color: var(--green-600); }
.map-card { position: absolute; top: 45px; right: 0; width: min(100%, 510px); overflow: hidden; background: #f7fbf8; border: 8px solid white; border-radius: 22px; box-shadow: 0 35px 80px rgba(7,55,45,.22); transform: rotate(2deg); }
.map-toolbar { height: 36px; padding: 0 13px; display: flex; align-items: center; gap: 6px; background: white; border-bottom: 1px solid var(--line); }
.map-toolbar span { width: 7px; height: 7px; background: #cad8d3; border-radius: 50%; }
.map-toolbar b { margin-left: auto; color: #7b8e89; font-size: 8px; letter-spacing: .18em; }
.map-card svg { display: block; width: 100%; }
.map-legend { height: 46px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; background: white; font-size: 10px; }
.map-legend span { display: flex; align-items: center; gap: 7px; color: var(--muted); }
.map-legend i { width: 8px; height: 8px; background: var(--green-600); border-radius: 2px; }
.floating-card { position: absolute; z-index: 2; min-width: 210px; padding: 13px; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.96); border: 1px solid rgba(220,229,225,.9); border-radius: 13px; box-shadow: 0 15px 40px rgba(9,52,43,.18); }
.floating-card b, .floating-card small { display: block; }
.floating-card b { font: 700 11px "Manrope", sans-serif; }
.floating-card small { margin-top: 2px; color: #7b8e89; font-size: 9px; }
.floating-card > svg { width: 16px; margin-left: auto; color: var(--green-600); }
.mini-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 9px; }
.mini-icon svg { width: 18px; }
.mini-icon.orange { color: #a45c14; background: #fff0dc; }
.mini-icon.mint { color: var(--green-700); background: var(--green-100); }
.sheet-float { left: 0; bottom: 50px; }
.book-float { right: -25px; top: 10px; min-width: 175px; }

.section-heading { max-width: 630px; }
.section-heading.centered { margin: 0 auto 48px; text-align: center; }
.section-heading h2 { margin-top: 12px; font-size: clamp(31px, 4vw, 45px); }
.section-heading p { margin-top: 16px; color: var(--muted); font-size: 16px; }
.section-heading.split { max-width: none; margin-bottom: 38px; display: flex; align-items: end; justify-content: space-between; }
.categories { padding-top: 32px; padding-bottom: 46px; }
.categories .section-heading.centered { margin-bottom: 30px; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.category-card { position: relative; min-height: 245px; padding: 30px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s, box-shadow .25s; }
.category-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -65px; bottom: -80px; border: 30px solid rgba(255,255,255,.5); border-radius: 50%; }
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-map { background: #e9f4ef; }
.cat-book { background: #fbf0df; }
.cat-sheet { background: #edf0f7; }
.dynamic-category { color: var(--cat-color); background: color-mix(in srgb, var(--cat-color) 13%, white); }
.dynamic-category h3 { color: var(--ink); }
.dynamic-category .category-icon { color: var(--cat-color); }
.dynamic-category .circle-arrow { color: var(--cat-color); }
.category-icon { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 15px; background: rgba(255,255,255,.75); box-shadow: 0 8px 20px rgba(27,70,61,.08); }
.cat-map .category-icon { color: var(--green-700); }
.cat-book .category-icon { color: #b56e1c; }
.cat-sheet .category-icon { color: #4f628e; }
.category-icon svg { width: 25px; }
.category-card div { margin-top: auto; }
.category-card h3 { font-size: 21px; }
.category-card p { max-width: 260px; margin-top: 8px; color: var(--muted); font-size: 14px; }
.circle-arrow { position: absolute; right: 23px; top: 23px; width: 37px; height: 37px; display: grid; place-items: center; background: rgba(255,255,255,.75); border-radius: 50%; }
.circle-arrow svg { width: 17px; }

.products-section { padding-top: 30px; padding-bottom: 46px; background: #fafbf9; }
.products-section .section-heading.split { margin-bottom: 24px; }
.search-result-count { margin-top: 8px !important; color: var(--green-700) !important; font-size: 12px !important; font-weight: 700; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.product-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 18px; transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-cover { position: relative; height: 190px; display: grid; place-items: center; overflow: hidden; }
.product-cover img, .detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.cover-map { background: linear-gradient(145deg, #d7eee4, #8ac8b2); }
.cover-book { background: linear-gradient(145deg, #f8e9cf, #eab972); }
.cover-sheet { background: linear-gradient(145deg, #e2e7f2, #aab7d5); }
.cover-art { width: 106px; height: 126px; padding: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px; color: white; background: rgba(8,64,52,.87); border: 2px solid rgba(255,255,255,.5); border-radius: 10px; box-shadow: 10px 12px 25px rgba(9,55,46,.2); transform: rotate(-4deg); }
.cover-book .cover-art { background: rgba(153,83,23,.84); }
.cover-sheet .cover-art { background: rgba(61,78,120,.85); }
.cover-art svg { width: 38px; height: 38px; }
.cover-art span { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; text-align: center; }
.badge { position: absolute; top: 14px; left: 14px; padding: 6px 10px; color: var(--green-950); background: #fff7df; border-radius: 20px; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-body { padding: 22px; }
.product-category { color: var(--green-600); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-body h3 { margin-top: 8px; font-size: 18px; }
.product-body h3 a:hover { color: var(--green-600); }
.product-body > p { min-height: 60px; margin-top: 10px; display: -webkit-box; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.product-detail-link { margin-top: 10px; display: inline-flex; align-items: center; gap: 3px; color: var(--green-700); font-size: 10px; font-weight: 800; }
.product-detail-link svg { width: 13px; }
.product-footer { margin-top: 22px; padding-top: 18px; display: flex; align-items: end; justify-content: space-between; border-top: 1px solid #edf1ef; }
.price del { display: block; color: #96a39f; font-size: 11px; }
.price strong { font: 800 18px "Manrope", sans-serif; }
.icon-button { width: 39px; height: 39px; display: grid; place-items: center; color: white; background: var(--green-800); border-radius: 10px; }
.icon-button svg { width: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--green-700); font-weight: 700; font-size: 14px; }
.text-link svg { width: 16px; }
.empty-state { padding: 65px 30px; text-align: center; background: white; border: 1px dashed #bdccc7; border-radius: var(--radius); }
.live-empty { margin-top: 20px; }
.empty-state > svg { width: 48px; height: 48px; color: var(--green-600); }
.empty-state h3 { margin-top: 15px; }
.empty-state p { margin: 8px 0 22px; color: var(--muted); }

.how-section { position: relative; padding-top: 38px; padding-bottom: 46px; color: white; background: var(--green-950); overflow: hidden; }
.how-section::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(#9fcec0 1px, transparent 1px); background-size: 24px 24px; }
.how-section .container { position: relative; }
.how-section .section-heading.centered { margin-bottom: 30px; }
.section-heading.light h2 { color: white; }
.section-heading.light .kicker { color: #81d0b7; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { position: relative; min-height: 220px; padding: 28px; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.step-card > span { position: absolute; right: 25px; top: 20px; color: rgba(255,255,255,.16); font: 800 48px "Manrope", sans-serif; }
.step-card > svg { width: 36px; height: 36px; color: var(--orange); }
.step-card h3 { margin-top: 30px; font-size: 20px; }
.step-card p { margin-top: 10px; color: #abc5bd; font-size: 14px; }

.faq-section { padding-top: 46px; padding-bottom: 48px; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 58px; align-items: start; }
.faq-section .text-link { margin-top: 28px; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { padding: 19px 5px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font: 700 16px "Manrope", sans-serif; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary svg { flex: 0 0 18px; color: var(--green-600); transition: transform .2s; }
.accordion details[open] summary svg { transform: rotate(45deg); }
.accordion details p { max-width: 650px; padding: 0 35px 19px 5px; color: var(--muted); font-size: 14px; }

.newsletter { padding: 0 0 48px; }
.newsletter-inner { padding: 34px 40px; display: flex; align-items: center; justify-content: space-between; gap: 28px; color: white; background: var(--green-800); border-radius: 24px; }
.newsletter .kicker { color: #92d7c2; }
.newsletter h2 { max-width: 500px; margin-top: 8px; font-size: 30px; }
.newsletter form { min-width: 440px; padding: 6px; display: flex; background: white; border-radius: 13px; }
.newsletter input { min-width: 0; flex: 1; padding: 0 14px; border: 0; outline: 0; }

.site-footer { padding-top: 46px; color: #c6d7d2; background: #041f1b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .65fr .75fr 1.1fr; gap: 40px; }
.brand-light { color: white; }
.footer-grid > div:first-child p { max-width: 290px; margin-top: 20px; color: #8ca9a1; font-size: 13px; }
.footer-grid h3 { margin-bottom: 19px; color: white; font-size: 13px; letter-spacing: .02em; }
.footer-grid > div > a:not(.brand):not(.btn) { display: block; margin: 10px 0; color: #8ca9a1; font-size: 13px; }
.footer-grid > div > a:hover { color: white; }
.footer-cta { padding: 24px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; }
.footer-cta p { margin: -10px 0 17px; color: #8ca9a1; font-size: 12px; }
.footer-cta .btn { min-height: 39px; }
.footer-bottom { margin-top: 38px; padding: 18px 0; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.08); color: #6e8b83; font-size: 11px; }

.breadcrumbs { margin-bottom: 35px; display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; }
.breadcrumbs svg { width: 13px; }
.breadcrumbs span { color: var(--ink); }
.detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: center; }
.detail-cover { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; border-radius: 24px; }
.detail-cover .cover-art.large { width: 245px; height: 300px; gap: 35px; }
.detail-cover .cover-art.large svg { width: 85px; height: 85px; }
.detail-info h1 { margin-top: 12px; font-size: clamp(35px, 5vw, 54px); }
.detail-lead { margin-top: 18px; color: var(--muted); font-size: 17px; }
.detail-price { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.detail-price strong { font: 800 31px "Manrope", sans-serif; }
.detail-price del { color: #94a29e; }
.detail-price span { padding: 5px 8px; color: #9c5a13; background: #fff0db; border-radius: 5px; font-size: 11px; font-weight: 800; }
.buy-panel { margin-top: 28px; padding: 20px; background: #f3f7f5; border: 1px solid var(--line); border-radius: 16px; }
.buy-panel p { margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--muted); font-size: 11px; }
.buy-panel p svg { width: 13px; }
.detail-benefits { margin-top: 25px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.detail-benefits > div { padding: 13px 9px; display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 10px; }
.detail-benefits svg { flex: 0 0 20px; color: var(--green-600); }
.detail-benefits b, .detail-benefits small { display: block; }
.detail-benefits b { font-size: 11px; }
.detail-benefits small { color: var(--muted); font-size: 9px; }
.description-card { margin-top: 58px; padding: 42px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 55px; background: var(--cream); border-radius: 22px; }
.description-card h2 { margin-top: 10px; font-size: 30px; }
.prose { color: #4e615c; line-height: 1.8; }

.toast { position: fixed; z-index: 100; right: 25px; top: 94px; max-width: 370px; padding: 13px 18px; display: flex; align-items: center; gap: 9px; color: white; background: var(--green-800); border-radius: 10px; box-shadow: var(--shadow); font-size: 13px; animation: toast-in .3s ease; }
.toast-error { background: #9b3434; }
.toast svg { width: 18px; }
@keyframes toast-in { from { transform: translateY(-10px); opacity: 0; } }

.auth-section { min-height: 680px; padding: 32px 20px 58px; display: grid; justify-items: center; align-items: start; background: linear-gradient(145deg, #eff6f2, #f9f5eb); }
.auth-card { width: min(100%, 480px); padding: 44px; background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.auth-brand { margin-bottom: 40px; }
.auth-card h1 { margin-top: 10px; font-size: 32px; }
.auth-card > p { margin: 10px 0 24px; color: var(--muted); font-size: 14px; }
.stack-form { display: grid; gap: 17px; }
.stack-form label, .form-grid label { display: grid; gap: 7px; color: #40534e; font-size: 12px; font-weight: 700; }
.stack-form input, .form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: white; border: 1px solid #cedad6; border-radius: 9px; outline: 0; transition: border .2s, box-shadow .2s; }
.stack-form input:focus, .form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(22,134,106,.1); }
.password-field { position: relative; display: block; }
.password-field input { padding-right: 46px; }
.password-toggle { position: absolute; right: 5px; top: 50%; width: 36px; height: 36px; padding: 0; display: grid; place-items: center; color: #71837e; background: transparent; border: 0; border-radius: 7px; transform: translateY(-50%); }
.password-toggle:hover { color: var(--green-700); background: #edf5f2; }
.password-toggle svg { width: 17px; }
.form-options { margin-top: -3px; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: 12px; }
.form-options > a { color: var(--green-700); font-weight: 700; }
.check-label { display: flex !important; grid-template-columns: auto 1fr; align-items: center; gap: 8px !important; cursor: pointer; font-weight: 500 !important; }
.check-label input { width: 15px; height: 15px; margin: 0; accent-color: var(--green-700); }
.form-alert { margin-bottom: 18px; padding: 12px 14px; display: flex; align-items: center; gap: 9px; color: #8e2f2f; background: #fff0f0; border: 1px solid #f1cdcd; border-radius: 9px; font-size: 12px; }
.form-alert svg { flex: 0 0 17px; }
.auth-switch { margin-top: 22px; padding-top: 20px; text-align: center; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.auth-switch a { color: var(--green-700); font-weight: 700; }
.auth-back { margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--muted); font-size: 12px; }
.auth-back svg { width: 14px; }
.auth-success-icon { width: 58px; height: 58px; margin-bottom: 20px; display: grid; place-items: center; color: var(--green-700); background: var(--green-100); border-radius: 16px; }
.auth-success-icon.invalid { color: #9a4a42; background: #fff0ef; }
.auth-success-icon svg { width: 27px; height: 27px; }
.local-reset { margin: 18px 0; padding: 15px; display: grid; gap: 8px; color: #4d625c; background: #f2f7f5; border: 1px dashed #aac8be; border-radius: 10px; font-size: 11px; }
.local-reset b { color: var(--green-700); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.local-reset .btn { margin-top: 4px; }
.btn-outline { color: var(--green-800); background: white; border: 1px solid #c8d6d1; }
.account-section { background: #f8faf8; }
.account-layout { display: grid; grid-template-columns: 290px 1fr; gap: 45px; align-items: start; }
.profile-card { padding: 30px; text-align: center; background: white; border: 1px solid var(--line); border-radius: 18px; }
.profile-avatar { width: 76px; height: 76px; margin: 0 auto 18px; display: grid; place-items: center; color: white; background: var(--green-700); border-radius: 50%; font: 800 27px "Manrope", sans-serif; }
.profile-card h1 { font-size: 20px; }
.profile-card > p { margin-top: 5px; color: var(--muted); font-size: 12px; }
.profile-meta { margin: 25px 0; padding: 16px 0; display: flex; justify-content: space-between; border-block: 1px solid var(--line); font-size: 11px; }
.profile-meta span { color: var(--muted); }
.profile-card .btn { width: 100%; margin-top: 9px; }
.account-content > h2 { margin-top: 9px; font-size: 35px; }
.account-content > p { margin-top: 8px; color: var(--muted); }
.order-list { margin-top: 30px; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 16px; }
.order-item { padding: 18px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); }
.order-item:last-child { border-bottom: 0; }
.order-icon { width: 40px; height: 40px; display: grid; place-items: center; color: var(--green-700); background: var(--green-100); border-radius: 9px; }
.order-icon svg { width: 18px; }
.order-item a { font-weight: 700; font-size: 13px; }
.order-item small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
.order-item strong { font-size: 13px; }
.status-pill { padding: 5px 9px; color: #885212; background: #fff0d8; border-radius: 20px; font-size: 9px; font-weight: 800; }
.empty-state.compact { margin-top: 30px; padding: 50px 20px; }
.legal-page { background: #fbfcfa; }
.legal-page > .container { max-width: 820px; }
.legal-page h1 { margin-top: 12px; font-size: 48px; }
.legal-lead { margin-top: 10px; color: var(--muted); }
.legal-content { margin-top: 45px; padding: 42px; background: white; border: 1px solid var(--line); border-radius: 18px; }
.legal-content h2 { margin: 28px 0 8px; color: var(--ink); font-size: 20px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content a { color: var(--green-700); font-weight: 700; }
.not-found { min-height: 590px; display: grid; place-items: center; text-align: center; background: linear-gradient(145deg, #eff6f2, #f9f5eb); }
.not-found span { color: var(--green-600); font: 800 95px/1 "Manrope", sans-serif; opacity: .25; }
.not-found h1 { margin-top: -15px; font-size: 42px; }
.not-found p { margin: 12px 0 25px; color: var(--muted); }
.category-hero { position: relative; padding: 48px 0 52px; overflow: hidden; background: color-mix(in srgb, var(--cat-color) 11%, #f9faf7); }
.category-hero::after { content: ""; position: absolute; width: 330px; height: 330px; right: 5%; top: -160px; border: 55px solid color-mix(in srgb, var(--cat-color) 13%, transparent); border-radius: 50%; }
.category-hero .container { position: relative; z-index: 1; }
.category-hero .breadcrumbs { margin-bottom: 28px; }
.category-page-icon { width: 52px; height: 52px; margin-bottom: 18px; display: grid; place-items: center; color: var(--cat-color); background: white; border: 1px solid color-mix(in srgb, var(--cat-color) 25%, white); border-radius: 14px; box-shadow: 0 10px 25px rgba(10,55,45,.08); }
.category-page-icon svg { width: 25px; }
.category-hero h1 { max-width: 780px; margin-top: 10px; font-size: clamp(38px, 5vw, 56px); }
.category-hero p { max-width: 750px; margin-top: 16px; color: var(--muted); font-size: 16px; }
.category-count { margin-top: 22px; display: inline-flex; padding: 6px 10px; color: var(--cat-color); background: white; border-radius: 20px; font-size: 10px; font-weight: 800; }
.category-products { padding-top: 46px; padding-bottom: 54px; }
.category-seo-copy { padding: 48px 0; background: var(--cream); }
.category-seo-copy .container { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.category-seo-copy h2 { margin-top: 9px; font-size: 32px; }
.category-seo-copy .prose p + p { margin-top: 14px; }
.forestry-hero { padding: 45px 0 52px; background: linear-gradient(130deg, #edf6f0, #d7ece2); }
.forestry-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.forestry-hero .breadcrumbs { margin-bottom: 30px; }
.forestry-hero h1 { max-width: 700px; margin-top: 11px; font-size: clamp(40px, 5vw, 58px); }
.forestry-hero p { max-width: 680px; margin: 18px 0 25px; color: var(--muted); font-size: 17px; }
.forestry-visual { position: relative; overflow: hidden; border: 8px solid white; border-radius: 22px; box-shadow: var(--shadow); }
.forestry-visual img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.forestry-visual span { position: absolute; padding: 8px 11px; display: flex; align-items: center; gap: 6px; color: var(--green-800); background: rgba(255,255,255,.92); border-radius: 9px; box-shadow: 0 8px 20px rgba(6,43,37,.12); font-size: 9px; font-weight: 800; }
.forestry-visual span:nth-of-type(1) { left: 16px; bottom: 16px; }
.forestry-visual span:nth-of-type(2) { right: 16px; top: 16px; }
.forestry-visual span svg { width: 14px; }
.forestry-intro { padding: 48px 0; }
.forestry-topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.forestry-topic-grid article { padding: 24px; background: #f8faf8; border: 1px solid var(--line); border-radius: 15px; }
.forestry-topic-grid article > svg { width: 27px; color: var(--green-600); }
.forestry-topic-grid h2 { margin-top: 25px; font-size: 17px; }
.forestry-topic-grid p { margin-top: 9px; color: var(--muted); font-size: 12px; }
.forestry-products { padding-top: 42px; padding-bottom: 50px; background: #fafbf9; }
.forestry-guide { padding: 48px 0; background: var(--green-950); color: white; }
.forestry-guide-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.forestry-guide h2 { margin-top: 9px; font-size: 32px; }
.forestry-guide .kicker { color: #81d0b7; }
.forestry-guide .prose { color: #b3cbc4; }
.forestry-guide .prose p + p { margin-top: 15px; }

@media (max-width: 960px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: grid; place-items: center; }
    .mobile-nav.open { display: grid; gap: 12px; box-shadow: 0 15px 20px rgba(0,0,0,.06); }
    .hero { padding-top: 24px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-copy > p, .hero-search { margin-inline: auto; }
    .trust-row { justify-content: center; }
    .hero-visual { width: min(100%, 600px); margin-inline: auto; }
    .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card { min-height: 220px; }
    .step-card h3 { margin-top: 38px; }
    .faq-grid { grid-template-columns: 1fr; gap: 45px; }
    .newsletter-inner { align-items: stretch; flex-direction: column; }
    .newsletter form { min-width: 0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-grid { gap: 38px; }
    .detail-cover { min-height: 430px; }
    .detail-benefits { grid-template-columns: 1fr; }
    .account-layout { grid-template-columns: 1fr; }
    .category-seo-copy .container { grid-template-columns: 1fr; gap: 25px; }
    .forestry-hero-grid { grid-template-columns: 1fr; gap: 35px; }
    .forestry-topic-grid { grid-template-columns: repeat(2, 1fr); }
    .forestry-guide-grid { grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 58px 0; }
    .desktop-only { display: none !important; }
    .nav-actions .btn-primary { padding: 0 13px; }
    .hero { min-height: auto; padding: 22px 0 50px; }
    .hero h1 { font-size: 42px; }
    .hero-copy > p { font-size: 16px; }
    .hero-search { height: 57px; padding-left: 14px; }
    .hero-search button { padding-inline: 17px; }
    .hero-visual { min-height: 380px; }
    .showcase-shell { right: 50%; width: 540px; max-width: 100%; transform: translate(50%, -55%) rotate(.5deg); }
    .showcase-card { min-height: 270px; padding: 11px; }
    .showcase-preview { height: 75px; margin: 13px 0; }
    .map-card { top: 45px; }
    .book-float { right: -8px; }
    .sheet-float { left: -6px; bottom: 4px; }
    .floating-card { min-width: 180px; }
    .category-grid, .product-grid { grid-template-columns: 1fr; }
    .section-heading.split { align-items: start; flex-direction: column; gap: 15px; }
    .product-cover { height: 210px; }
    .newsletter-inner { width: 100%; padding: 35px 22px; border-radius: 0; }
    .newsletter { padding-bottom: 0; }
    .newsletter form { flex-direction: column; background: transparent; gap: 8px; }
    .newsletter input { height: 48px; padding: 0 14px; background: white; border-radius: 10px; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-bottom { flex-direction: column; gap: 7px; }
    .detail-grid { grid-template-columns: 1fr; }
    .detail-cover { min-height: 390px; }
    .description-card { margin-top: 55px; padding: 28px; grid-template-columns: 1fr; gap: 25px; }
    .auth-card { padding: 30px 22px; }
    .forestry-topic-grid { grid-template-columns: 1fr; }
    .order-item { grid-template-columns: auto 1fr; }
    .order-item > strong, .order-item > .status-pill { margin-left: 54px; }
}
