:root {
  --orange: #ff5c00;
  --orange-dark: #d94f00;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --card: #ffffff;
  --navy: #002850;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.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;
}

img,
video {
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.top-slider {
  background: #fff;
  padding: 0 14px;
}

.top-slider-shell {
  width: 100%;
  height: clamp(88px, 8.4vw, 120px);
  min-height: 0;
  max-height: none;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  isolation: isolate;
}

.slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 16px;
  align-items: center;
  height: 100%;
  min-height: 0;
  padding: 10px 14px 10px 22px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
  position: absolute;
  inset: 0;
}

.slide-image-only {
  display: block;
  height: 100%;
  padding: 0;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

.slide h1 {
  margin: 3px 0 4px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.slide p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.slide-media {
  height: 100%;
  min-height: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 0;
}

.slide-media.has-media {
  background: #fff;
}

.slide-media img,
.slide-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.slide-empty {
  width: 100%;
  height: 1px;
}

.slider-actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0 0;
}

.slider-actions-left,
.slider-actions-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 92, 0, 0.28);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.slider-action:hover {
  background: var(--orange-dark);
}

.market-slogan {
  margin: 10px 0 0;
  color: var(--orange);
  font-size: clamp(18px, 2.4vw, 32px);
  font-style: italic;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.04em;
  text-align: center;
}

.career-panel {
  display: none;
  width: min(980px, calc(100% - 28px));
  margin: 22px auto 0;
}

.career-panel:target {
  display: block;
}

.career-panel-inner {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
}

.career-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 92, 0, 0.1);
  color: var(--orange);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.career-panel h2 {
  margin: 10px 44px 16px 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.career-panel h3 {
  margin: 28px 0 10px;
  color: var(--orange);
  font-size: 22px;
  font-style: italic;
  letter-spacing: -0.035em;
}

.career-panel p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.career-panel ul {
  display: grid;
  gap: 9px;
  margin: 0 0 14px;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.5;
}

.career-panel li::marker {
  color: var(--orange);
}

.career-levels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0;
}

.career-levels div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 92, 0, 0.08);
}

.career-levels strong,
.career-levels span {
  display: block;
}

.career-levels strong {
  color: var(--orange);
  margin-bottom: 6px;
}

.career-levels span {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.career-checks {
  list-style: none;
  padding-left: 0 !important;
}

.career-checks li::before {
  content: "✓";
  color: var(--orange);
  margin-right: 8px;
  font-weight: 800;
}

.career-warning {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff1f1;
  color: #b91c1c !important;
  font-weight: 800 !important;
}

.content-blocks {
  width: min(1180px, calc(100% - 28px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-block {
  min-height: 260px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
}

.info-block-shopping {
  background:
    linear-gradient(135deg, rgba(255, 92, 0, 0.08), rgba(255, 255, 255, 0.94)),
    #fff;
}

.info-block-business {
  background:
    linear-gradient(135deg, rgba(0, 40, 80, 0.06), rgba(255, 255, 255, 0.96)),
    #fff;
}

.info-block-courier {
  background:
    linear-gradient(135deg, rgba(255, 92, 0, 0.06), rgba(0, 40, 80, 0.05)),
    #fff;
}

.block-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 92, 0, 0.1);
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-block h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.info-block p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.info-block p:last-child {
  margin-bottom: 0;
}

.how-it-works {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 92, 0, 0.18);
}

.how-it-works h3,
.block-section h3 {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 20px;
  font-style: italic;
  letter-spacing: -0.03em;
}

.block-section {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 92, 0, 0.18);
}

.plain-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.plain-list li::marker {
  color: var(--orange);
}

.columns-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-left: 0;
  list-style-position: inside;
}

.how-it-works ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 700;
}

.how-it-works li::marker {
  color: var(--orange);
  font-weight: 800;
}

.price-note {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 92, 0, 0.08);
}

.price-note h3 {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 20px;
  font-style: italic;
  letter-spacing: -0.03em;
}

.shopping-benefits {
  margin-top: 20px;
}

.shopping-benefits h3 {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 20px;
  font-style: italic;
  letter-spacing: -0.03em;
}

.shopping-benefits ul {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.shopping-benefits li {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.shopping-benefits li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
}

.shopping-benefits strong {
  display: block;
  color: var(--orange);
  font-size: 18px;
  font-style: italic;
  line-height: 1.35;
}

.courier-cta .slider-action {
  margin-top: 10px;
}

.block-action {
  margin-top: 18px;
}

.social-stack {
  display: grid;
  gap: 10px;
  margin-top: calc(42px + 20mm);
}

.social-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 2px solid currentColor;
  background: #fff;
  color: var(--orange);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.social-link-facebook {
  color: #1877f2;
}

.social-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: currentColor;
}

.social-icon svg {
  fill: #fff;
}

.social-link span:not(.social-icon) {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-link strong {
  font-size: 15px;
  font-style: italic;
  text-align: right;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.block-image-link {
  display: block;
  margin: 16px 0 20px;
  border-radius: 20px;
}

.block-image {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.block-image-link:hover .block-image {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.2);
}

.info-block-empty {
  background: transparent;
  border-style: dashed;
  box-shadow: none;
  opacity: 0.45;
}

.slide-visual {
  width: 70px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #ff7a1a 0 34%, #ff5c00 35% 58%, rgba(255, 92, 0, 0.15) 59%);
}

.slide-visual strong {
  font-size: 22px;
  letter-spacing: -0.08em;
}

.route-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
}

.route-dot-a {
  top: 22%;
  left: 18%;
}

.route-dot-b {
  right: 18%;
  top: 36%;
}

.route-dot-c {
  bottom: 20%;
  left: 42%;
}

.slider-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.slider-btn:hover {
  background: var(--orange);
}

.slider-btn-prev {
  left: 18px;
}

.slider-btn-next {
  right: 18px;
}

.slider-dots {
  position: absolute;
  left: 42px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 4;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.slider-dots button.is-active {
  width: 28px;
  background: var(--orange);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand span span {
  color: var(--orange);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--orange), #ff9b45);
  box-shadow: 0 12px 28px rgba(255, 92, 0, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.btn-primary,
.btn-small {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 92, 0, 0.28);
}

.btn-primary:hover,
.btn-small:hover {
  background: var(--orange-dark);
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
}

.btn-ghost {
  border-color: var(--line);
  background: #fff;
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero,
.section {
  padding: 86px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
}

.hero h2,
.section-head h2,
.split h2,
.contact h2 {
  margin: 10px 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero p,
.contact p {
  max-width: 660px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.stat-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.stat-card div {
  padding: 18px;
  border-radius: 18px;
  background: var(--soft);
}

.stat-card strong {
  display: block;
  color: var(--orange);
  font-size: 30px;
  letter-spacing: -0.05em;
}

.stat-card span {
  color: var(--muted);
  font-weight: 600;
}

.section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-dark {
  color: #fff;
  background: linear-gradient(135deg, #07111f, var(--navy));
}

.section-dark .eyebrow,
.section-dark h2 {
  color: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  color: var(--orange);
  margin-right: 10px;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-contact {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 9999;
  margin: 0;
  padding: 0;
}

.site-contact-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 14px 18px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid var(--orange);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.24);
}

.contact-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--orange);
  font-size: 18px;
  font-style: italic;
}

.contact-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.legal-footer {
  width: min(1180px, calc(100% - 28px));
  margin: 28px auto 38px;
}

.legal-footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), #002850);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.16);
}

.legal-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links-feedback a {
  background: var(--orange);
}

.legal-page {
  width: min(980px, calc(100% - 28px));
  margin: 28px auto 42px;
}

.legal-card {
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
}

.legal-card h1 {
  margin: 12px 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.legal-card h2 {
  margin: 24px 0 8px;
  color: var(--orange);
  font-size: 22px;
  font-style: italic;
  letter-spacing: -0.035em;
}

.legal-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.legal-intro {
  color: var(--ink) !important;
  font-weight: 700;
}

.legal-note {
  margin-top: 24px !important;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 92, 0, 0.08);
  color: var(--ink) !important;
  font-weight: 700;
}

.feedback-form {
  margin-top: 18px;
}

.admin-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #07111f, #0f172a);
}

.admin-shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.admin-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.admin-header h1 {
  margin: 0;
  letter-spacing: -0.04em;
}

.admin-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.alert {
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: 700;
}

.alert-ok {
  color: #0f5132;
  background: #d1e7dd;
}

.alert-error {
  color: #842029;
  background: #f8d7da;
}

.slide-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  font-size: 14px;
}

.slide-table th,
.slide-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.slide-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-thumb {
  width: 96px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.login-wrap {
  width: min(430px, calc(100% - 32px));
  min-height: 100vh;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .slide {
    grid-template-columns: minmax(0, 1fr) 130px;
    padding: 10px 12px;
  }

  .slider-btn {
    display: none;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .contact-box,
  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-contact-inner {
    grid-template-columns: 1fr;
  }

  .legal-footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .top-slider-shell {
    border-radius: 12px;
  }

  .slide h1 {
    font-size: 16px;
  }

  .slide p {
    display: none;
  }

  .slide {
    grid-template-columns: 1fr;
  }

  .slider-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
  }

  .slider-actions-left,
  .slider-actions-right {
    justify-content: center;
    gap: 5px;
  }

  .slider-action {
    min-height: 30px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 10px;
  }

  .market-slogan {
    font-size: 18px;
    padding: 0 8px;
  }

  .career-panel-inner {
    padding: 24px 18px;
  }

  .career-levels {
    grid-template-columns: 1fr;
  }

  .content-blocks {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .info-block-empty {
    display: none;
  }

  .hero,
  .section {
    padding: 56px 0;
  }

  .slide-table {
    display: block;
    overflow-x: auto;
  }

  .site-contact {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .site-contact-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-card {
    padding: 10px 12px;
  }

  .legal-card,
  .legal-footer-inner {
    padding: 20px;
  }

  .social-link {
    grid-template-columns: 30px 1fr;
  }

  .social-link strong {
    grid-column: 2;
    text-align: left;
  }
}
