/* Shared foundation: loaded by every public page. Page-specific styles live separately. */
:root {
  --navy-950: #020b2a; --navy-900: #06143e; --navy-800: #071c58; --navy-700: #0a2c78;
  --blue: #175be8; --blue-soft: #eaf1ff; --lime: #8bd421; --lime-dark: #62a40b; --pink: #f20c61;
  --yellow: #f6c72d; --ink: #101a34; --muted: #65708a; --line: #dfe5ef; --paper: #f5f7fb;
  --white: #fff; --shadow: 0 24px 70px rgba(9, 28, 75, .12); --radius: 24px;
  --container: 1180px; --section-space: 88px; --section-compact: 64px; --heading-space: 40px;
  --font-small: .875rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; background: var(--white); color: var(--ink); font: 400 16px/1.58 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
small { font-size: var(--font-small); }
a { color: inherit; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; }
h2 { margin-bottom: 0; font-size: clamp(2.25rem, 4.3vw, 4.6rem); line-height: .98; }
h3 { line-height: 1.12; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: var(--section-space) 0; }
.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; z-index: 100; top: 12px; left: 12px; padding: 10px 14px; color: white; background: var(--navy-950); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: absolute; z-index: 30; top: 0; left: 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.11); color: white; }
.site-header.is-scrolled { position: fixed; background: rgba(3, 14, 48, .92); box-shadow: 0 10px 30px rgba(1,7,28,.18); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; text-decoration: none; }
.brand img { width: 50px; height: 50px; }.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 30px; letter-spacing: -.025em; }
.brand-copy strong sup { margin-left: 3px; font-size: 1.2rem; font-weight: 400; line-height: 1; vertical-align: top; opacity: 0.7;}
.brand-copy small { display: inline-block; width: max-content; margin-top: 3px; margin-left: 4px; font-size: 0.75rem; line-height: 1; letter-spacing: .25em; opacity: .82; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); margin-left: auto; }
.main-nav a { position: relative; font-size: 15px; font-weight: 700; text-decoration: none; } .main-nav .mobile-home-link { display: none; }
.main-nav a:not(.nav-contact)::after { content: ""; position: absolute; right: 100%; bottom: -8px; left: 0; height: 2px; background: var(--lime); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.main-nav a[aria-current="page"] { color: var(--lime); }
.main-nav a[aria-current="page"]::after { right: 0; }
.main-nav .nav-contact { padding: 11px 17px; border: 1px solid rgba(255,255,255,.48); border-radius: 999px; }
.main-nav .nav-contact:hover { border-color: var(--lime); color: var(--navy-950); background: var(--lime); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; margin-left: auto; border: 1px solid rgba(255,255,255,.35); border-radius: 12px; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: white; transition: .2s; }

.site-hero, .page-hero { position: relative; overflow: hidden; background: var(--navy-950); }
.site-hero::before, .page-hero::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 860px; pointer-events: none; background-image: linear-gradient(#ffffff03 1px, transparent 1px), linear-gradient(90deg, #ffffff03 1px, transparent 1px), radial-gradient(circle at 78% 38%, #123f9a 0, #09286f 25%, transparent 48%), linear-gradient(145deg, var(--navy-700), var(--navy-900) 63%, var(--navy-950)); background-size: 72px 72px, 72px 72px, 100% 100%, 100% 100%; mask-image: linear-gradient(to bottom, black 75%, transparent 100%); }
.site-hero > .container, .page-hero > .container { position: relative; z-index: 2; }
/* The extra right-hand tip stays outside the viewport, as in the original artwork. */
.site-corner { position: absolute; z-index: 1; top: 0; right: -4.54vw; width: clamp(227px, 44.83vw, 896.6px); aspect-ratio: 1000 / 255; pointer-events: none; background: url('/images/pink-corner-tovaroved.svg') top right / 100% 100% no-repeat; }
/* Uniform 800 x 204 artwork: keep its tip above the profit card and anchor it to the header. */
@media (min-width: 861px) {
  .site-corner { --corner-half-nav: 590px; top: -74px; right: calc(max(24px, 50% - var(--corner-half-nav)) - 396px); width: 800px; }
}
@media (min-width: 1280px) { .site-corner { --corner-half-nav: 660px; } }
@media (max-width: 600px) { .site-corner { right: calc(-4.54vw - 24px); } }
.hero-shape { position: absolute; pointer-events: none; transform: rotate(34deg); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--navy-700); font-size: var(--font-small); font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--pink); }.eyebrow-light { color: #dfe7ff; }.eyebrow-light span { background: var(--lime); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 9px; font-size: 15px; font-weight: 800; text-decoration: none; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }.button-primary { color: var(--navy-950); background: var(--lime); }.button-primary:hover { background: #9be52c; }
.button-ghost { border-color: rgba(255,255,255,.42); color: white; }.button-ghost:hover { border-color: white; background: rgba(255,255,255,.08); }.button-dark { color: white; background: var(--navy-800); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); align-items: end; gap: 48px; margin-bottom: var(--heading-space); }
.section-heading > p { margin: 0; color: var(--muted); font-size: 17px; }.text-link { color: var(--navy-700); font-size: 14px; font-weight: 900; text-decoration: none; }.text-link span { color: var(--pink); }

/* Shared tariff cards and add-ons. */
.tariff-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }.tariff-cards, .tariff-cards * { box-sizing: border-box; }
.tariff-cards .price-card { --card-hover-bg: #12265c; --card-hover-border: #6c94e5; --card-hover-shadow: 0 16px 30px #020b2a40; --card-hover-lift: 0 -5px; position: relative; display: flex; flex-direction: column; min-height: 396px; padding: 25px 22px 22px; border: 1px solid #ffffff24; border-radius: 18px; color: white; background: #0a1b4d; transition: background-color 280ms ease, border-color 280ms ease, box-shadow 320ms ease, translate 320ms cubic-bezier(.2,.65,.3,1); }
.tariff-cards .price-card > div > span { font-size: 19px; font-weight: 900; }.tariff-cards .price-card > div p { min-height: 70px; margin: 9px 0 26px; color: #aebcde; font-size: 15px; line-height: 1.55; }.tariff-cards .price-card > strong { display: block; margin-bottom: 25px; font-size: 28px; font-weight: 700; }.tariff-cards .price-card > strong small { color: #aebcde; font-size: 14px; font-weight: 500; }
.tariff-cards .price-card ul { margin: 0 0 30px; padding: 0; list-style: none; }.tariff-cards .price-card li { position: relative; margin-bottom: 11px; padding-left: 20px; color: #c5d0ec; font-size: 15px; line-height: 1.55; }.tariff-cards .price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--lime); font-weight: 900; }
.tariff-cards .price-card > a { display: block; margin-top: auto; padding: 12px 10px; border: 1px solid #ffffff47; border-radius: 9px; color: white; font-size: 14px; font-weight: 900; text-align: center; text-decoration: none; transition: background-color .2s ease, border-color .2s ease, color .2s ease; }.tariff-cards .price-card > a:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; }
.tariff-cards .price-popular { --card-hover-bg: #304735; --card-hover-border: #b4ed59; border-color: var(--lime); background: #233638; }.tariff-cards .popular-label { position: absolute; top: -13px; left: 24px; max-width: calc(100% - 32px); padding: 5px 10px; border-radius: 999px; color: var(--navy-950); background: var(--lime); font-size: 12px; font-weight: 900; line-height: 1.35; text-transform: uppercase; }.tariff-cards .price-corporate { --card-hover-bg: #302544; --card-hover-border: #ee80ae; --card-hover-shadow: 0 16px 30px #020b2a40, 0 0 0 1px #ee80ae24; background-image: linear-gradient(145deg, #f20c6140, #ffffff0d); }
@media (hover: hover) and (pointer: fine) { .tariff-cards .price-card:hover { border-color: var(--card-hover-border); background-color: var(--card-hover-bg); box-shadow: var(--card-hover-shadow); translate: var(--card-hover-lift); } }
.tariff-cards .price-card:has(:focus-visible) { border-color: var(--card-hover-border); background-color: var(--card-hover-bg); box-shadow: var(--card-hover-shadow); translate: var(--card-hover-lift); }
.price-addons { display: grid; grid-template-columns: .8fr 1.1fr 1.1fr; gap: 18px; margin-top: 32px; padding-top: 28px; border-top: 1px solid #ffffff26; }.price-addons > * { min-width: 0; }.price-addons-intro { padding: 20px 16px 20px 0; }.price-addons-intro h3 { margin: 0 0 12px; font-size: 24px; line-height: 1.15; }.price-addons-intro p, .price-addon p { margin: 0; color: #bdc9e7; font-size: 15px; line-height: 1.5; }.price-addon { --addon-hover-bg: #ffffff10; --addon-hover-border: #ffffff66; --addon-hover-shadow: 0 14px 28px #020b2a24; --addon-hover-lift: 0 -4px; display: flex; flex-direction: column; padding: 22px 24px; border: 1px solid #ffffff26; border-radius: 16px; background: #ffffff08; transition: background-color .28s ease, border-color .28s ease, box-shadow .32s ease, translate .32s cubic-bezier(.2,.65,.3,1); }.price-addon h4 { margin: 0 0 10px; color: white; font-size: 19px; line-height: 1.25; }.price-addon > strong { display: block; margin-top: 18px; color: var(--lime); font-size: 24px; line-height: 1.3; }.price-addon strong small, .price-addon .addon-note { color: #bdc9e7; font-size: 14px; font-weight: 400; }.price-addon .addon-note { display: block; margin-top: 6px; line-height: 1.45; }.price-addons-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 24px; margin-top: 20px; }.price-addons-footer p { margin: 0; color: #bdc9e7; font-size: 14px; }.price-addons-footer .text-link { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; color: var(--lime); text-underline-offset: 5px; }
@media (hover: hover) and (pointer: fine) { .price-addons .price-addon:hover { border-color: var(--addon-hover-border); background-color: var(--addon-hover-bg); box-shadow: var(--addon-hover-shadow); translate: var(--addon-hover-lift); } }

.site-footer { padding: 70px 0 30px; color: #b4c0de; background: var(--navy-950); }.footer-main { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 80px; padding-bottom: 45px; border-bottom: 1px solid rgba(255,255,255,.12); }.footer-main .brand { color: white; }.footer-brand p { max-width: 440px; margin: 20px 0 0; font-size: 15px; }.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }.footer-main > div > b { margin-bottom: 12px; color: white; }.footer-main > div > a { font-size: 15px; text-decoration: none; }.footer-main > div > a:hover { color: var(--lime); }.footer-bottom { display: grid; grid-template-columns: auto auto 1fr; gap: 30px; padding-top: 25px; align-items: start; font-size: 15px; }.footer-bottom a { color: white; }.footer-bottom p { margin: 0; text-align: right; }
.footer-main span { font-size: 15px; }
:focus-visible { outline: 3px solid #368cff; outline-offset: 5px; }

@media (min-width: 1280px) { .site-header > .container { --container: 1320px; } }
@media (max-width: 960px) { .tariff-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }.price-addons { grid-template-columns: repeat(2, minmax(0, 1fr)); }.price-addons-intro { grid-column: 1 / -1; padding: 0; } }
@media (max-width: 860px) { .container { width: min(100% - 36px, var(--container)); }:root { --section-space: 64px; --section-compact: 48px; --heading-space: 32px; }.menu-toggle { position: relative; z-index: 52; display: block; }.main-nav .mobile-home-link { display: block; }.main-nav { position: fixed; z-index: 50; inset: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; min-height: 100vh; min-height: 100dvh; padding: 98px 18px 28px; background: var(--navy-950); transform: translateX(100%); transition: transform .25s ease; }.main-nav.open { transform: none; }.main-nav a { padding: 17px 10px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 18px; }.main-nav .nav-contact { margin-top: 18px; border-color: var(--lime); color: var(--navy-950); text-align: center; background: var(--lime); }.section-heading { grid-template-columns: 1fr; gap: 22px; }.footer-main { grid-template-columns: 1.2fr .8fr .8fr; gap: 30px; }.footer-bottom { grid-template-columns: 1fr 1fr; }.footer-bottom p { grid-column: 1 / -1; text-align: left; } }
@media (max-width: 860px) { .main-nav { width: 100%; margin-left: 0; }.main-nav a[aria-current="page"] { margin-block: 4px; border: 1px solid rgba(180,237,89,.32); border-radius: 12px; color: var(--lime); background: rgba(180,237,89,.1); }.main-nav a[aria-current="page"]::after { display: none; } }
@media (max-width: 600px) { .container { width: min(100% - 28px, var(--container)); }:root { --section-space: 48px; --section-compact: 40px; --heading-space: 28px; } h2 { font-size: clamp(2.15rem, 11vw, 3.4rem); }.nav-wrap { min-height: 74px; }.brand img { width: 40px; height: 40px; }.brand-copy strong { font-size: 21px; }.main-nav { inset: 0; min-height: 100vh; min-height: 100dvh; padding-top: 88px; }.tariff-cards, .price-addons { grid-template-columns: 1fr; }.price-addons { gap: 16px; margin-top: 28px; padding-top: 24px; }.price-addon { padding: 22px; }.site-footer { padding-top: var(--section-compact); }.footer-main { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1 / -1; }.footer-bottom { grid-template-columns: 1fr; gap: 12px; } }
@media (max-width: 380px) { .brand-copy small { display: none; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }.tariff-cards .price-card, .price-addon { --card-hover-lift: none; --addon-hover-lift: none; transition: none; } }

/* Shared opt-in image viewer for site modules and articles. */
img.js-lightbox.is-lightbox-enabled { cursor: zoom-in; }
img.js-lightbox.is-lightbox-enabled:focus-visible { outline: 3px solid #368cff; outline-offset: 5px; }
html.image-lightbox-open { overflow: hidden; }
.image-lightbox { position: fixed; inset: 0; width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 64px 22px 22px; border: 0; color: white; background: rgba(2, 11, 42, .3); }
.image-lightbox[open] { display: grid; place-items: center; }
.image-lightbox::backdrop { background: rgba(2, 11, 42, .62); backdrop-filter: blur(8px); }
.image-lightbox__layout { display: grid; grid-template-columns: 48px minmax(0, 1fr) 48px; grid-template-rows: minmax(0, 1fr) auto; align-items: center; gap: 12px; width: min(100%, 1600px); height: 100%; }
.image-lightbox--single .image-lightbox__layout { grid-template-columns: minmax(0, 1fr); }
.image-lightbox__image { display: block; grid-column: 2; grid-row: 1; justify-self: center; max-width: 100%; max-height: calc(100dvh - 150px); object-fit: contain; border-radius: 8px; box-shadow: 0 24px 80px #0008; }
.image-lightbox--single .image-lightbox__image { grid-column: 1; }
.image-lightbox__caption { grid-column: 1 / -1; grid-row: 2; margin: 0; color: #dce8ff; font-size: 14px; line-height: 1.45; text-align: center; }
.image-lightbox__close, .image-lightbox__nav { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 1px solid #ffffff50; border-radius: 50%; color: white; background: #ffffff16; cursor: pointer; line-height: 1; }
.image-lightbox__close:hover, .image-lightbox__nav:hover { background: #ffffff32; }
.image-lightbox__close { position: absolute; top: 14px; right: 18px; font-size: 0; }
.image-lightbox__close::before, .image-lightbox__close::after { content: ""; position: absolute; top: 50%; left: 50%; width: 20px; height: 2px; border-radius: 1px; background: currentColor; pointer-events: none; }
.image-lightbox__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.image-lightbox__close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.image-lightbox__nav { grid-row: 1; font-size: 36px; }
.image-lightbox__prev { grid-column: 1; }
.image-lightbox__next { grid-column: 3; }
.image-lightbox__nav[hidden], .image-lightbox__caption[hidden] { display: none; }
.image-lightbox[open] .image-lightbox__image { animation: image-lightbox-enter 180ms ease-out; }
@keyframes image-lightbox-enter { from { opacity: .35; transform: scale(.975); } to { opacity: 1; transform: scale(1); } }
@media (max-width: 600px) {
  .image-lightbox { padding: 64px 8px 16px; }
  .image-lightbox__layout { grid-template-columns: 40px minmax(0, 1fr) 40px; gap: 4px; }
  .image-lightbox--single .image-lightbox__layout { grid-template-columns: minmax(0, 1fr); }
  .image-lightbox__nav { width: 40px; height: 40px; }
  .image-lightbox__image { max-height: calc(100dvh - 136px); }
}

/* Shared footer: direct contact links and the full trademark notice. */
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.footer-social a { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid #ffffff35; border-radius: 50%; color: #e0ebff; background: #ffffff10; }
.footer-social a:hover { border-color: var(--lime); color: var(--lime); }
.footer-social svg { display: block; width: 20px; height: 20px; }
.footer-bottom .footer-legal { grid-column: 1 / -1; max-width: 1100px; margin: 0; color: #aebcda; font-size: 14px; line-height: 1.6; text-align: left; }

@media (max-width: 600px) {
  .tariff-cards .price-card > div p { min-height: 0; margin-bottom: 12px; }
  .tariff-cards .price-card { min-height: 0; }
  .tariff-cards .price-card ul { margin-bottom: 16px; }
  .tariff-cards .price-card > a { margin-top: 0; }
}
