:root {
  --navy: #0d284e;
  --navy-light: #243559;
  --steel: #8BA3C7;
  --steel-mid: #7A9BC4;
  --sky: #B0C2D8;
  --bg: #FAFAFA;
  --surface: #F0F2F5;
  --surface-alt: #F2F4F7;
  --surface-blue: #EEF1F8;
  --border: #D4DAE8;
  --text: #1B2A4A;
  --text-muted: #6B7A96;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Source Sans 3', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

.underline-link {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.accent-bar {
  height: 7px;
  background: var(--navy);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

nav {
  position: fixed;
  top: 7px;
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.nav-logo img {
  width: 46px;
  height: 46px;
}

.nav-logo-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
}

.nav-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav-contact a {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}

.nav-contact a:hover {
  color: #fff;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  margin-left: 36px; /* spacing between email (nav-contact) and first link */
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sky);
  opacity: 0.8;
  transition: opacity 0.2s ease;
  white-space: nowrap; /* prevent breaking link text onto multiple lines */
}

.nav-links::-webkit-scrollbar { display: none; }

.nav-links a:hover {
  opacity: 1;
}

.nav-hours {
  background: var(--navy);
  padding: 10px 28px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed;
  top: 79px;
  left: 0;
  right: 0;
  z-index: 998;
}

.nav-hours-text {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.main {
  padding-top: 140px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.page-hero,
.page-hero--sm {
  position: relative;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.page-hero {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding-bottom: clamp(60px, 8vw, 140px);
}

.page-hero--sm {
  min-height: 42vh;
  display: flex;
  align-items: center;
  padding: 140px 0 40px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-main-logo {
  display: block;
  width: clamp(820px, 32vw, 960px);
  max-width: 100%;
  margin: 0 auto 32px;
}

.page-hero .page-title {
  font-size: clamp(58px, 8vw, 110px);
}

.home-hero .page-title {
  font-size: clamp(38px, 5vw, 58px);
}

.page-hero::after,
.page-hero--sm::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none; /* remove overlay so hero matches logo color exactly */
  pointer-events: none;
}

.page-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 72px);
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.page-subtitle,
.section-sub {
  font-weight: 300;
  font-size: 17px;
  max-width: 680px;
  line-height: 1.85;
  opacity: 0.9;
}

.page-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
  background: #fff;
  color: var(--navy);
}

.btn-primary:hover,
.btn-ghost:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.section-label {
  font-size: 9.5px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.65;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 3vw, 44px);
  color: var(--navy);
  letter-spacing: -0.7px;
  margin-bottom: 18px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 40px;
}

.uslugi-page .grid-section {
  padding: 48px 0 72px;
}

.uslugi-page .section-label {
  display: block;
  font-size: 9.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.45;
  margin-bottom: 32px;
}

.uslugi-page .tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.uslugi-page .tile {
  background: var(--bg);
  padding: 28px 24px 22px;
  cursor: pointer;
  position: relative;
  transition: background 0.15s ease;
  display: flex;
  flex-direction: column;
  min-height: 185px;
  text-decoration: none;
  color: inherit;
}

.uslugi-page .tile:hover {
  background: var(--surface2);
}

.uslugi-page .tile:hover .tile-arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}

.uslugi-page .tile--featured {
  background: var(--navy);
}

.uslugi-page .tile--featured:hover {
  background: #223260;
}

.uslugi-page .tile--featured .tile-title {
  color: #fff;
}

.uslugi-page .tile--featured .tile-desc {
  color: var(--lightblue);
}

.uslugi-page .tile--featured .tile-arrow {
  color: var(--steel);
  opacity: 0.5;
}

.uslugi-page .tile--featured:hover .tile-arrow {
  opacity: 1;
}

.uslugi-page .tile-accent {
  width: 3px;
  height: 26px;
  margin-bottom: 15px;
  flex-shrink: 0;
  background: var(--navy);
}

.uslugi-page .tile:nth-child(3n+2):not(.tile--featured) .tile-accent {
  background: var(--steel2);
}

.uslugi-page .tile:nth-child(3n):not(.tile--featured) .tile-accent {
  background: var(--steel);
}

.uslugi-page .tile-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--serif);
  font-size: 11px;
  color: var(--navy);
  opacity: 0.12;
  font-weight: 700;
}

.uslugi-page .tile-title {
  font-family: var(--serif);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 8px;
}

.uslugi-page .tile-desc {
  font-family: var(--source);
  font-size: 12.5px;
  font-weight: 300;
  color: #5a6a88;
  line-height: 1.6;
  flex: 1;
}

.uslugi-page .tile-arrow {
  position: absolute;
  bottom: 16px;
  right: 18px;
  font-size: 13px;
  color: var(--steel2);
  opacity: 0;
  transition: all 0.15s ease;
}

.uslugi-page .note-bar {
  border-left: 3px solid var(--navy);
  background: var(--surface2);
  padding: 16px 20px;
  margin: 32px 0 0;
  font-family: var(--source);
  font-size: 13px;
  font-weight: 300;
  color: #4a5a78;
  line-height: 1.65;
}

.uslugi-page .note-bar strong {
  font-weight: 600;
  color: var(--navy);
}

.uslugi-page .hero-label {
  font-family: var(--source);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--lightblue);
  opacity: 0.55;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.uslugi-page .hero-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  margin-bottom: 12px;
}

.uslugi-page .hero-sub {
  font-family: var(--source);
  font-size: 15px;
  font-weight: 300;
  color: var(--lightblue);
  line-height: 1.65;
  max-width: 540px;
}

@media (max-width: 700px) {
  .uslugi-page .tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .uslugi-page .page-hero {
    padding: 36px 20px 48px;
  }

  .uslugi-page .hero-title {
    font-size: 30px;
  }

  .uslugi-page .grid-section {
    padding: 36px 16px 56px;
  }
}

@media (max-width: 440px) {
  .uslugi-page .tiles-grid {
    grid-template-columns: 1fr;
  }
}

.home-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 26px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(27,42,74,0.08);
}

.feature-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
}

.feature-text,
.section-copy {
  font-weight: 300;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
}

.feature-link {
  margin-top: 20px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 1px;
}

.two-col,
.contact-grid {
  display: grid;
  gap: 60px;
}

.two-col {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-grid {
  grid-template-columns: 1.2fr 1fr;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.service-card {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
}

.service-card:nth-child(3n) {
  border-right: none;
}

.service-card:nth-child(n+4) {
  border-top: 1px solid var(--border);
}

.service-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 44px;
  color: var(--navy);
  opacity: 0.12;
  margin-bottom: 18px;
}

.service-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.warning-bar {
  background: var(--surface);
  border-left: 4px solid var(--navy);
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 18px;
}

.warning-icon {
  width: 54px;
  min-width: 54px;
  height: 54px;
  background: var(--navy);
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.warning-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
}

.warning-text {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 14px;
}

.warning-text strong {
  color: var(--navy);
  font-weight: 600;
}

.warning-amount {
  background: var(--navy);
  color: #fff;
  padding: 16px 26px;
  border-radius: 14px;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.4px;
}

.info-block,
.info-block-alt,
.contact-hours {
  border-radius: 18px;
  padding: 28px;
  background: #fff;
}

.info-block,
.info-block-alt {
  border-left: 4px solid;
}

.info-block {
  border-color: var(--navy);
  background: var(--surface-alt);
}

.info-block-alt {
  border-color: var(--steel-mid);
  background: var(--surface-blue);
}

.info-block-label,
.contact-label,
.hours-day {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
  margin-bottom: 8px;
}

.info-block-value,
.contact-value,
.stat-num,
.hours-time {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy);
}

.info-block-value,
.hours-time {
  font-size: 22px;
  margin-bottom: 6px;
}

.info-block-sub {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy);
}

.contact-value {
  font-size: 16px;
  line-height: 1.6;
}

.contact-hours {
  border-left: 4px solid var(--navy);
  background: var(--surface-alt);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.hours-row:last-child {
  border-bottom: none;
}

.map-embed {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(27, 42, 74, 0.08);
  min-height: 420px;
  margin-bottom: 40px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.dojazd-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
  grid-auto-rows: auto;
}

.dojazd-grid .map-embed {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: stretch;
  justify-self: stretch;
  min-height: 420px;
}

@media (max-width: 680px) {
  .dojazd-grid {
    grid-template-columns: 1fr;
  }

  .dojazd-grid .map-embed {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }
}

/* Utility for adding consistent bottom spacing to main sections */
.page-main-section {
  margin-bottom: 40px;
}

/* Space below bank accounts block to separate it from the footer */
.bank-accounts {
  margin-bottom: 40px;
}

/* Modal for form submission feedback */
.modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  background: rgba(11,22,40,0.45);
  z-index: 2000;
}
.modal[hidden] { display: none; }
.modal-inner {
  position: relative;
  background: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(11,22,40,0.2);
  max-width: 520px;
  width: calc(100% - 48px);
  text-align: center;
}
.modal-message { color: var(--navy); font-weight: 600; }
.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #667;
  cursor: pointer;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(12px);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(10, 34, 74, 0.95);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 18px 40px rgba(11, 22, 40, 0.22);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

form {
  display: grid;
  gap: 18px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  color: var(--navy);
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.75;
  margin-bottom: 8px;
}

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.footer-meta {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}

.footer-hours {
  display: grid;
  gap: 10px;
  min-width: 240px;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-hours-title {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-hours-row span {
  display: inline-block;
}

.footer-data {
  display: grid;
  gap: 10px;
  min-width: 280px;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-data-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.footer-data-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer-data-row span:first-child {
  font-weight: 600;
  color: var(--navy);
}

.footer-data-copy {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-data-copy span {
  white-space: nowrap;
}

.footer-copy-btn {
  margin-left: 20px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  cursor: pointer;
}

.footer-copy-btn:hover {
  background: var(--surface);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1120px;
  margin: 32px auto 0;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .nav-inner {
    padding: 0 20px;
  }

  .home-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  nav {
    position: static;
  }

  .nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 0 18px;
  }

  .nav-brand {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .nav-contact {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
    gap: 14px;
  }

  .nav-hours {
    position: static;
    padding: 12px 18px;
    border-top: none;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.10);
  }

  .nav-hours-text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-items: center;
  }

  .nav-hours-text span {
    min-width: 0;
    display: block;
    text-align: center;
  }

  .home-cards {
    grid-template-columns: 1fr;
  }

  .button-group {
    flex-direction: column;
  }

  .page-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .footer-inner {
    padding: 0 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .footer-data {
    width: 100%;
  }

  .footer-data-row {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
    align-items: start;
  }

  .footer-data-copy {
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
  }

  .footer-data-copy span {
    white-space: normal;
    word-break: break-word;
  }

  .footer-copy-btn {
    margin-left: 0;
  }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .footer-bottom {
    padding: 0 18px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-hours {
    background: var(--navy);
    border-top: none;
  }

  .nav-hours-text {
    grid-template-columns: 1fr;
  }

  body.oplaty-page thead th,
  body.oplaty-page tbody td {
    font-size: 12px;
  }

  body.oplaty-page thead th {
    font-size: 8px;
  }
}

body.oplaty-page nav,
body.oplaty-page .footer {
  display: block;
}

body.oplaty-page header:not(.page-hero) {
  background: var(--navy);
  padding: 48px 0 76px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
}

body.oplaty-page .deco {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 220px;
  display: flex;
  gap: 16px;
  padding: 0 28px;
  opacity: .035;
}

body.oplaty-page .deco span {
  width: 1px;
  background: white;
  display: block;
}

body.oplaty-page .hi {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

body.oplaty-page .slabel {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--surface);
  opacity: .55;
  margin-bottom: 14px;
  font-weight: 400;
}

body.oplaty-page header h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 34px;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}

body.oplaty-page .lead {
  font-weight: 300;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  max-width: 520px;
}

body.oplaty-page .hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 28px 52px;
}

body.oplaty-page .hub-card {
  background: white;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: border-color .2s;
  border-radius: 18px;
}

body.oplaty-page .hub-card:hover {
  border-color: var(--steel);
}

body.oplaty-page .hub-top {
  background: var(--navy);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

body.oplaty-page .hub-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.oplaty-page .hub-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--surface);
  stroke-width: 1.5;
}

body.oplaty-page .hub-top-txt .badge {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 3px;
}

body.oplaty-page .hub-top-txt strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: white;
  display: block;
}

body.oplaty-page .hub-body {
  padding: 16px 22px;
}

body.oplaty-page .hub-body p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

body.oplaty-page .hub-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  margin: 0;
}

body.oplaty-page .hub-links li {
  font-size: 12.5px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

body.oplaty-page .hub-links li::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--steel);
  flex-shrink: 0;
}

body.oplaty-page .hub-arrow {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

body.oplaty-page .subpage {
  display: none;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

body.oplaty-page .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 28px;
  font-size: 12px;
  color: var(--text-muted);
}

body.oplaty-page .breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

body.oplaty-page .breadcrumb-sep {
  color: var(--border);
}

body.oplaty-page .sec-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}

body.oplaty-page .sec-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 36px;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
}

body.oplaty-page .sec-num-text .slabel2 {
  font-size: 9.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: .5;
  margin-bottom: 4px;
}

body.oplaty-page .sec-num-text h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.3px;
}

body.oplaty-page .intro-block,
body.oplaty-page .tax-warning,
body.oplaty-page .vat-note,
body.oplaty-page .contact-tile {
  border-radius: 18px;
}

body.oplaty-page .intro-block {
  background: var(--surface-blue);
  border-left: 3px solid var(--navy);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-weight: 300;
  font-size: 13.5px;
  color: var(--text-muted);
}

body.oplaty-page .subsec {
  margin-bottom: 36px;
}

body.oplaty-page .subsec-head {
  margin-bottom: 14px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--border);
}

body.oplaty-page .subsec-head-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

body.oplaty-page .subsec-roman {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 10px;
  color: white;
  background: var(--navy);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.oplaty-page .subsec-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
}

body.oplaty-page .subsec-desc {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 36px;
}

body.oplaty-page .eg-label,
body.oplaty-page .links-section-label,
body.oplaty-page .tt-label,
body.oplaty-page .law-link-label {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: .5;
  margin-bottom: 10px;
}

body.oplaty-page .tbl-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 14px;
}

body.oplaty-page table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

body.oplaty-page thead tr {
  background: var(--navy);
}

body.oplaty-page thead th {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: 10px 18px;
  text-align: left;
  font-weight: 400;
}

body.oplaty-page tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .12s;
}

body.oplaty-page tbody tr:last-child {
  border-bottom: none;
}

body.oplaty-page tbody tr:hover {
  background: var(--surface-alt);
}

body.oplaty-page tbody td {
  padding: 11px 18px;
  font-weight: 300;
  font-size: 13.5px;
  color: var(--text);
  vertical-align: middle;
}

body.oplaty-page td.num-badge {
  width: 60px;
  text-align: center;
  vertical-align: middle;
  padding: 0 8px;
}

body.oplaty-page .nbadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 12px;
  color: white;
}

body.oplaty-page .nbadge.sub {
  font-size: 10px;
  letter-spacing: 0;
}

body.oplaty-page .nbadge.sym {
  font-size: 16px;
}

body.oplaty-page td.num-col {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  text-align: right;
  white-space: nowrap;
  width: 110px;
}

@media (max-width: 680px) {
  body.oplaty-page .tbl-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.oplaty-page table {
    width: max-content;
    min-width: 760px;
    table-layout: auto;
  }

  body.oplaty-page thead th,
  body.oplaty-page tbody td {
    white-space: nowrap;
  }

  body.oplaty-page td.num-col {
    text-align: left;
    width: auto;
  }

  body.oplaty-page td.num-badge {
    width: auto;
  }

  body.oplaty-page td.who-col {
    width: auto;
    min-width: 175px;
  }
}

body.oplaty-page td.who-col {
  font-size: 11.5px;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text-muted);
  width: 175px;
  vertical-align: top;
  line-height: 1.5;
  padding-top: 13px;
}

body.oplaty-page .tax-warning,
body.oplaty-page .vat-note {
  background: var(--surface-blue);
  border-left: 3px solid var(--navy);
  padding: 14px 20px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

body.oplaty-page .tax-warning strong,
body.oplaty-page .vat-note strong {
  font-weight: 600;
  color: var(--navy);
}

body.oplaty-page .links-block {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

body.oplaty-page .law-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 16px;
  background: var(--surface-alt);
  border-left: 3px solid var(--steel);
  text-decoration: none;
  transition: background .15s;
}

body.oplaty-page .law-link:hover {
  background: var(--surface);
}

body.oplaty-page .law-link-icon {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 20px;
}

body.oplaty-page .law-link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.oplaty-page .law-link-title {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.5;
}

body.oplaty-page .bank-card {
  border: 1px solid var(--border);
  background: white;
  margin-bottom: 16px;
  border-radius: 18px;
}

body.oplaty-page .bank-head {
  background: var(--navy);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.oplaty-page .badge2 {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

body.oplaty-page .curr {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: white;
}

body.oplaty-page .tt-block {
  background: var(--surface-alt);
  border-left: 3px solid var(--navy);
  padding: 10px 14px;
}

body.oplaty-page .tt-val {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
}

body.oplaty-page .tt-val em {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}

body.oplaty-page .contact-tile {
  background: var(--navy);
  padding: 32px 36px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-radius: 18px;
}

body.oplaty-page .contact-tile-text .tile-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  opacity: .6;
  margin-bottom: 8px;
}

body.oplaty-page .contact-tile-text p {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: white;
  line-height: 1.3;
}

body.oplaty-page .contact-tile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  padding: 12px 24px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
  white-space: nowrap;
  transition: border-color .2s;
}

body.oplaty-page .contact-tile-btn:hover {
  border-color: white;
}

body.oplaty-page .group-row td {
  background: var(--surface-alt);
  border-bottom: none !important;
}

body.oplaty-page .group-row td:first-child {
  border-left: 3px solid var(--navy);
}

body.oplaty-page .group-methods {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.oplaty-page .group-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--navy);
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

body.oplaty-page .group-moment {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--text-muted);
  padding-left: 38px;
  padding-top: 5px;
  padding-bottom: 2px;
}

body.oplaty-page .page-title {
  color: white;
}

@media (max-width: 960px) {
  body.oplaty-page .hub {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  body.oplaty-page header {
    clip-path: none;
    padding: 36px 0 36px;
  }

  body.oplaty-page .hi {
    padding: 0 20px;
  }

  body.oplaty-page .hub {
    padding: 0 20px 52px;
  }

  body.oplaty-page .contact-tile {
    flex-direction: column;
  }
}
