:root {
    --ink: #0b2024;
    --text: #2d3738;
    --green: #496d5d;
    --blue: #2661aa;
    --paper: #fafafa;
    --line: #d9ddda;
    --page-pad: clamp(24px, 6.6vw, 112px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1456px, calc(100% - (2 * var(--page-pad)))); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
    position: relative;
    z-index: 20;
    height: 88px;
    background: rgba(250, 250, 249, .97);
    border-bottom: 1px solid #ececea;
}

.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: #242625; font-size: 36px; font-weight: 800; letter-spacing: -1.8px; }
.brand-mark { position: relative; width: 39px; height: 43px; display: block; background: linear-gradient(30deg, #252b2a 0 50%, transparent 51%); clip-path: polygon(50% 0, 100% 23%, 100% 74%, 50% 100%, 0 74%, 0 23%); }
.brand-mark::before { content: ""; position: absolute; inset: 0; background: #536f62; clip-path: polygon(50% 0, 100% 23%, 50% 46%); }
.brand-mark::after { content: ""; position: absolute; inset: 0; background: #738f80; clip-path: polygon(50% 46%, 100% 23%, 100% 74%, 50% 100%); }
.brand-mark i { position: absolute; z-index: 2; inset: 11px 12px 5px 15px; background: #f7faf8; clip-path: polygon(0 0, 100% 18%, 100% 100%, 0 78%); }

.main-nav { height: 100%; display: flex; align-items: stretch; gap: clamp(30px, 4vw, 62px); }
.main-nav a { position: relative; display: flex; align-items: center; color: #121717; font-size: 16px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--green); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }

.hero { min-height: 445px; display: grid; grid-template-columns: 38.2% 61.8%; overflow: hidden; background: #f7f6f3; }
.hero-copy { position: relative; z-index: 2; display: flex; justify-content: flex-end; padding-left: var(--page-pad); background: #f7f6f3; }
.hero-copy-inner { width: min(530px, 100%); padding: 53px 0 50px; }
.eyebrow { margin: 0 0 23px; color: var(--green); font-size: 15px; line-height: 1.4; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
h1 { margin: 0; color: var(--ink); font-size: clamp(39px, 3.2vw, 56px); line-height: 1.12; letter-spacing: -2.4px; font-weight: 800; }
.lead { max-width: 535px; margin: 27px 0 32px; font-size: 16px; line-height: 1.65; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 8px; border-bottom: 1px solid #7d948a; color: var(--green); font-size: 14px; font-weight: 800; letter-spacing: .2px; text-decoration: none; text-transform: uppercase; }
.text-link span { font-size: 27px; line-height: .5; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.hero-image { position: relative; overflow: hidden; background: #dbe3e3; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: #f7f6f3; clip-path: polygon(0 0, 35.8% 0, 0 100%); pointer-events: none; }
.hero-image img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }

.section { padding: 36px 0 29px; background: #fff; }
.discover-grid { display: grid; grid-template-columns: 1.08fr repeat(3, 1fr); gap: 34px; }
.discover-intro { padding-right: 26px; }
.discover-intro h2 { margin: 0 0 17px; color: var(--ink); font-size: 24px; line-height: 1.2; letter-spacing: -.6px; }
.short-rule { display: block; width: 30px; height: 1px; margin-bottom: 22px; background: #769384; }
.discover-intro p, .feature-card p { margin: 0; font-size: 13.5px; line-height: 1.65; }
.feature-card { min-height: 228px; padding: 14px 24px 18px; border: 1px solid #d7d9d7; border-radius: 5px; display: flex; flex-direction: column; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-3px); border-color: #9aaba3; box-shadow: 0 12px 28px rgba(25, 45, 38, .08); }
.icon { width: 58px; height: 58px; margin-bottom: 10px; border-radius: 13px; display: grid; place-items: center; background: #edf1ed; color: var(--green); font-size: 34px; line-height: 1; }
.icon-layers, .icon-info { background: #eef4fb; color: var(--blue); }
.icon-layers { font-weight: 500; transform: rotate(-8deg); }
.icon-info { font-family: Georgia, serif; font-size: 29px; border-radius: 14px; }
.feature-card h3 { margin: 0 0 8px; color: #101b1e; font-size: 16px; line-height: 1.3; }
.feature-card > a { margin-top: auto; align-self: flex-start; font-size: 29px; line-height: 1; text-decoration: none; }

.platform-strip { position: relative; min-height: 107px; overflow: hidden; background: linear-gradient(90deg, #edf1ed 0%, #f3f4ef 48%, #f7f7f3 100%); }
.platform-content { position: relative; z-index: 2; min-height: 107px; display: flex; align-items: center; gap: 16px; }
.platform-content p { width: 500px; margin: 0; font-size: 12.5px; line-height: 1.55; }
.platform-content strong { color: #152426; font-size: 14px; }
.shield { align-self: flex-start; margin-top: 29px; width: 21px; height: 24px; display: grid; place-items: center; border: 2px solid #527664; border-radius: 4px 4px 9px 9px; color: #527664; font-size: 10px; font-weight: 800; }
.sketch {
    position: absolute;
    inset: 0 0 0 47.2%;
    overflow: hidden;
    opacity: .43;
    -webkit-mask-image: linear-gradient(to right, transparent 0, rgba(0, 0, 0, .35) 8%, #000 20%);
    mask-image: linear-gradient(to right, transparent 0, rgba(0, 0, 0, .35) 8%, #000 20%);
}
.sketch img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: left center; }

/* Modeliavimo įrankių puslapis */
.tools-page { background: #fbfbfa; }
.tools-header .main-nav { gap: clamp(28px, 3.6vw, 58px); }
.breadcrumbs { height: 42px; border-bottom: 1px solid #e6e8e6; background: #fff; }
.breadcrumbs .container { height: 100%; display: flex; align-items: center; gap: 17px; color: #5b6363; font-size: 12px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs span[aria-hidden] { color: #8e9994; font-size: 21px; line-height: 1; }

.tools-intro { position: relative; height: 166px; overflow: hidden; background: #fff; }
.tools-intro-inner { position: relative; height: 100%; display: flex; align-items: center; }
.tools-intro-inner > div:first-child { position: relative; z-index: 2; width: 560px; }
.tools-intro h1 { margin: 0 0 12px; color: #101c27; font-size: 32px; line-height: 1.2; letter-spacing: -1px; }
.tools-intro p { max-width: 500px; margin: 0; font-size: 13.5px; line-height: 1.65; }
.intro-sketch { position: absolute; inset: 0 -20px 0 48%; opacity: .5; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 26%); mask-image: linear-gradient(to right, transparent 0, #000 26%); }
.intro-sketch img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: contrast(.92); }

.tools-catalog { padding-top: 0; }
.tools-catalog > h2, .tool-benefits > h2 { margin: 0 0 17px; color: #111d27; font-size: 20px; line-height: 1.2; letter-spacing: -.4px; }
.tool-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.tool-card { min-height: 268px; display: grid; grid-template-columns: 51.5% 48.5%; overflow: hidden; border: 1px solid #d9ddda; border-radius: 10px; background: #fff; box-shadow: 0 3px 10px rgba(25, 40, 35, .035); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.tool-card:hover { transform: translateY(-2px); border-color: #aebcb5; box-shadow: 0 13px 28px rgba(25, 40, 35, .08); }
.tool-visual { min-width: 0; overflow: hidden; background: #f8f9f7; }
.tool-visual img { width: 100%; height: 100%; object-fit: cover; }
.tool-details { display: flex; flex-direction: column; padding: 23px 29px 22px; }
.tool-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 12px; background: #edf2ee; color: var(--green); font-size: 35px; line-height: 1; }
.tool-details .icon-layers { transform: rotate(-7deg); }
.tool-details .icon-frame { font-family: Georgia, serif; font-size: 36px; font-weight: 400; }
.tool-details h3 { margin: 16px 0 10px; color: #111a21; font-size: 18px; line-height: 1.25; }
.tool-details p { margin: 0; font-size: 13px; line-height: 1.64; }
.tool-action { margin-top: auto; display: inline-flex; align-items: center; gap: 17px; align-self: flex-start; color: #315f50; font-size: 13px; font-weight: 700; cursor: default; text-decoration: none; user-select: none; }
.tool-action[href] { cursor: pointer; }
.tool-action[href] b { transition: transform .2s ease; }
.tool-action[href]:hover b { transform: translateX(5px); }
.tool-action b { font-size: 24px; font-weight: 400; line-height: .8; }

.tool-benefits { padding-top: 31px; padding-bottom: 24px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid #d9ddda; border-radius: 9px; background: #fff; }
.benefit-grid article { min-height: 100px; padding: 19px 28px 17px 15px; display: flex; align-items: flex-start; gap: 20px; border-right: 1px solid #e6e8e6; }
.benefit-grid article:last-child { border-right: 0; }
.benefit-icon { flex: 0 0 56px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 11px; background: #edf2ee; color: var(--green); font-size: 29px; line-height: 1; }
.cube-small { font-size: 34px; }
.benefit-grid h3 { margin: 0 0 8px; color: #132027; font-size: 13px; line-height: 1.3; }
.benefit-grid p { margin: 0; font-size: 12.5px; line-height: 1.65; }

.site-footer { border-top: 1px solid #e1e4e1; background: #fafafa; }
.footer-grid { min-height: 169px; display: grid; grid-template-columns: 1.1fr 1fr 1.15fr; gap: clamp(55px, 8vw, 140px); padding-top: 23px; padding-bottom: 22px; }
.footer-grid .brand { gap: 11px; margin-bottom: 12px; font-size: 29px; letter-spacing: -1.2px; }
.footer-grid .brand-mark { width: 31px; height: 35px; }
.footer-grid .brand-mark i { inset: 9px 9px 4px 12px; }
.footer-grid h2 { margin: 4px 0 13px; color: #101b22; font-size: 14px; line-height: 1.3; }
.footer-grid p { margin: 0; color: #606767; font-size: 11.5px; line-height: 1.7; }
.footer-brand-column p { max-width: 305px; }
.footer-grid address { display: flex; flex-direction: column; gap: 9px; margin-top: 10px; font-style: normal; }
.footer-grid address a { display: flex; align-items: center; gap: 11px; color: #132027; font-size: 12px; text-decoration: none; }
.footer-grid address a:hover { color: var(--green); }
.footer-bottom { height: 56px; border-top: 1px solid #e1e4e1; }
.footer-bottom .container { height: 100%; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; color: #6a7070; font-size: 11px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--green); }
.footer-bottom .container > :nth-child(2) { text-align: center; }
.footer-bottom .container > :last-child { text-align: right; }

/* Apie projektą */
.about-page { background: #fff; }
.about-main { background: #fff; }
.about-hero { height: 288px; display: grid; grid-template-columns: 42% 58%; border-bottom: 1px solid #e2e5e2; overflow: hidden; }
.about-hero-copy { position: relative; z-index: 2; padding-top: 27px; }
.about-hero h1 { margin: 0 0 15px; color: #0c1923; font-size: 37px; line-height: 1.15; letter-spacing: -1.3px; }
.about-hero-copy > p { max-width: 540px; margin: 0 0 11px; font-size: 13px; line-height: 1.65; }
.about-hero-copy .about-tagline { color: #315f50; font-size: 14px; font-weight: 700; }
.outline-link { margin-top: 19px; min-width: 180px; height: 45px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: space-between; gap: 26px; border: 1px solid #3f715f; border-radius: 5px; color: #315f50; font-size: 13px; font-weight: 700; text-decoration: none; transition: background .2s ease, color .2s ease; }
.outline-link span { font-size: 22px; font-weight: 400; }
.outline-link:hover { color: #fff; background: #3f715f; }
.about-hero-image { height: 100%; overflow: hidden; }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.principles { padding-top: 20px; padding-bottom: 29px; }
.principles > h2 { margin: 0 0 21px; color: #121d25; font-size: 16px; line-height: 1.3; }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.principle-grid article { min-height: 71px; padding: 0 34px 0 0; display: flex; align-items: flex-start; gap: 26px; }
.principle-grid article + article { padding-left: 37px; border-left: 1px solid #e2e5e2; }
.principle-icon { flex: 0 0 59px; width: 59px; height: 59px; display: grid; place-items: center; border-radius: 11px; color: #376b58; background: #eef2ee; font-size: 33px; line-height: 1; }
.leaf-icon { position: relative; color: transparent; }
.leaf-icon::before { content: ""; width: 24px; height: 34px; border: 2px solid #376b58; border-radius: 100% 0 100% 0; transform: rotate(38deg); }
.leaf-icon::after { content: ""; position: absolute; width: 30px; height: 2px; background: #376b58; transform: rotate(-47deg); }
.principle-grid h3 { margin: 5px 0 9px; color: #152027; font-size: 13px; line-height: 1.3; }
.principle-grid p { margin: 0; font-size: 11.5px; line-height: 1.7; }

.about-panel { min-height: 252px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid #dce0dc; border-radius: 8px; background: #fff; }
.about-panel > article { position: relative; padding: 21px 38px 17px 24px; }
.about-panel > article + article { border-left: 1px solid #e2e5e2; }
.about-panel h2 { margin: 0 0 14px; color: #132029; font-size: 14px; line-height: 1.3; }
.about-panel p { margin: 0 0 12px; font-size: 11.5px; line-height: 1.65; }
.about-story { overflow: hidden; }
.about-story > p { position: relative; z-index: 2; max-width: 360px; }
.about-story .read-more, .footer-action { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 15px; margin-top: 8px; color: #316450; font-size: 12px; font-weight: 700; cursor: default; text-decoration: none; }
.read-more b, .footer-action b { font-size: 20px; font-weight: 400; }
.footer-action[href] { cursor: pointer; }
.footer-action[href] b { transition: transform .2s ease; }
.footer-action[href]:hover b { transform: translateX(4px); }
.about-story > img { position: absolute; width: 245px; right: 18px; bottom: 5px; opacity: .62; }
.roadmap { padding-left: 40px !important; }
.roadmap ol { margin: 0; padding: 0; list-style: none; }
.roadmap li { position: relative; min-height: 47px; padding: 1px 0 8px 43px; }
.roadmap li::before { content: ""; position: absolute; z-index: 2; top: 1px; left: 0; width: 16px; height: 16px; border: 1px solid #8d9792; border-radius: 50%; background: #fff; }
.roadmap li.done::before { content: "✓"; display: grid; place-items: center; border-color: #47745f; color: #fff; background: #47745f; font-size: 9px; font-weight: 800; }
.roadmap li:not(:last-child)::after { content: ""; position: absolute; top: 17px; bottom: -1px; left: 8px; width: 1px; background: #bdc5c1; }
.roadmap strong, .roadmap span { display: block; font-size: 11.5px; line-height: 1.55; }
.roadmap strong { color: #132029; }
.about-footer { margin-top: 17px; }
.about-footer .footer-grid { min-height: 139px; grid-template-columns: 1.05fr 1fr .95fr; }
.about-footer .footer-action { margin-top: 10px; }

/* Eksperimentiniai įrankiai */
.experimental-page { background: #fff; }
.experimental-main { background: #fff; }
.experimental-intro { height: 169px; overflow: hidden; background: #fff; }
.experimental-intro-inner { position: relative; height: 100%; display: flex; align-items: center; }
.experimental-intro-copy { position: relative; z-index: 2; width: 60%; }
.experimental-intro h1 { margin: 0 0 11px; color: #0c1923; font-size: 38px; line-height: 1.15; letter-spacing: -1.4px; }
.experimental-intro p { margin: 0; font-size: 13.5px; line-height: 1.7; }
.experimental-intro-image { position: absolute; inset: 0 -5px 0 51%; overflow: hidden; opacity: .68; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 18%); mask-image: linear-gradient(to right, transparent 0, #000 18%); }
.experimental-intro-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.experimental-catalog { padding-top: 0; }
.experimental-catalog > h2 { margin: 0 0 19px; color: #111d27; font-size: 20px; line-height: 1.2; letter-spacing: -.4px; }
.experimental-card { min-height: 286px; grid-template-columns: 50% 50%; }
.experimental-card .tool-details { padding: 29px 27px 25px; }
.experimental-card .tool-details h3 { margin-top: 20px; font-size: 18px; }
.experimental-card .tool-details p { font-size: 13px; line-height: 1.72; }
.moisture-icon { font-family: Georgia, serif; transform: rotate(180deg); font-size: 37px; }
.experimental-note { min-height: 126px; margin-top: 23px; margin-bottom: 23px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #dce0dc; border-radius: 9px; overflow: hidden; background: #fff; }
.experimental-note article { padding: 17px 29px; display: flex; align-items: flex-start; gap: 30px; }
.experimental-note article + article { border-left: 1px solid #e2e5e2; padding-left: 43px; }
.experimental-note h2 { margin: 2px 0 10px; color: #132029; font-size: 14px; line-height: 1.3; }
.experimental-note p { margin: 0; font-size: 11.5px; line-height: 1.7; }
.experimental-note .footer-action { margin-top: 13px; }
.flask-icon { margin-top: 0; font-size: 29px; }
.experimental-footer { margin-top: 0; }
.experimental-footer .footer-grid { min-height: 174px; }

/* GKP skaičiuoklės katalogo kortelė */
.gkp-card-visual { position: relative; overflow: hidden; min-height: 286px; background: radial-gradient(circle at 25% 20%, #edf6f1 0, transparent 46%), linear-gradient(145deg, #f2f6f3, #dfeae3); }
.gkp-card-visual::before { content: ""; position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(74, 117, 91, .15) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 117, 91, .15) 1px, transparent 1px); background-size: 24px 24px; }
.gkp-sheet { position: absolute; width: 150px; height: 204px; border: 1px solid rgba(68, 102, 85, .38); border-radius: 3px; transform: skewY(-8deg) rotate(10deg); box-shadow: 10px 16px 24px rgba(41, 74, 55, .12); }
.gkp-sheet-back { left: 25%; top: 13%; background: linear-gradient(160deg, #d9e9e0, #c3d9cb); transform: skewY(-8deg) rotate(2deg); }
.gkp-sheet-front { left: 33%; top: 17%; background: linear-gradient(160deg, #fffef5, #e8efe8); }
.gkp-sheet-front::after { content: "GKP"; position: absolute; left: 21px; bottom: 20px; color: rgba(67, 105, 83, .52); font-size: 29px; font-weight: 800; letter-spacing: 2px; }
.gkp-sheet-front i, .gkp-sheet-front b, .gkp-sheet-front em { position: absolute; display: block; height: 1px; background: rgba(79, 119, 95, .35); transform: rotate(-2deg); }
.gkp-sheet-front i { left: 22px; right: 22px; top: 38px; }
.gkp-sheet-front b { left: 22px; right: 43px; top: 53px; }
.gkp-sheet-front em { left: 22px; right: 60px; top: 68px; }
.gkp-profile { position: absolute; display: block; border: 2px solid #46735a; opacity: .75; }
.gkp-profile-top { width: 118px; height: 17px; top: 13%; left: 22%; border-bottom: 0; transform: skewY(-8deg); }
.gkp-profile-side { width: 17px; height: 142px; top: 30%; left: 72%; border-left: 0; transform: skewY(-8deg); }
.gkp-measure { position: absolute; color: #4c7860; font-size: 10px; font-weight: 800; letter-spacing: .8px; }
.gkp-measure-width { top: 10%; left: 42%; }
.gkp-measure-height { right: 11%; top: 49%; transform: rotate(82deg); }
.gkp-card-label { position: absolute; left: 22px; bottom: 20px; padding: 7px 9px; border: 1px solid rgba(72, 116, 88, .25); border-radius: 4px; color: #416d53; background: rgba(255, 255, 255, .66); font-size: 10px; font-weight: 800; letter-spacing: 1.4px; }
.gkp-icon { color: #4d7b5c; background: #edf5ee; font-size: 30px; line-height: 1; }

/* Privatumo politika */
.privacy-page { background: #f7f8f6; }
.privacy-main { background: #f7f8f6; }
.privacy-hero { padding: 55px 0 52px; border-bottom: 1px solid #dde2de; background: linear-gradient(135deg, #f5f7f4, #eef3ef); }
.privacy-hero .eyebrow { margin-bottom: 12px; font-size: 12px; }
.privacy-hero h1 { margin: 0 0 16px; color: var(--ink); font-size: clamp(39px, 4vw, 58px); line-height: 1.08; letter-spacing: -2px; }
.privacy-hero p:not(.eyebrow) { max-width: 720px; margin: 0 0 16px; font-size: 16px; line-height: 1.7; }
.privacy-hero span { color: #66706c; font-size: 12px; }
.privacy-layout { padding-top: 48px; padding-bottom: 65px; display: grid; grid-template-columns: 300px minmax(0, 820px); justify-content: center; align-items: start; gap: clamp(45px, 7vw, 95px); }
.privacy-summary { position: sticky; top: 25px; padding: 25px 24px; border: 1px solid #d9dfda; border-radius: 9px; background: #fff; box-shadow: 0 10px 28px rgba(24, 45, 36, .045); }
.privacy-summary h2 { margin: 0 0 15px; color: var(--ink); font-size: 17px; }
.privacy-summary ul { margin: 0; padding: 0; list-style: none; }
.privacy-summary li { position: relative; padding: 9px 0 9px 24px; border-top: 1px solid #edf0ed; font-size: 12.5px; line-height: 1.55; }
.privacy-summary li:first-child { border-top: 0; }
.privacy-summary li::before { content: "✓"; position: absolute; left: 0; top: 9px; color: var(--green); font-weight: 800; }
.privacy-content { min-width: 0; }
.privacy-content section { padding: 0 0 31px; margin-bottom: 31px; border-bottom: 1px solid #dde2de; }
.privacy-content section:last-child { margin-bottom: 0; border-bottom: 0; }
.privacy-content h2 { margin: 0 0 15px; color: var(--ink); font-size: 22px; line-height: 1.3; letter-spacing: -.45px; }
.privacy-content p { margin: 0 0 12px; color: #46504d; font-size: 14px; line-height: 1.8; }
.privacy-content p:last-child { margin-bottom: 0; }
.privacy-content a { color: #315f50; font-weight: 600; text-underline-offset: 3px; }
.privacy-footer { margin-top: 0; }

/* Pastabų forma */
.feedback-page { background: #f5f7f4; }
.feedback-main { min-height: calc(100vh - 144px); background: #f5f7f4; }
.feedback-hero { padding: 48px 0 43px; border-bottom: 1px solid #dce2dd; background: linear-gradient(135deg, #f6f8f5, #ebf1ec); }
.feedback-hero .eyebrow { margin-bottom: 12px; font-size: 12px; }
.feedback-hero h1 { margin: 0 0 14px; color: var(--ink); font-size: clamp(36px, 4vw, 54px); line-height: 1.1; letter-spacing: -1.8px; }
.feedback-hero p:not(.eyebrow) { max-width: 690px; margin: 0; font-size: 15px; line-height: 1.7; }
.feedback-layout { padding-top: 44px; padding-bottom: 60px; display: grid; grid-template-columns: minmax(250px, 330px) minmax(0, 760px); justify-content: center; align-items: start; gap: clamp(38px, 6vw, 82px); }
.feedback-aside { padding-top: 9px; }
.feedback-aside h2 { margin: 0 0 22px; color: var(--ink); font-size: 20px; }
.feedback-aside ol { margin: 0; padding: 0; list-style: none; }
.feedback-aside li { display: grid; grid-template-columns: 30px 1fr; align-items: start; gap: 13px; padding: 15px 0; border-top: 1px solid #dce2dd; font-size: 13px; line-height: 1.6; }
.feedback-aside li:first-child { border-top: 0; padding-top: 0; }
.feedback-aside li > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 11px; font-weight: 800; }
.feedback-aside > p { margin: 20px 0 0; color: #69736f; font-size: 12px; line-height: 1.65; }
.feedback-card { padding: clamp(24px, 4vw, 42px); border: 1px solid #d8ded9; border-radius: 10px; background: #fff; box-shadow: 0 15px 38px rgba(25, 45, 37, .06); }
.feedback-form { display: grid; gap: 20px; }
.feedback-form label:not(.check-label) { display: grid; gap: 8px; color: #26322f; font-size: 12.5px; font-weight: 700; }
.feedback-form label > span { color: #9a3d32; }
.feedback-form input[type="text"], .feedback-form input[type="email"], .feedback-form select, .feedback-form textarea { width: 100%; padding: 12px 13px; border: 1px solid #ccd4cf; border-radius: 6px; color: #182522; background: #fbfcfb; font: inherit; font-size: 14px; font-weight: 400; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.feedback-form textarea { min-height: 170px; resize: vertical; line-height: 1.55; }
.feedback-form input:focus, .feedback-form select:focus, .feedback-form textarea:focus { border-color: #557d6b; background: #fff; box-shadow: 0 0 0 3px rgba(73, 109, 93, .12); }
.feedback-form small { color: #73807a; font-size: 11px; font-weight: 400; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.check-label { display: flex; align-items: flex-start; gap: 10px; color: #505b57; font-size: 12px; line-height: 1.55; cursor: pointer; }
.check-label input { flex: 0 0 auto; width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--green); }
.check-label a { color: #315f50; text-underline-offset: 2px; }
.form-submit-row { display: flex; align-items: center; gap: 17px; padding-top: 4px; }
.submit-feedback { min-width: 180px; min-height: 46px; padding: 0 17px; display: inline-flex; align-items: center; justify-content: space-between; gap: 25px; border: 1px solid #3f715f; border-radius: 6px; color: #fff; background: #3f715f; font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.submit-feedback:hover { background: #315d4e; transform: translateY(-1px); }
.submit-feedback:disabled { opacity: .65; cursor: wait; transform: none; }
.submit-feedback span { color: inherit; font-size: 21px; }
.proof-status { color: #65716c; font-size: 11px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-notice { padding: 18px 19px; margin-bottom: 24px; border-radius: 7px; font-size: 13px; line-height: 1.6; }
.form-notice strong { display: block; margin-bottom: 5px; color: var(--ink); }
.form-notice p { margin: 0 0 8px; }
.form-notice ul { margin: 7px 0 0; padding-left: 20px; }
.form-notice.error { border: 1px solid #e4beb8; color: #75362e; background: #fff4f2; }
.form-notice.success { margin: 0; padding: 30px; border: 1px solid #bed7c8; color: #315c4c; background: #f1f8f4; }
.form-notice.success a { color: #315f50; font-weight: 700; }
.feedback-footer { margin-top: 0; }

@media (max-width: 1080px) {
    .site-header { height: 76px; }
    .brand { font-size: 30px; }
    .main-nav { gap: 24px; }
    .main-nav a { font-size: 14px; }
    .hero { grid-template-columns: 49% 51%; }
    .hero-copy-inner { padding-right: 20px; }
    .hero-image img { object-position: 58% center; }
    .discover-grid { grid-template-columns: repeat(3, 1fr); }
    .discover-intro { grid-column: 1 / -1; max-width: 660px; }
    .tools-intro-inner > div:first-child { width: 50%; }
    .tool-card { grid-template-columns: 46% 54%; }
    .tool-details { padding: 20px; }
    .footer-grid { gap: 45px; }
    .about-hero { grid-template-columns: 48% 52%; }
    .about-hero-copy > p { padding-right: 25px; }
    .principle-grid { grid-template-columns: repeat(2, 1fr); gap: 25px 0; }
    .principle-grid article:nth-child(3) { padding-left: 0; border-left: 0; }
    .about-panel { grid-template-columns: 1fr 1fr; }
    .experimental-intro-copy { width: 62%; }
    .experimental-card { grid-template-columns: 44% 56%; }
}

@media (max-width: 760px) {
    :root { --page-pad: 20px; }
    .site-header { height: 68px; }
    .brand { gap: 10px; font-size: 27px; letter-spacing: -1px; }
    .brand-mark { width: 30px; height: 34px; }
    .brand-mark i { inset: 9px 9px 4px 12px; }
    .menu-toggle { display: grid; gap: 5px; }
    .menu-toggle i { width: 25px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
    .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] i:nth-of-type(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-7px) rotate(-45deg); }
    .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; height: auto; padding: 14px 20px 22px; background: #fafaf9; border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; gap: 0; box-shadow: 0 18px 30px rgba(12, 26, 23, .08); }
    .main-nav.open { display: flex; }
    .main-nav a { width: 100%; padding: 13px 0; }
    .main-nav a::after { right: auto; width: 35px; }
    .hero { display: flex; flex-direction: column; }
    .hero-copy { min-height: 470px; padding: 0 var(--page-pad); }
    .hero-copy::after { display: none; }
    .hero-copy-inner { width: 100%; padding: 48px 0; }
    h1 { font-size: clamp(36px, 11vw, 48px); letter-spacing: -1.7px; }
    .eyebrow { margin-bottom: 19px; font-size: 12px; }
    .lead { margin: 23px 0 28px; font-size: 15px; }
    .hero-image { height: 300px; }
    .hero-image::after { display: none; }
    .hero-image img { object-position: 63% center; }
    .section { padding: 42px 0; }
    .discover-grid { grid-template-columns: 1fr; gap: 16px; }
    .discover-intro { margin-bottom: 15px; padding-right: 0; }
    .feature-card { min-height: 205px; padding: 20px 22px; }
    .platform-strip { min-height: 142px; }
    .platform-content { min-height: 142px; align-items: flex-start; padding-top: 28px; }
    .platform-content p { width: calc(100% - 40px); }
    .shield { margin-top: 2px; flex: 0 0 auto; }
    .sketch { left: 10%; opacity: .16; }
    .tools-header .main-nav { gap: 0; }
    .breadcrumbs { height: 40px; }
    .tools-intro { height: auto; min-height: 260px; }
    .tools-intro-inner { min-height: 260px; align-items: flex-start; padding-top: 40px; padding-bottom: 40px; }
    .tools-intro-inner > div:first-child { width: 100%; }
    .tools-intro h1 { font-size: 29px; }
    .tools-intro p { max-width: 94%; }
    .intro-sketch { inset: 105px -150px 0 25%; opacity: .2; }
    .tools-catalog { padding-top: 30px; }
    .tool-grid { grid-template-columns: 1fr; }
    .tool-card { min-height: 0; grid-template-columns: 1fr; }
    .tool-visual { height: 240px; }
    .tool-details { min-height: 245px; padding: 23px; }
    .tool-benefits { padding-top: 38px; }
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit-grid article { border-right: 0; border-bottom: 1px solid #e6e8e6; }
    .benefit-grid article:last-child { border-bottom: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-top: 35px; padding-bottom: 35px; }
    .footer-brand-column p { max-width: none; }
    .footer-bottom { height: auto; }
    .footer-bottom .container { min-height: 100px; grid-template-columns: 1fr; gap: 9px; padding-top: 19px; padding-bottom: 19px; }
    .footer-bottom .container > :nth-child(2), .footer-bottom .container > :last-child { text-align: left; }
    .about-hero { height: auto; min-height: 565px; grid-template-columns: 1fr; }
    .about-hero-copy { padding-top: 38px; }
    .about-hero h1 { font-size: 34px; }
    .about-hero-copy > p { padding-right: 0; }
    .about-hero-image { height: 260px; align-self: end; }
    .principles { padding-top: 35px; }
    .principle-grid { grid-template-columns: 1fr; gap: 0; }
    .principle-grid article, .principle-grid article + article, .principle-grid article:nth-child(3) { padding: 20px 0; border-left: 0; border-top: 1px solid #e2e5e2; }
    .principle-grid article:first-child { border-top: 0; }
    .about-panel { grid-template-columns: 1fr; }
    .about-panel > article, .about-panel > article + article { grid-column: auto; padding: 27px 23px !important; border-left: 0; border-top: 1px solid #e2e5e2; }
    .about-panel > article:first-child { border-top: 0; }
    .about-story { min-height: 290px; }
    .about-story > img { opacity: .3; }
    .about-footer { margin-top: 28px; }
    .experimental-intro { height: auto; min-height: 300px; }
    .experimental-intro-inner { min-height: 300px; align-items: flex-start; padding-top: 40px; }
    .experimental-intro-copy { width: 100%; }
    .experimental-intro h1 { font-size: 34px; }
    .experimental-intro p br { display: none; }
    .experimental-intro-image { inset: 130px -100px 0 18%; opacity: .2; }
    .experimental-catalog { padding-top: 30px; }
    .experimental-card { grid-template-columns: 1fr; }
    .experimental-card .tool-details { min-height: 255px; padding: 23px; }
    .experimental-note { grid-template-columns: 1fr; margin-top: 30px; }
    .experimental-note article, .experimental-note article + article { padding: 25px 23px; border-left: 0; }
    .experimental-note article + article { border-top: 1px solid #e2e5e2; }
    .privacy-hero { padding: 42px 0 40px; }
    .privacy-hero h1 { letter-spacing: -1.3px; }
    .privacy-layout { padding-top: 30px; padding-bottom: 45px; grid-template-columns: 1fr; gap: 36px; }
    .privacy-summary { position: static; }
    .privacy-content h2 { font-size: 20px; }
    .feedback-hero { padding: 39px 0 36px; }
    .feedback-layout { padding-top: 32px; padding-bottom: 45px; grid-template-columns: 1fr; gap: 30px; }
    .feedback-aside { padding-top: 0; }
    .feedback-card { padding: 22px 18px; }
    .form-row { grid-template-columns: 1fr; }
    .form-submit-row { align-items: flex-start; flex-direction: column; }
}

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

/* Administravimo skydelis */
.admin-page { min-height: 100vh; color: var(--text); background: #f3f6f3; }
.admin-shell { min-height: calc(100vh - 86px); padding: 52px 0 70px; }
.admin-auth-shell { min-height: 100vh; display: grid; place-items: center; padding: 30px 20px; background: radial-gradient(circle at 15% 5%, #e6efe9 0, transparent 36%), #f3f6f3; }
.admin-auth-card { width: min(100%, 430px); padding: 42px; border: 1px solid #d7e0da; border-radius: 14px; background: rgba(255, 255, 255, .96); box-shadow: 0 22px 60px rgba(24, 48, 38, .1); }
.admin-back-link { display: inline-flex; margin-bottom: 35px; color: #4f6d5e; font-size: 12px; font-weight: 700; text-decoration: none; }
.admin-back-link:hover { color: #294b3a; }
.admin-logo-mark { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 21px; border-radius: 15px; color: #fff; background: #416b56; font-family: Georgia, serif; font-size: 28px; font-weight: 700; box-shadow: 0 9px 18px rgba(47, 91, 68, .2); }
.admin-auth-card .eyebrow { margin-bottom: 8px; font-size: 11px; letter-spacing: 2px; }
.admin-auth-card h1 { font-size: 34px; letter-spacing: -1.2px; }
.admin-muted { margin: 10px 0 0; color: #68756f; font-size: 13px; line-height: 1.65; }
.admin-login-form { display: grid; gap: 18px; margin-top: 30px; }
.admin-login-form label { display: grid; gap: 8px; color: #2e3c35; font-size: 12px; font-weight: 700; }
.admin-login-form input { width: 100%; min-height: 46px; padding: 0 13px; border: 1px solid #cbd7ce; border-radius: 7px; color: #14231c; background: #fbfdfb; font: inherit; font-size: 14px; outline: none; }
.admin-login-form input:focus { border-color: #4c8061; box-shadow: 0 0 0 3px rgba(76, 128, 97, .13); }
.admin-primary-button { min-height: 47px; display: inline-flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 5px; padding: 0 17px; border: 0; border-radius: 7px; color: #fff; background: #416b56; font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.admin-primary-button:hover { background: #315640; transform: translateY(-1px); }
.admin-primary-button span { font-size: 22px; font-weight: 400; }
.admin-alert { margin-top: 22px; padding: 12px 14px; border-radius: 7px; font-size: 12px; line-height: 1.5; }
.admin-alert-error { border: 1px solid #e5c2bc; color: #7a382f; background: #fff4f1; }
.admin-topbar { height: 86px; border-bottom: 1px solid #dfe7e1; background: #fff; }
.admin-topbar-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.admin-topbar .brand { font-size: 29px; }
.admin-topbar .brand-mark { width: 31px; height: 35px; }
.admin-topbar .brand-mark i { inset: 9px 9px 4px 12px; }
.admin-topbar-actions { display: flex; align-items: center; gap: 23px; }
.admin-user { color: #315541; font-size: 12px; font-weight: 700; }
.admin-logout { padding: 8px 0; border: 0; color: #52615a; background: transparent; font: inherit; font-size: 12px; cursor: pointer; }
.admin-logout:hover { color: #1e4d34; }
.admin-content { max-width: 1160px; }
.admin-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; margin-bottom: 31px; }
.admin-heading .eyebrow { margin-bottom: 10px; font-size: 11px; }
.admin-heading h1 { font-size: clamp(32px, 4vw, 47px); letter-spacing: -1.8px; }
.admin-status { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid #c9dfd0; border-radius: 20px; color: #3c7150; background: #eff9f1; font-size: 11px; font-weight: 700; white-space: nowrap; }
.admin-status i { width: 7px; height: 7px; border-radius: 50%; background: #4eaf6b; box-shadow: 0 0 0 3px rgba(78, 175, 107, .12); }
.admin-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 18px; }
.admin-metric-card { min-height: 141px; padding: 21px 22px; border: 1px solid #dbe4dd; border-radius: 10px; background: #fff; box-shadow: 0 5px 18px rgba(33, 54, 42, .035); }
.admin-metric-card span, .admin-metric-card small { display: block; color: #75817b; font-size: 11px; }
.admin-metric-card strong { display: block; margin: 13px 0 4px; color: #1b3026; font-size: 33px; line-height: 1; letter-spacing: -1px; }
.admin-metric-highlight { border-color: #b9d4c1; background: linear-gradient(145deg, #eff8f0, #fff); }
.admin-metric-highlight strong { color: #326346; }
.admin-panel { margin-top: 18px; padding: 26px 28px 28px; border: 1px solid #dbe4dd; border-radius: 10px; background: #fff; box-shadow: 0 5px 18px rgba(33, 54, 42, .035); }
.admin-panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.admin-panel h2 { margin: 0 0 6px; color: #1b2e26; font-size: 17px; letter-spacing: -.3px; }
.admin-panel-heading p { margin: 0; color: #78847e; font-size: 11px; }
.admin-period-label { padding: 7px 10px; border-radius: 5px; color: #567263; background: #f0f5f1; font-size: 10px; font-weight: 700; }
.admin-chart { height: 220px; display: grid; grid-template-columns: repeat(30, minmax(0, 1fr)); align-items: end; gap: 7px; padding: 8px 2px 0; border-bottom: 1px solid #dce5de; }
.admin-chart-column { height: 100%; min-width: 0; display: grid; grid-template-rows: 1fr 21px; align-items: end; gap: 7px; }
.admin-chart-bar { width: 100%; min-height: 3px; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, #83ad91, #4c7b5e); transition: opacity .2s ease; }
.admin-chart-column:hover .admin-chart-bar { opacity: .72; }
.admin-chart-column span { min-height: 14px; color: #8a958f; font-size: 9px; text-align: center; white-space: nowrap; }
.admin-page-list { display: grid; gap: 18px; }
.admin-page-row-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #36473e; font-size: 12px; }
.admin-page-row-top strong { color: #3d6c4f; font-size: 12px; }
.admin-page-track { height: 6px; margin-top: 9px; overflow: hidden; border-radius: 5px; background: #edf2ee; }
.admin-page-track i { display: block; height: 100%; border-radius: inherit; background: #7da78a; }
.admin-empty { margin: 0; padding: 24px 0 3px; color: #77837d; font-size: 12px; }
.admin-footnote { margin: 18px 0 0; color: #829089; font-size: 10.5px; }

@media (max-width: 760px) {
    .admin-shell { padding: 34px 0 45px; }
    .admin-auth-card { padding: 30px 23px; }
    .admin-topbar { height: 72px; }
    .admin-topbar-inner { width: calc(100% - 40px); }
    .admin-topbar .brand { font-size: 26px; }
    .admin-topbar-actions { gap: 12px; }
    .admin-heading { align-items: flex-start; flex-direction: column; margin-bottom: 24px; }
    .admin-status { align-self: flex-start; }
    .admin-metrics { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .admin-metric-card { min-height: 125px; padding: 17px 15px; }
    .admin-metric-card strong { font-size: 28px; }
    .admin-panel { padding: 21px 16px 22px; }
    .admin-chart { gap: 3px; }
}
