:root {
  --ink: #17201c;
  --muted: #647069;
  --paper: #f5f1e8;
  --surface: #fffdf8;
  --line: #ded8ca;
  --green: #234d3c;
  --green-2: #356b55;
  --gold: #bd8b39;
  --gold-light: #e2c78d;
  --shadow: 0 22px 70px rgba(28, 43, 35, .13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--paper); font-family: var(--sans); }
a { color: inherit; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 100; padding: .8rem 1rem; background: #fff; }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; min-height: 76px; padding: 0 clamp(20px, 5vw, 76px); border-bottom: 1px solid rgba(222, 216, 202, .8); background: rgba(255, 253, 248, .9); backdrop-filter: blur(16px); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; padding: 6px; border: 1px solid rgba(226, 199, 141, .35); border-radius: 11px; background: linear-gradient(145deg, #2b5a46, #173a2d); box-shadow: 0 7px 18px rgba(35,77,60,.16), inset 0 1px 0 rgba(255,255,255,.08); }
.brand-mark img { display: block; width: 100%; height: 100%; transform: translateY(-2px); }
.brand-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.brand-wordmark { display: block; width: 128px; height: 20px; object-fit: contain; object-position: left center; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }
.main-nav { display: flex; align-items: center; gap: 18px; }
.main-nav a, .nav-menu-toggle, .nav-coming-soon { font: 650 13px var(--sans); }
.main-nav a { text-decoration: none; }
.main-nav a:hover, .nav-menu-toggle:hover { color: var(--green-2); }
.nav-menu { position: relative; }
.nav-menu-toggle { display: inline-flex; align-items: center; gap: 5px; padding: 11px 0; border: 0; color: inherit; background: transparent; cursor: pointer; }
.nav-menu-toggle span { color: var(--gold); font-size: 15px; line-height: 1; transition: transform .18s ease; }
.nav-menu.open .nav-menu-toggle span { transform: rotate(180deg); }
.nav-submenu { position: absolute; top: calc(100% + 7px); left: -16px; z-index: 70; display: grid; min-width: 245px; padding: 8px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); box-shadow: 0 18px 45px rgba(28,43,35,.16); opacity: 0; visibility: hidden; transform: translateY(-5px); transition: opacity .16s ease, transform .16s ease, visibility .16s; }
.nav-submenu a { padding: 11px 12px; border-radius: 7px; line-height: 1.35; }
.nav-submenu a:hover, .nav-submenu a:focus-visible { color: var(--green); background: #eef3ef; outline: none; }
.nav-menu.open .nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-coming-soon { display: inline-flex; align-items: center; gap: 5px; color: #59645e; white-space: nowrap; cursor: default; }
.nav-coming-soon small { padding: 2px 5px; border-radius: 999px; color: var(--green); background: #e4ece7; font-size: 8px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.main-nav .nav-cta { padding: 10px 14px; border-radius: 8px; color: #fff; background: var(--green); }
.menu-button { display: none; padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }

@media (hover: hover) and (min-width: 1081px) {
  .nav-menu:hover .nav-submenu,
  .nav-menu:focus-within .nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
}

.hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); align-items: center; gap: clamp(50px, 8vw, 130px); min-height: calc(100vh - 76px); padding: clamp(70px, 9vw, 135px) clamp(24px, 7vw, 110px); overflow: hidden; background: radial-gradient(circle at 87% 16%, rgba(189, 139, 57, .17), transparent 26%), linear-gradient(135deg, #f9f6ef, #eee8dc); }
.hero::after { content: ""; position: absolute; right: -12vw; bottom: -30vw; width: 60vw; height: 60vw; border: 1px solid rgba(35, 77, 60, .13); border-radius: 50%; }
.eyebrow { margin: 0 0 14px; color: var(--green-2); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.025em; }
.hero h1 { max-width: 850px; margin: 0; font-size: clamp(48px, 6.7vw, 96px); line-height: .98; }
.hero-lead { max-width: 720px; margin: 30px 0 0; color: var(--muted); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 18px; border: 1px solid var(--green); border-radius: 8px; font-size: 13px; font-weight: 750; text-decoration: none; }
.button.primary { color: #fff; background: var(--green); }
.button.secondary { background: transparent; }
.button.light { border-color: #fff; color: var(--green); background: #fff; }
.button:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(35, 77, 60, .13); }
.hero-visual { position: relative; z-index: 2; display: grid; place-items: center; min-height: 520px; }
.ledger-sheet { position: relative; z-index: 2; width: min(100%, 390px); padding: 38px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px; color: #fff; background: var(--green); box-shadow: var(--shadow); transform: rotate(2deg); }
.ledger-brand-mark { position: absolute; top: 27px; right: 30px; width: 37px; height: 37px; opacity: .9; }
.ledger-sheet::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; z-index: -1; border: 1px solid rgba(189, 139, 57, .35); border-radius: 18px; }
.sheet-kicker { display: block; padding-bottom: 24px; border-bottom: 1px solid rgba(255, 255, 255, .18); color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.ledger-sheet > strong { display: block; margin: 24px 0; font: 500 42px var(--serif); }
.ledger-row { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, .14); color: #d8e2dd; font-size: 13px; }
.ledger-row b { color: #fff; }
.orbit { position: absolute; border: 1px solid rgba(35, 77, 60, .18); border-radius: 50%; }
.orbit-one { width: 470px; height: 470px; }
.orbit-two { width: 600px; height: 600px; }

.section { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px); }
.section-heading { display: grid; grid-template-columns: .65fr 1.2fr 1fr; gap: 50px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .book-copy h2, .about-section h2, .contact-section h2 { margin: 0; font-size: clamp(36px, 4.4vw, 64px); line-height: 1.05; }
.section-heading > p:last-child, .about-section > p { margin: 0; color: var(--muted); line-height: 1.75; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.solution-card { min-height: 330px; padding: 28px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); box-shadow: 0 8px 30px rgba(44, 52, 46, .04); }
.solution-card.featured { color: #fff; background: var(--green); }
.card-number { color: var(--gold); font: 600 14px var(--serif); }
.solution-card h3 { margin: 70px 0 15px; font: 500 25px var(--serif); }
.solution-card p { min-height: 110px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.solution-card.featured p { color: #d5e0da; }
.solution-card a { color: var(--green); font-size: 12px; font-weight: 800; text-decoration: none; }
.solution-card.featured a { color: var(--gold-light); }

.leaflet-download-section { display: grid; grid-template-columns: minmax(0,1fr) minmax(250px,380px); gap: clamp(55px,9vw,130px); align-items: center; padding: clamp(80px,9vw,135px) clamp(24px,7vw,110px); overflow: hidden; color: #fff; background: radial-gradient(circle at 88% 15%, rgba(189,139,57,.24), transparent 28%), var(--green); }
.leaflet-download-copy { max-width: 760px; }
.leaflet-download-copy .eyebrow { color: var(--gold-light); }
.leaflet-download-copy h2 { max-width: 720px; margin: 0; font-size: clamp(38px,4.7vw,68px); line-height: 1.03; }
.leaflet-download-copy > p:not(.eyebrow) { max-width: 700px; margin: 28px 0; color: #d5e0da; font-size: 15px; line-height: 1.75; }
.leaflet-download-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin: 30px 0 22px; }
.leaflet-download-actions span { color: var(--gold-light); font-size: 11px; font-weight: 750; }
.leaflet-download-copy small { display: block; max-width: 620px; color: #bfcfc7; font-size: 10px; line-height: 1.6; }
.leaflet-preview { display: block; max-width: 370px; margin: 0 auto; border-radius: 8px; background: var(--paper); box-shadow: 0 28px 70px rgba(7,24,17,.38); overflow: hidden; transform: rotate(1.2deg); transition: transform .3s ease, box-shadow .3s ease; }
.leaflet-preview:hover { transform: rotate(0) translateY(-4px); box-shadow: 0 34px 80px rgba(7,24,17,.46); }
.leaflet-preview img { display: block; width: 100%; height: auto; }
.newsletter-section { display: grid; grid-template-columns: minmax(0,1fr) minmax(330px,520px); gap: clamp(45px,8vw,115px); align-items: center; padding: clamp(75px,9vw,125px) clamp(24px,7vw,110px); background: var(--paper); }
.newsletter-copy { max-width: 720px; }
.newsletter-copy h2 { max-width: 680px; margin: 0; font-size: clamp(36px,4.4vw,62px); line-height: 1.05; }
.newsletter-copy > p:not(.eyebrow) { max-width: 650px; margin: 25px 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.newsletter-benefits { display: grid; gap: 11px; margin: 26px 0 0; padding: 0; list-style: none; color: var(--green); font-size: 13px; font-weight: 700; }
.newsletter-benefits li { position: relative; padding-left: 24px; }
.newsletter-benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }
.newsletter-signup { padding: clamp(27px,4vw,42px); border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: 0 22px 55px rgba(35,77,60,.11); }
.newsletter-field { display: grid; gap: 8px; margin-bottom: 17px; }
.newsletter-field label { color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.newsletter-field input { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 7px; color: var(--ink); background: #fff; font: 14px var(--sans); }
.newsletter-field input:focus { outline: 3px solid rgba(53,107,85,.16); border-color: var(--green-2); }
.newsletter-consent { display: grid; grid-template-columns: 18px 1fr; gap: 11px; align-items: start; margin: 5px 0 21px; color: var(--muted); font-size: 11px; line-height: 1.55; cursor: pointer; }
.newsletter-consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--green); }
.newsletter-signup .button { width: 100%; border: 0; cursor: pointer; }
.newsletter-signup .button:disabled { opacity: .62; cursor: not-allowed; }
.newsletter-note { margin: 14px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.newsletter-note a { color: var(--green-2); font-weight: 750; }

.book-section { display: grid; grid-template-columns: minmax(280px, 450px) minmax(0, 700px); justify-content: center; gap: clamp(55px, 10vw, 150px); padding: clamp(85px, 10vw, 150px) clamp(24px, 7vw, 110px); background: #ebe5d8; }
.book-cover { position: relative; min-height: 590px; padding: 52px 46px; border-radius: 4px 16px 16px 4px; color: #fff; background: linear-gradient(145deg, #2c5a46, #17382c); box-shadow: -18px 20px 45px rgba(24, 47, 38, .25), inset 7px 0 0 rgba(255,255,255,.08); }
.book-brand-mark { position: absolute; top: 42px; right: 40px; width: 48px; height: 48px; opacity: .9; }
.book-cover span { display: block; color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.book-cover strong { display: block; margin: 140px 0 35px; font: 500 clamp(42px, 5vw, 68px)/.95 var(--serif); }
.book-cover em { display: block; padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, .2); color: #d5e0da; font: normal 14px/1.6 var(--sans); }
.book-copy { align-self: center; }
.book-copy > p:not(.eyebrow) { margin: 26px 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.check-list { padding: 0; margin: 30px 0; list-style: none; }
.check-list li { position: relative; padding: 11px 0 11px 32px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-2); font-weight: 900; }
.price-line { display: flex; align-items: baseline; gap: 14px; margin: 35px 0 25px; }
.price-line strong { font: 500 34px var(--serif); }
.price-line span { color: var(--muted); font-size: 11px; }

.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; align-items: end; }
.contact-section { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(65px, 8vw, 110px) clamp(24px, 7vw, 110px); color: #fff; background: var(--green); }
.contact-section .eyebrow { color: var(--gold-light); }
.contact-section h2 { max-width: 850px; }
.contact-actions { display: flex; align-items: center; gap: 20px; }
.contact-phone { color: #fff; font-size: 13px; font-weight: 750; text-decoration: none; }
.site-footer { padding: 28px clamp(24px, 7vw, 110px); color: #aebbb5; background: #14261f; font-size: 11px; }
.site-footer p { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin: 0; white-space: nowrap; }
.site-footer strong { color: #fff; font: 600 17px var(--serif); }
.footer-brand { display: inline-flex; align-items: center; gap: 9px; }
.footer-brand .footer-mark { width: 27px; height: 27px; }
.footer-brand .footer-wordmark { width: 112px; height: 20px; object-fit: contain; object-position: left center; filter: invert(1); opacity: .96; }
.footer-links { display: inline-flex; gap: 12px; }
.footer-links a { color: #d6dfda; text-decoration: none; }
.footer-links a:hover { color: #fff; }

@media (max-width: 1080px) {
  .main-nav { display: none; position: absolute; top: 76px; right: 20px; left: 20px; flex-direction: column; align-items: stretch; padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .nav-menu, .nav-coming-soon { width: 100%; }
  .nav-menu-toggle { justify-content: space-between; width: 100%; padding: 7px 0; text-align: left; }
  .nav-submenu { position: static; display: none; min-width: 0; margin: 3px 0 5px; padding: 5px 0 5px 12px; border: 0; border-left: 2px solid var(--gold-light); border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-menu.open .nav-submenu { display: grid; }
  .nav-coming-soon { padding: 7px 0; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; }
  .section-heading { grid-template-columns: 1fr; gap: 15px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .book-section { grid-template-columns: minmax(260px, 380px) 1fr; gap: 60px; }
}

@media (max-width: 720px) {
  .hero { min-height: auto; padding-top: 85px; }
  .hero-visual { min-height: 390px; }
  .orbit-two { width: 440px; height: 440px; }
  .ledger-sheet { padding: 30px; }
  .card-grid, .book-section, .about-section { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; }
  .solution-card h3 { margin-top: 40px; }
  .solution-card p { min-height: auto; }
  .book-cover { width: min(100%, 400px); min-height: 510px; }
  .contact-section, .price-line, .contact-actions { align-items: flex-start; flex-direction: column; }
  .site-footer p { align-items: flex-start; flex-direction: column; gap: 8px; white-space: normal; }
}

/* Stranica proizvoda i naručivanja */
.product-hero { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(55px, 9vw, 130px); align-items: center; padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px); background: radial-gradient(circle at 85% 15%, rgba(189,139,57,.17), transparent 28%), linear-gradient(135deg,#f9f6ef,#eee8dc); }
.product-hero h1 { max-width: 850px; margin: 0; font-size: clamp(48px, 6vw, 88px); line-height: 1; }
.product-hero .lead { max-width: 760px; margin: 28px 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.dr-baze-product-hero { grid-template-columns: minmax(360px, 1fr) minmax(240px, .58fr) minmax(320px, .78fr); gap: clamp(28px, 4.2vw, 72px); padding-bottom: 0; overflow: hidden; }
.dr-baze-hero-doctor { align-self: end; margin: 0; line-height: 0; }
.dr-baze-hero-doctor img { display: block; width: 100%; max-height: 650px; object-fit: contain; object-position: center bottom; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.product-meta span { padding: 7px 10px; border-radius: 999px; color: var(--green); background: #e4ece7; font-size: 11px; font-weight: 750; }
.product-price-card { position: relative; padding: 38px; border-radius: 18px; color: #fff; background: var(--green); box-shadow: var(--shadow); overflow: hidden; }
.price-brand-mark { position: absolute; top: 28px; right: 30px; width: 52px; height: 52px; opacity: .82; }
.product-price-card .eyebrow { color: var(--gold-light); }
.product-price-card strong { display: block; margin: 12px 0 4px; font: 500 52px var(--serif); }
.product-price-card > span { color: #d5e0da; font-size: 12px; }
.product-price-card dl { margin: 28px 0 0; }
.product-price-card dl div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.16); font-size: 12px; }
.product-price-card dt { color: #d5e0da; }
.product-price-card dd { margin: 0; font-weight: 750; text-align: right; }
.product-price-card .price-cta { width: 100%; margin-top: 24px; border-color: #fff; color: var(--green); background: #fff; }
.product-price-card .price-cta:hover { color: var(--green); background: #f7f2e8; box-shadow: 0 10px 26px rgba(8,25,17,.2); }
.book-intro-section { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: clamp(50px, 8vw, 120px); padding: clamp(80px, 9vw, 135px) clamp(24px, 7vw, 110px); background: var(--surface); }
.book-intro-copy h2 { max-width: 820px; margin: 0; font-size: clamp(38px, 4.8vw, 68px); line-height: 1.04; }
.book-intro-text { display: grid; gap: 16px; margin-top: 34px; }
.book-intro-text p { max-width: 790px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.78; }
.book-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: center; }
.book-benefits article { min-height: 215px; padding: 25px; border: 1px solid var(--line); border-radius: 12px; background: #f7f3eb; }
.book-benefits article:nth-child(1) { color: #fff; background: var(--green); }
.book-benefits article > span { color: var(--gold); font: 600 13px var(--serif); }
.book-benefits h3 { margin: 45px 0 10px; font: 500 23px var(--serif); }
.book-benefits p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.book-benefits article:nth-child(1) p { color: #d5e0da; }
.book-gallery-section { padding: clamp(80px, 9vw, 135px) clamp(24px, 7vw, 110px); background: #ebe5d8; }
.book-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.book-shot { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); box-shadow: 0 16px 45px rgba(39,49,42,.08); }
.book-shot-wide { grid-column: 1 / -1; }
.book-shot a { display: block; overflow: hidden; background: #e8e2d5; }
.book-shot img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: top left; transition: transform .35s ease; }
.dr-baze-gallery .book-shot img { width: min(100%, 1040px); height: auto; aspect-ratio: auto; margin: 0 auto; object-fit: contain; object-position: center top; background: #f2ede3; }
.book-shot a:hover img { transform: scale(1.012); }
.book-shot figcaption { display: grid; grid-template-columns: minmax(180px, .42fr) 1fr; gap: 24px; padding: 22px 25px 24px; }
.book-shot figcaption strong { font: 500 21px var(--serif); }
.book-shot figcaption span { color: var(--muted); font-size: 12px; line-height: 1.6; }
.process-section { padding: clamp(80px, 9vw, 135px) clamp(24px, 7vw, 110px); }

.dr-baze-workflow-section {
  box-sizing: border-box;
  padding-inline: clamp(32px, 7vw, 110px);
}

.dr-baze-workflow-section > * {
  width: min(100%, 1680px);
  margin-left: auto;
  margin-right: auto;
}
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 50px; counter-reset: process; }
.process-grid.six-steps { grid-template-columns: repeat(3, 1fr); }
.process-card { min-height: 245px; padding: 26px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); counter-increment: process; }
.process-card::before { content: "0" counter(process); display: block; margin-bottom: 55px; color: var(--gold); font: 600 14px var(--serif); }
.process-card h3 { margin: 0 0 12px; font: 500 22px var(--serif); }
.process-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.protection-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 130px); padding: clamp(80px, 9vw, 135px) clamp(24px, 7vw, 110px); color: #fff; background: var(--green); }
.protection-section .eyebrow { color: var(--gold-light); }
.protection-section h2 { margin: 0; font-size: clamp(38px, 4.6vw, 66px); line-height: 1.04; }
.protection-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.protection-list article { padding: 22px; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; background: rgba(255,255,255,.04); }
.protection-list h3 { margin: 0 0 8px; color: var(--gold-light); font: 500 19px var(--serif); }
.protection-list p { margin: 0; color: #d5e0da; font-size: 12px; line-height: 1.65; }
.order-section { padding: clamp(80px, 10vw, 145px) clamp(24px, 7vw, 110px); background: #ebe5d8; }
.order-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 390px); gap: clamp(35px, 6vw, 85px); align-items: start; max-width: 1300px; margin: 48px auto 0; }
.order-form { padding: clamp(24px, 4vw, 46px); border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: 0 12px 38px rgba(39,49,42,.06); }
.website-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-section { margin: 0 0 38px; padding: 0; border: 0; }
.form-section:last-of-type { margin-bottom: 28px; }
.form-section legend { width: 100%; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font: 500 23px var(--serif); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 800; letter-spacing: .03em; }
.field input, .field textarea, .field select { width: 100%; padding: 12px 13px; border: 1px solid #cfc7b8; border-radius: 8px; color: var(--ink); background: #fff; font: inherit; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(53,107,85,.12); }
.field small { color: var(--muted); font-size: 10px; line-height: 1.4; }
.field-error { min-height: 14px; color: #9b3528 !important; }
.field-error.valid { color: #28634a !important; font-weight: 700; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 14px 0; color: #4f5a53; font-size: 12px; line-height: 1.55; }
.consent input { margin-top: 3px; accent-color: var(--green); }
.order-form .button { width: 100%; }
.order-form .button[disabled] { cursor: wait; opacity: .72; }
.newsletter-choice-group .consent { margin-bottom: 10px; }
.newsletter-choice-note { margin: 0 0 14px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.newsletter-choice-note:last-child { margin: 4px 0 0; }
.newsletter-choice-note a { color: var(--green-2); font-weight: 750; }
.form-notice { display: none; margin-top: 16px; padding: 14px; border-left: 3px solid var(--gold); color: #6d5529; background: #faf3e3; font-size: 12px; line-height: 1.55; }
.form-notice.visible { display: block; }
.form-notice.success { border-left-color: var(--green-2); color: #24513d; background: #e8f0eb; }
.form-notice.error { border-left-color: #a44336; color: #81362d; background: #f7e7e3; }
.order-confirmation-dialog { width: min(620px, calc(100vw - 32px)); padding: 0; border: 0; border-radius: 16px; color: var(--ink); background: var(--surface); box-shadow: 0 28px 90px rgba(15,28,22,.34); }
.order-confirmation-dialog::backdrop { background: rgba(15,28,22,.62); backdrop-filter: blur(3px); }
.order-confirmation-content { padding: clamp(28px, 6vw, 52px); }
.order-confirmation-content h2 { margin: 5px 0 18px; font: 500 clamp(32px, 5vw, 46px)/1.08 var(--serif); }
.order-confirmation-content > p:not(.eyebrow) { color: var(--muted); font-size: 14px; line-height: 1.75; }
.order-confirmation-reference { margin: 24px 0; padding: 13px 15px; border-left: 3px solid var(--gold); color: var(--ink) !important; background: #f5efe2; font-weight: 700; overflow-wrap: anywhere; }
.order-confirmation-content .button { width: 100%; }
.order-summary { position: sticky; top: 100px; padding: 30px; border-radius: 14px; color: #fff; background: var(--green); box-shadow: var(--shadow); }
.order-summary h3 { margin: 0 0 24px; font: 500 27px var(--serif); }
.summary-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.15); color: #d5e0da; font-size: 12px; }
.summary-row strong { color: #fff; text-align: right; }
.summary-total { margin-top: 8px; padding-top: 20px; }
.summary-total strong { font: 500 27px var(--serif); }
.order-summary .legal-note { margin: 22px 0 0; color: #bdcbc4; font-size: 10px; line-height: 1.6; }
.radar-hero { background: radial-gradient(circle at 82% 20%, rgba(189,139,57,.2), transparent 28%), linear-gradient(135deg,#f9f6ef,#ece6d9); }
.radar-signal-visual { display: block; width: min(100%, 260px); aspect-ratio: 1; margin: -18px auto 18px; filter: drop-shadow(0 18px 28px rgba(2,18,14,.38)); }
.radar-product-icon { display: block; width: 128px; height: 128px; object-fit: contain; margin: -6px auto 18px; filter: drop-shadow(0 12px 20px rgba(2,18,14,.3)); }
.radar-manual-link { display: flex; align-items: center; justify-content: center; gap: 11px; width: 100%; margin-top: 11px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.34); border-radius: 7px; color: #fff; font-size: 12px; font-weight: 750; text-align: left; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.radar-manual-link > span:first-child { flex: 0 0 auto; font-size: 24px; line-height: 1; }
.radar-manual-link small { display: block; margin-top: 2px; color: #c7d8cf; font-size: 9px; font-weight: 600; }
.radar-manual-link:hover { border-color: rgba(255,255,255,.72); color: #fff; background: rgba(255,255,255,.09); transform: translateY(-1px); }
.radar-gallery .book-shot img { aspect-ratio: 1500 / 950; object-fit: cover; object-position: top left; }
.app-gallery .book-shot img { aspect-ratio: 8 / 5; object-fit: cover; object-position: top left; }
.radar-reporting-section { display: grid; grid-template-columns: minmax(0,.88fr) minmax(420px,1.12fr); gap: clamp(45px,7vw,105px); align-items: center; padding: clamp(80px,9vw,135px) clamp(24px,7vw,110px); background: var(--surface); }
.radar-reporting-copy h2 { max-width: 760px; margin: 0 0 26px; font-size: clamp(36px,3.5vw,52px); line-height: 1.04; }
.radar-reporting-copy > p:not(.eyebrow) { max-width: 760px; margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.radar-reporting-list { margin: 25px 0; }
.radar-reporting-list li { font-size: 12px; line-height: 1.55; }
.radar-reporting-copy .radar-reporting-note { padding: 16px 18px; border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; background: #f3eee4; font-size: 11px; }
.radar-reporting-visual { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #ebe5d8; box-shadow: 0 20px 55px rgba(39,49,42,.12); }
.radar-reporting-visual a { display: block; overflow: hidden; }
.radar-reporting-visual img { display: block; width: 100%; height: auto; aspect-ratio: 1500 / 950; object-fit: cover; object-position: top left; transition: transform .35s ease; }
.radar-reporting-visual a:hover img { transform: scale(1.012); }
.radar-reporting-visual figcaption { display: grid; gap: 7px; padding: 21px 24px 24px; background: var(--surface); }
.radar-reporting-visual figcaption strong { font: 500 21px var(--serif); }
.radar-reporting-visual figcaption span { color: var(--muted); font-size: 12px; line-height: 1.6; }
.radar-requirements .process-grid { grid-template-columns: repeat(3, 1fr); }
.faq-section { max-width: 1050px; margin: 0 auto; padding: clamp(80px, 9vw, 130px) 24px; }
.faq-section details { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq-section summary { cursor: pointer; font: 500 20px var(--serif); }
.faq-section details p { max-width: 850px; color: var(--muted); line-height: 1.7; }
.update-license-section { background: var(--surface); }
.license-explanation { display: grid; grid-template-columns: 1fr 1fr .8fr; gap: 18px; }
.license-explanation > p, .renewal-price { margin: 0; padding: 26px; border: 1px solid var(--line); border-radius: 12px; background: #f8f5ee; font-size: 14px; line-height: 1.75; }
.renewal-price { display: flex; flex-direction: column; justify-content: center; color: #fff; background: var(--green); }
.renewal-price span, .renewal-price small { color: #d5e0da; }
.renewal-price span { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.renewal-price strong { margin: 14px 0 5px; font: 500 36px var(--serif); }
.renewal-price small { font-size: 10px; }
.renewal-price p { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); color: #d5e0da; font-size: 11px; line-height: 1.6; }

/* Stranice poslovnih rešenja */
.solution-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: center; gap: clamp(55px, 9vw, 130px); min-height: 720px; padding: clamp(85px, 10vw, 145px) clamp(24px, 7vw, 110px); overflow: hidden; background: radial-gradient(circle at 84% 15%, rgba(189,139,57,.18), transparent 27%), linear-gradient(135deg,#f9f6ef,#ece6d9); }
.solution-hero h1 { margin: 0; font-size: clamp(54px, 7vw, 104px); line-height: .96; }
.solution-hero .lead { max-width: 760px; margin: 28px 0 0; color: var(--muted); font-size: clamp(17px,1.5vw,21px); line-height: 1.75; }
.solution-hero-copy { position: relative; z-index: 3; }
.intro-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px,10vw,150px); align-items: start; }
.intro-split h2 { max-width: 700px; margin: 0; font-size: clamp(38px,4.6vw,68px); line-height: 1.04; }
.rich-copy p { margin: 0 0 22px; color: var(--muted); font-size: 16px; line-height: 1.85; }
.feature-band { padding: clamp(80px,9vw,135px) clamp(24px,7vw,110px); background: #ebe5d8; }
.compact-heading { align-items: start; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.feature-grid article { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.feature-grid article > span { color: var(--gold); font: 600 14px var(--serif); }
.feature-grid h3 { margin: 60px 0 12px; font: 500 23px var(--serif); }
.feature-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.deployment-section { background: var(--surface); }
.deployment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.deployment-grid article { padding: 30px; border: 1px solid var(--line); border-radius: 12px; background: #f7f3eb; }
.deployment-grid article.featured { color: #fff; background: var(--green); }
.deployment-grid h3 { margin: 0 0 15px; font: 500 25px var(--serif); }
.deployment-grid p { margin: 0; color: var(--muted); line-height: 1.7; }
.deployment-grid .featured p { color: #d5e0da; }
.integration-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px,9vw,130px); align-items: center; padding: clamp(80px,9vw,135px) clamp(24px,7vw,110px); color: #fff; background: var(--green); }
.integration-section .eyebrow { color: var(--gold-light); }
.integration-section h2 { margin: 0; font-size: clamp(38px,4.6vw,66px); line-height: 1.04; }
.integration-section p { color: #d5e0da; line-height: 1.75; }
.integration-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0; list-style: none; }
.integration-list li { padding: 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 9px; background: rgba(255,255,255,.04); font-size: 13px; }

.system-map { position: relative; min-height: 480px; }
.system-core { position: absolute; inset: 50% auto auto 50%; display: grid; place-items: center; width: 220px; height: 220px; padding: 30px; border-radius: 50%; color: #fff; background: var(--green); box-shadow: var(--shadow); transform: translate(-50%,-50%); text-align: center; }
.system-core img { width: 44px; height: 44px; margin-bottom: 12px; }
.system-core strong { font: 500 29px var(--serif); }
.system-core span { color: #d5e0da; font-size: 10px; }
.system-map::before, .system-map::after { content: ""; position: absolute; inset: 50% auto auto 50%; border: 1px solid rgba(35,77,60,.18); border-radius: 50%; transform: translate(-50%,-50%); }
.system-map::before { width: 390px; height: 390px; }
.system-map::after { width: 500px; height: 500px; }
.system-node { position: absolute; z-index: 2; min-width: 112px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); box-shadow: 0 10px 30px rgba(35,77,60,.08); font-size: 11px; font-weight: 800; text-align: center; }
.node-a { top: 5%; left: 38%; }.node-b { top: 39%; right: 0; }.node-c { right: 20%; bottom: 3%; }.node-d { bottom: 16%; left: 0; }

.document-stack { position: relative; min-height: 500px; }
.document-card { position: absolute; left: 50%; width: min(78%,370px); min-height: 260px; padding: 34px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow); }
.document-card img { position: absolute; top: 28px; right: 28px; width: 42px; height: 42px; }
.document-card span { color: var(--gold); font: 600 14px var(--serif); }
.document-card strong { display: block; margin: 90px 0 12px; font: 500 30px var(--serif); }
.document-card small { color: var(--muted); }
.card-back { top: 4%; transform: translateX(-36%) rotate(8deg); opacity: .55; }.card-mid { top: 14%; transform: translateX(-54%) rotate(-5deg); opacity: .82; }.card-front { top: 24%; transform: translateX(-46%) rotate(1deg); }
.connection-flow { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.connection-flow span { padding: 18px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; background: rgba(255,255,255,.05); font-weight: 750; }
.connection-flow b { color: var(--gold-light); }

.remote-map { display: grid; place-items: center; min-height: 480px; }
.remote-server { display: grid; place-items: center; width: min(80%,360px); padding: 42px; border-radius: 18px; color: #fff; background: var(--green); box-shadow: var(--shadow); text-align: center; }
.remote-server img { width: 48px; height: 48px; margin-bottom: 20px; }.remote-server strong { font: 500 31px var(--serif); }.remote-server span { margin-top: 8px; color: #d5e0da; font-size: 11px; }
.remote-clients { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; width: 100%; margin-top: 25px; }
.remote-clients span { padding: 12px 8px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-size: 10px; font-weight: 800; text-align: center; }

/* Pravne stranice */
.legal-page { max-width: 1120px; min-height: calc(100vh - 160px); margin: 0 auto; padding: clamp(80px,9vw,130px) 24px; }
.legal-page h1 { margin: 0 0 45px; font-size: clamp(48px,6vw,84px); }
.legal-card { padding: clamp(24px,4vw,48px); border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: 0 14px 45px rgba(39,49,42,.06); }
.company-data { margin: 0; }
.company-data div { display: grid; grid-template-columns: 190px 1fr; gap: 25px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.company-data div:last-child { border-bottom: 0; }
.company-data dt { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.company-data dd { margin: 0; line-height: 1.6; }
.legal-copy h2 { margin: 34px 0 10px; font-size: 27px; }.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { color: var(--muted); line-height: 1.8; }
.legal-copy ul { margin: 12px 0 24px; padding-left: 22px; color: var(--muted); line-height: 1.8; }
.legal-copy li + li { margin-top: 7px; }
.legal-updated { margin-top: 22px; color: var(--muted); font-size: 11px; }

/* Jasno obaveštenje o tehničkim podešavanjima, bez lažnog pristanka na praćenje */
.cookie-notice {
  position: fixed;
  right: clamp(16px, 3vw, 38px);
  bottom: clamp(16px, 3vw, 38px);
  left: clamp(16px, 3vw, 38px);
  z-index: 70;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(189, 139, 57, .38);
  border-radius: 14px;
  color: #fff;
  background: rgba(20, 38, 31, .97);
  box-shadow: 0 20px 55px rgba(14, 26, 21, .35);
  backdrop-filter: blur(12px);
  transition: opacity .25s ease, transform .25s ease;
}
.cookie-notice.is-closing { opacity: 0; transform: translateY(18px); }
.cookie-notice-mark { width: 42px; height: 42px; }
.cookie-notice-copy strong { display: block; margin-bottom: 5px; font: 500 20px var(--serif); }
.cookie-notice-copy p { margin: 0; color: #d5e0da; font-size: 12px; line-height: 1.65; }
.cookie-notice-copy a { color: var(--gold-light); font-weight: 800; }
.cookie-notice-button { min-width: 112px; }

/* Ugovor o licenci */
.eula-page { padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 110px); }
.eula-heading { max-width: 1050px; margin: 0 auto 44px; }
.eula-heading h1 { max-width: 900px; margin: 0; font-size: clamp(42px, 5.5vw, 78px); line-height: 1.02; }
.eula-heading > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.eula-meta { display: grid; grid-template-columns: 130px 180px minmax(0, 1fr); gap: 12px; margin: 30px 0; }
.eula-meta div { padding: 16px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); }
.eula-meta dt { margin-bottom: 7px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.eula-meta dd { margin: 0; font-size: 13px; font-weight: 750; }
.eula-meta code { overflow-wrap: anywhere; font-size: 10px; }
.eula-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.eula-document { max-width: 1180px; margin: 0 auto; padding: clamp(22px, 4vw, 38px); border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: 0 14px 45px rgba(39,49,42,.06); }
.eula-document h2 { margin: 0 0 8px; font-size: 29px; }
.eula-document > p { color: var(--muted); font-size: 12px; }
.eula-frame { display: block; width: 100%; min-height: 68vh; margin-top: 22px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.eula-text { width: 100%; max-height: 68vh; margin: 22px 0 0; padding: clamp(20px, 3vw, 34px); overflow: auto; border: 1px solid var(--line); border-radius: 9px; background: #fff; color: var(--ink); font: 400 15px/1.75 var(--sans); white-space: pre-wrap; overflow-wrap: anywhere; box-sizing: border-box; }
.eula-text:focus { outline: 3px solid rgba(176, 130, 57, .24); outline-offset: 2px; }

/* Povratak na vrh sa indikatorom napretka kroz stranicu */
.back-to-top {
  --scroll-progress: 0deg;
  position: fixed;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 38px);
  z-index: 45;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 5px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: conic-gradient(
    from 0deg,
    rgba(53, 107, 85, .92) 0deg var(--scroll-progress),
    rgba(35, 77, 60, .16) var(--scroll-progress) 360deg
  );
  box-shadow: 0 12px 34px rgba(20, 38, 31, .24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.94);
  transition: opacity .24s ease, visibility .24s ease, transform .24s ease, box-shadow .24s ease;
}
.back-to-top::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: inherit;
  background: rgba(20, 38, 31, .94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top.is-launching {
  pointer-events: none;
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  box-shadow: 0 15px 38px rgba(20, 38, 31, .34);
  transform: translateY(-3px) scale(1.03);
}
.back-to-top:focus-visible {
  outline: 3px solid rgba(189, 139, 57, .55);
  outline-offset: 4px;
}
.back-to-top-mark {
  position: relative;
  z-index: 1;
  display: block;
  width: 38px;
  height: 38px;
  background: url("../img/sagitarion-mark.svg") center / contain no-repeat;
  transform: translateY(-2px);
  transform-origin: 50% 75%;
}
.back-to-top.is-launching .back-to-top-mark {
  animation: sagitarion-arrow-release .78s cubic-bezier(.18, .7, .18, 1) both;
}

@keyframes sagitarion-arrow-release {
  0% { opacity: 1; transform: translateY(-2px) scale(1); }
  18% { opacity: 1; transform: translateY(5px) scaleY(.95); }
  34% { opacity: 1; transform: translateY(-2px) scale(1.03); }
  100% { opacity: 0; transform: translateY(-102px) scale(.9); }
}

@media (max-width: 1000px) {
  .product-hero, .book-intro-section, .radar-reporting-section, .leaflet-download-section, .newsletter-section, .protection-section, .order-layout { grid-template-columns: 1fr; }
  .dr-baze-product-hero { grid-template-columns: minmax(0, 1fr) minmax(260px, .65fr); padding-bottom: clamp(60px, 8vw, 90px); }
  .dr-baze-product-hero > div:first-child { grid-column: 1 / -1; }
  .dr-baze-hero-doctor img { max-height: 520px; }
  .license-explanation { grid-template-columns: 1fr; }
  .process-grid, .process-grid.six-steps { grid-template-columns: repeat(2, 1fr); }
  .radar-requirements .process-grid { grid-template-columns: repeat(2, 1fr); }
  .book-benefits { max-width: 820px; }
  .order-summary { position: static; }
  .solution-hero, .intro-split, .integration-section { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .system-map, .document-stack, .remote-map { min-height: 420px; }
}

@media (max-width: 650px) {
  html { overflow-x: hidden; }
  body { min-width: 0; max-width: 100%; }
  .product-hero { width: 100%; min-width: 0; padding: 58px 20px 72px; gap: 36px; overflow: hidden; }
  .product-hero > * { min-width: 0; }
  .product-hero h1 { max-width: 100%; font-size: clamp(40px, 13vw, 56px); overflow-wrap: normal; word-break: normal; }
  .product-hero .lead { margin: 22px 0; font-size: 16px; line-height: 1.65; }
  .product-meta { max-width: 100%; }
  .product-price-card { width: 100%; min-width: 0; padding: 28px 24px; }
  .product-price-card strong { font-size: 44px; }
  .dr-baze-product-hero { grid-template-columns: 1fr; }
  .dr-baze-product-hero > div:first-child { grid-column: auto; }
  .dr-baze-hero-doctor { order: 2; }
  .dr-baze-product-hero .product-price-card { order: 3; }
  .dr-baze-hero-doctor img { width: min(100%, 360px); margin: 0 auto; }
  .process-grid, .process-grid.six-steps, .protection-list, .form-grid, .feature-grid, .deployment-grid, .book-benefits, .book-gallery { grid-template-columns: 1fr; }
  .radar-requirements .process-grid { grid-template-columns: 1fr; }
  .book-shot-wide { grid-column: auto; }
  .book-shot figcaption { grid-template-columns: 1fr; gap: 7px; }
  .field.full { grid-column: auto; }
  .eula-meta { grid-template-columns: 1fr; }
  .eula-nav { display: none; }
  .integration-list { grid-template-columns: 1fr; }
  .remote-clients { grid-template-columns: repeat(2,1fr); }
  .company-data div { grid-template-columns: 1fr; gap: 6px; }
  .leaflet-preview { max-width: 320px; }
  .newsletter-section { width: 100%; min-width: 0; gap: 34px; padding: 64px 18px; overflow: hidden; }
  .newsletter-section > * { min-width: 0; }
  .newsletter-copy h2 { max-width: 100%; font-size: clamp(34px, 11vw, 44px); line-height: 1.06; overflow-wrap: normal; word-break: normal; }
  .newsletter-copy > p:not(.eyebrow) { margin: 21px 0; font-size: 14px; line-height: 1.7; }
  .newsletter-benefits { gap: 12px; margin-top: 22px; font-size: 12px; line-height: 1.45; }
  .newsletter-signup { width: 100%; min-width: 0; padding: clamp(20px, 6vw, 26px); border-radius: 12px; }
  .newsletter-field input { min-width: 0; }
  .newsletter-consent { grid-template-columns: 20px minmax(0, 1fr); gap: 10px; }
  .newsletter-note { padding-right: 34px; }
  body:has(.newsletter-signup:focus-within) .back-to-top { opacity: 0; visibility: hidden; pointer-events: none; }
  .back-to-top { right: 12px; bottom: 12px; width: 48px; height: 48px; }
  .back-to-top-mark { width: 29px; height: 29px; }
  .cookie-notice { grid-template-columns: auto 1fr; gap: 13px; padding: 17px; }
  .cookie-notice-mark { width: 36px; height: 36px; }
  .cookie-notice-button { grid-column: 1 / -1; width: 100%; }
}

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