﻿@charset "UTF-8";
:root {
  --primary: #6784B3;
  --primary-dark: #526a94;
  --accent: #E94F50;
  --accent-hover: #d23c3d;
  --card-bg: #EAF1FC;
  --muted: #EBECEC;
  --muted-dark: #D5D7D8;
  --top-bar-bg: #F5F5F5;
  --icon-dark: #4E565A;
  --body-bg: #f4f6fa;
  --nav-h: 56px;
  --top-h: 50px;
  --white: #ffffff;
  --fsize-button: 12px;
  --oblack: #515558;
}

/* Reset / Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background: var(--body-bg);
  margin: 0;
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main, .send-section, .banner-section {
  flex: 1 0 auto;
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.6rem;
  color: var(--icon-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.3rem;
  color: var(--icon-dark);
}

h4 {
  font-size: 1.05rem;
  color: var(--oblack);
}

img {
  vertical-align: middle;
}

.nbutton {
  font-size: 12px;
  font-weight: 400;
  padding: 5px 14px;
  border-radius: 4px;
  white-space: nowrap;
  color: var(--primary);
  background: var(--body-bg);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.nbutton .label {
  display: inline-block;
  min-width: 100px;
  text-align: center;
}

.nbutton:hover {
  background: var(--muted);
  border-color: var(--primary-dark);
}

.ibutton {
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  padding: 5px 5px;
  border-radius: 4px;
  white-space: nowrap;
  color: var(--primary);
  background: transparent;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}
.ibutton .label {
  display: block;
  min-width: 20px;
  font-size: 10px;
  text-align: center;
  line-height: 10px;
}
.ibutton img {
  margin: 0;
}

.ibutton:hover {
  background: var(--muted);
  border-color: var(--primary-dark);
  border: 1px solid var(--primary-dark);
}

.linetb {
  display: inline-block;
  width: 1px;
  height: 40px;
  background: var(--primary-dark);
}

/* 1. TOP BAR */
.top-bar {
  background: var(--top-bar-bg);
  height: var(--top-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--muted-dark);
}

.top-bar__logo img {
  display: block;
}

.top-bar__track-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--icon-dark);
  white-space: nowrap;
}

.top-bar__track-group {
  max-width: 200px;
}

.top-bar__track-group .form-control {
  font-size: 12px;
  border-color: #ccc;
  border-radius: 4px 0 0 4px;
}

.top-bar__track-btn {
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 0 4px 4px 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.top-bar__track-btn:hover {
  background: var(--primary-dark);
}

.top-bar__track-btn img {
  filter: brightness(0) invert(1);
}

.btn-lang {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  color: var(--icon-dark);
  background: transparent;
  border: 1px solid transparent;
  line-height: 1.4;
}

.btn-lang:hover {
  background: #fff;
  color: var(--primary);
}

.btn-lang.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.top-bar__util-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: background 0.2s;
}

.top-bar__util-link:hover {
  background: rgba(0, 0, 0, 0.08);
}

.rbutton {
  font-size: 12px;
  font-weight: 400;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.rbutton .label {
  display: inline-block;
  min-width: 100px;
  text-align: center;
}

.rbutton:hover {
  background: var(--accent-hover);
  border-color: var(--accent);
  color: var(--white);
}

.svgbutton {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 400;
  padding: 5px 5px;
  white-space: nowrap;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.svgbutton .svgbutton__icon-wrap {
  height: 40px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 7px;
}
.svgbutton .svgbutton__icon-wrap img {
  width: 100%;
  height: 100%;
}
.svgbutton .svgbutton__label {
  display: inline-block;
  min-width: 50px;
  text-align: center;
  font-size: 8px;
  line-height: 8px;
  font-weight: 600;
}

.svgbutton:hover {
  color: var(--oblack);
}

.svgbutton:hover .svgbutton__icon-wrap {
  border-color: var(--oblack);
  background-color: var(--muted);
}

/* 2. MAIN NAV */
.main-nav {
  background: var(--card-bg);
  min-height: var(--nav-h);
  padding-top: 0;
  padding-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.main-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(103,132,179,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-nav .navbar-toggler:focus,
.main-nav .navbar-toggler:active,
.main-nav .navbar-toggler:focus-visible,
.main-nav .navbar-toggler:not(.collapsed),
.main-nav .navbar-toggler:not(.collapsed):focus,
.main-nav .navbar-toggler:not(.collapsed):active,
.main-nav .navbar-toggler:not(.collapsed):focus-visible {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}

.main-nav .nav-link {
  color: var(--icon-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  color: var(--primary);
}

.main-nav .nav-link img {
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.main-nav .nav-link:hover img {
  opacity: 1;
}

.main-nav__dropdown {
  background: var(--card-bg);
  border: 1px solid var(--muted-dark);
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(103, 132, 179, 0.18);
  min-width: 190px;
  padding: 6px 0;
  margin-top: 2px;
}
.main-nav__dropdown .dropdown-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--icon-dark);
  padding: 7px 15px;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
}
.main-nav__dropdown .dropdown-item:hover, .main-nav__dropdown .dropdown-item:focus {
  background: var(--muted);
  color: var(--primary);
}

.main-nav .nav-item.dropdown .dropdown-toggle::after {
  border-top-color: var(--icon-dark);
  vertical-align: 0.15em;
}

.main-nav .nav-item.dropdown:hover .dropdown-toggle::after,
.main-nav .nav-item.dropdown .dropdown-toggle:focus::after {
  border-top-color: var(--primary);
}

.main-nav__input-wrap {
  max-width: 150px;
}

.main-nav__input-wrap .form-control {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
}

.main-nav__input-wrap .form-control::placeholder {
  color: #999;
}

.main-nav__input-wrap .input-group-text {
  background: rgba(255, 255, 255, 0.92);
  border: none;
  padding: 0 8px;
}

#main-nav__login-sep {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0;
}

.imarrow {
  position: relative;
  left: -5px;
}

.main-nav__btn-login {
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 16px;
  border: none;
  border-radius: 4px;
  white-space: nowrap;
}

.main-nav__btn-login:hover {
  background: var(--accent-hover);
  color: #fff;
}

.main-nav__btn-register {
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  white-space: nowrap;
}

.main-nav__btn-register:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.main-nav__btn-register img {
  filter: brightness(0) invert(1);
}

/* 3. SEND SECTION */
.send-section {
  padding: 32px 0 28px;
}

.send-section__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  letter-spacing: 0.3px;
}

.send-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 20px 22px 16px;
  min-width: 140px;
  max-width: 170px;
  text-align: center;
  color: var(--icon-dark);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.15s;
  position: relative;
}

.send-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(103, 132, 179, 0.25);
  transform: translateY(-2px);
  color: var(--primary);
}

.send-card__icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.send-card__icon {
  max-width: 100%;
  max-height: 100%;
}

.send-card__label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: inherit;
}

.send-card__arrow {
  margin-top: 10px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.send-card:hover .send-card__arrow {
  opacity: 1;
}

.send-sep {
  opacity: 0.35;
}

/* 4. BANNER SECTION */
.banner-section {
  padding: 0 0 32px;
}

.banner-placeholder {
  width: 100%;
  min-height: 260px;
  background: linear-gradient(135deg, var(--card-bg) 0%, #d6e4f9 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.banner-placeholder::after {
  content: "BANNER";
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.15;
  letter-spacing: 8px;
}

/* 5. FOOTER */
.site-footer {
  flex-shrink: 0;
  background: var(--muted);
  padding: 36px 0 0px;
  border-top: 1px solid var(--primary);
  color: var(--oblack);
}
.site-footer a {
  text-decoration: none;
  color: var(--oblack);
}
.site-footer a:hover {
  color: var(--primary);
}

.site-footer__copy {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}

.site-footer__copy p {
  margin: 0;
}

.site-footer__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.site-footer__address {
  font-size: 12px;
  color: var(--oblack);
  line-height: 1.65;
  margin-bottom: 10px;
}

.site-footer__contact-heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--oblack);
  margin-bottom: 4px;
}

.site-footer__subheading {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: 8px;
}

.site-footer__subheading:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__list li {
  font-size: 13px;
  color: var(--icon-dark);
  padding: 1px 0;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  cursor: pointer;
  transition: color 0.2s;
}

.site-footer__list li::before {
  content: "•";
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.site-footer__list li:hover {
  color: var(--primary);
}

#footer_left {
  position: absolute;
  left: -10px;
  transform: translateX(-100%);
}

.footer-text {
  text-align: center;
  font-size: 16px;
  color: #d8d8d8;
  margin-top: 10px;
}

/* Pozostałe style, media queries, Swiper, subpage, itd. */
@media (max-width: 1400px) {
  .site-footer__copy {
    font-size: 10px;
    color: #888;
    line-height: 1.5;
  }
  .site-footer__heading {
    font-size: 11px;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
  }
  .site-footer__address {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 9px;
  }
  .site-footer__contact-heading {
    font-size: 11px;
    color: var(--oblack);
    margin-bottom: 4px;
  }
  .site-footer__subheading {
    display: block;
    font-size: 12px;
    margin-top: 8px;
  }
  .site-footer__list li {
    font-size: 11px;
    padding: 1px 0;
    gap: 4px;
  }
}
/* ────────────────────────────────────────────────────────
 RWD  –  MOBILE  (≤ 991 px)
 ──────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  /* Top bar – stack vertically */
  .top-bar {
    height: auto;
    padding: 10px 0;
  }
  .top-bar__track {
    order: 3;
    width: 100%;
    margin-top: 8px;
  }
  .top-bar__track-group {
    max-width: 100%;
  }
  .main-nav .container {
    min-height: var(--nav-h);
    align-items: center;
    align-content: flex-start;
  }
  .main-nav .navbar-toggler {
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .main-nav .navbar-collapse {
    width: 100%;
    flex-basis: 100%;
  }
  .main-nav .navbar-collapse.collapsing {
    overflow: hidden;
  }
  /* Nav bar login – full width */
  .main-nav__login {
    width: 100%;
    padding-bottom: 10px;
  }
  .main-nav.navbar {
    border-bottom: 1px solid var(--muted-dark);
  }
  .main-nav__input-wrap {
    max-width: 100%;
    flex: 1 1 120px;
  }
  .main-nav__btn-login,
  .main-nav__btn-register {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
  }
  #main-nav__login-sep {
    flex-direction: row;
  }
  /* Send cards – 2 col grid */
  .send-options {
    gap: 12px !important;
  }
  .send-card {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 calc(50% - 12px);
  }
  /* Banner */
  .banner-placeholder {
    min-height: 180px;
  }
  #wycenaMenu {
    max-width: 180px;
  }
  /* Dropdown podmenu – mobile (navbar zwinięty) */
  .main-nav__dropdown {
    position: static !important;
    float: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #d8e8f8;
    border-left: 3px solid var(--primary);
    margin: 0 0 6px 16px;
    padding: 4px 0;
    width: auto;
    min-width: 0;
  }
  .main-nav__dropdown .dropdown-item {
    font-size: 13px;
    padding: 8px 16px;
    color: var(--icon-dark);
  }
  .main-nav__dropdown .dropdown-item:hover, .main-nav__dropdown .dropdown-item:focus {
    background: var(--muted);
    color: var(--primary);
  }
  .main-nav .nav-item.dropdown .dropdown-toggle::after {
    float: right;
    margin-top: 6px;
  }
}
.top-bar__lang-select {
  background: var(--top-bar-bg);
  border: 1px solid var(--muted-dark);
  color: var(--icon-dark);
  font-weight: 400;
  font-size: var(--fsize-button);
  min-width: 64px;
  padding-left: 12px;
  padding-right: 28px;
  box-shadow: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%234E565A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px 16px;
  cursor: pointer;
}

.top-bar__lang-select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: none;
}

/* ────────────────────────────────────────────────────────
 RWD  –  SMALL MOBILE  (≤ 575 px)
 ──────────────────────────────────────────────────────── */
@media (max-width: 575.98px) {
  .send-section__title {
    font-size: 17px;
  }
  .send-card {
    padding: 14px 10px 12px;
  }
  .send-card__icon-wrap {
    width: 44px;
    height: 44px;
  }
  .send-card__label {
    font-size: 11px;
  }
  /* Footer – single column on very small */
  .site-footer .row > [class*=col-6] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 991.98px) and (max-width: 1199.98px) {
  #wycenaMenu {
    display: none !important;
  }
}
/* ────────────────────────────────────────────────────────
 Swiper (banner slider)
   –  Using Swiper.js library (https://swiperjs.com/)
    –  Basic styles for slider container and slides
 ──────────────────────────────────────────────────────── */
.swiper {
  width: 100%;
  height: 380px;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  background: #3a6fa8;
  display: flex;
  align-items: center;
}

/* Warstwy slajdu */
/* Gradient overlay – zapewnia czytelność tekstu na obrazku */
.swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
  z-index: 1;
}

.slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 50px 80px;
  color: #fff;
  max-width: 45%;
}

.slide-title {
  font-size: 2.9rem;
  color: #fff;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.slide-subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
  .slide-content {
    max-width: 40%;
    padding: 20px 24px;
  }
  .slide-title {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  .slide-subtitle {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .swiper {
    height: 220px;
  }
  .slide-content {
    max-width: 100%;
    padding: 20px 24px;
  }
  .slide-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  .slide-subtitle {
    font-size: 0.9rem;
  }
}
/* ── Swiper navigation arrows ─────────────────────────── */
.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-size: 40px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  font-weight: 900;
}

.swiper-button-prev {
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  backdrop-filter: blur(2px);
}
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.45);
}

.swiper-button-next {
  color: #000;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  backdrop-filter: blur(2px);
}
.swiper-button-next:hover {
  background: rgb(255, 255, 255);
}

/* ── Swiper pagination bullets ────────────────────────── */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.55;
  border: 1.5px solid rgba(0, 0, 0, 0.35);
}

.swiper-pagination-bullet-active {
  background: #000;
  opacity: 1;
  border-color: #000;
}

/* other */
.courier-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  align-items: center;
  justify-items: center;
  margin: 40px 0 0 0;
  background: #fdfdfd;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #eee;
}

.courier-grid img {
  max-width: 90px;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
  display: block;
}

.courier-grid img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
}

.footer-text {
  text-align: center;
  font-size: 16px;
  color: #d8d8d8;
  margin-top: 10px;
}

@media (max-width: 600px) {
  h1 {
    font-size: 22px !important;
  }
  .courier-grid {
    padding: 10px;
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }
  .courier-grid img {
    max-width: 100px;
  }
}
/* ────────────────────────────────────────────────────────
 SUBPAGE  –  breadcrumb, hero, content, features
 ──────────────────────────────────────────────────────── */
/* Sticky nav */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* Breadcrumb */
.subpage-breadcrumb {
  background: #ffffff;
  border-bottom: 1px solid #D5D7D8;
  padding: 10px 0;
}
.subpage-breadcrumb .breadcrumb {
  font-size: 13px;
}
.subpage-breadcrumb .breadcrumb-item a {
  color: #6784B3;
  text-decoration: none;
}
.subpage-breadcrumb .breadcrumb-item a:hover {
  color: #526a94;
  text-decoration: underline;
}
.subpage-breadcrumb .breadcrumb-item.active {
  color: #4E565A;
}

/* Main content area */
.subpage-content {
  padding: 0 0 48px;
  flex: 1 0 auto;
}

.subpage-block {
  margin-bottom: 40px;
}
.subpage-block:first-child {
  margin-top: 0;
}

/* ── Hero block (full-width) ── */
.subpage-hero {
  background: linear-gradient(135deg, #6784B3 0%, #3f5578 100%);
  padding: 56px 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.subpage-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  right: 120px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.subpage-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.subpage-hero__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.subpage-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 8px;
  font-weight: 400;
  max-width: 520px;
}

.subpage-hero__badge {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  background: #E94F50;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.subpage-hero__badge-value {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.subpage-hero__badge-label {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* ── Lead text ── */
.subpage-lead {
  font-size: 16px;
  line-height: 1.8;
  color: #515558;
}

/* ── Section title ── */
.subpage-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6784B3;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.subpage-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #E94F50;
  border-radius: 2px;
}

/* ── Feature cards ── */
.subpage-feature-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.subpage-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(103, 132, 179, 0.15);
}
.subpage-feature-card__icon {
  width: 56px;
  height: 56px;
  background: #EAF1FC;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #6784B3;
}
.subpage-feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #4E565A;
  margin-bottom: 10px;
}
.subpage-feature-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #515558;
  margin: 0;
}

/* Article text */
.subpage-article {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 40px;
  border: 1px solid #eee;
}
.subpage-article p {
  font-size: 14px;
  line-height: 1.75;
  color: #515558;
  margin-bottom: 16px;
}
.subpage-article h2 {
  font-size: 1.3rem;
  color: #6784B3;
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #EAF1FC;
}

/* Info box */
.subpage-infobox {
  background: #EAF1FC;
  border-left: 4px solid #6784B3;
  border-radius: 0 12px 12px 0;
  padding: 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.subpage-infobox__title {
  font-size: 16px;
  font-weight: 700;
  color: #6784B3;
  margin-bottom: 8px;
}
.subpage-infobox p {
  font-size: 13px;
  color: #515558;
  margin: 0 0 8px;
}
.subpage-infobox a {
  color: #E94F50;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}
.subpage-infobox a:hover {
  text-decoration: underline;
  color: #d23c3d;
}

/* CTA button */
.subpage-cta {
  display: inline-block;
  background: #E94F50;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 40px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.3px;
}
.subpage-cta:hover {
  background: #d23c3d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(233, 79, 80, 0.35);
}
.subpage-cta--lg {
  font-size: 18px;
  padding: 16px 52px;
}

/* ── Steps banner ── */
.subpage-steps-banner {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 40px 40px;
  position: relative;
  overflow: hidden;
}
.subpage-steps-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #6784B3, #E94F50);
  border-radius: 4px 0 0 4px;
}
.subpage-steps-banner__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #6784B3;
  margin-bottom: 24px;
}

.subpage-steps-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.subpage-step-h {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1 1 160px;
}
.subpage-step-h__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #6784B3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.subpage-step-h__text {
  font-size: 13px;
  line-height: 1.5;
  color: #515558;
}
.subpage-step-h__text strong {
  color: #4E565A;
  font-size: 14px;
}

/* ── RWD subpage ── */
@media (max-width: 991.98px) {
  .subpage-hero {
    padding: 36px 0;
  }
  .subpage-hero__title {
    font-size: 2rem;
  }
  .subpage-hero__badge {
    width: 120px;
    height: 120px;
  }
  .subpage-hero__badge-value {
    font-size: 1.6rem;
  }
  .subpage-article {
    padding: 24px 20px;
  }
  .subpage-steps-banner {
    padding: 28px 24px;
  }
}
@media (max-width: 575.98px) {
  .subpage-hero {
    padding: 28px 0;
  }
  .subpage-hero__inner {
    flex-direction: column;
    text-align: center;
  }
  .subpage-hero__title {
    font-size: 1.6rem;
  }
  .subpage-hero__subtitle {
    font-size: 0.95rem;
  }
  .subpage-hero__badge {
    width: 120px;
    height: 120px;
  }
  .subpage-hero__badge-value {
    font-size: 1.4rem;
  }
  .subpage-hero__badge-label {
    font-size: 9px;
  }
  .subpage-article {
    padding: 18px 16px;
  }
  .subpage-steps-banner {
    padding: 20px 16px;
  }
  .subpage-steps-row {
    flex-direction: column;
    gap: 18px;
  }
  .subpage-feature-card {
    padding: 24px 20px;
  }
}
