:root {
  --red: #d7111f;
  --red-dark: #980b14;
  --black: #07080a;
  --ink: #14171c;
  --muted: #616873;
  --line: #e7e9ee;
  --soft: #f5f6f8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 8, 10, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

img {
  display: block;
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 76px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.88), rgba(7, 8, 10, 0.18));
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 8, 10, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #191b20 72%);
  border: 2px solid rgba(255, 255, 255, 0.36);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transition: width 0.22s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(215, 17, 31, 0.25);
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle.active {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-slider {
  position: relative;
  min-height: 760px;
  height: 100vh;
  max-height: 940px;
  overflow: hidden;
  background: var(--black);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 120px clamp(18px, 6vw, 94px) 90px;
  opacity: 0;
  visibility: hidden;
  background-image: linear-gradient(90deg, rgba(7, 8, 10, 0.9) 0%, rgba(7, 8, 10, 0.66) 42%, rgba(7, 8, 10, 0.16) 100%), var(--slide-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 2.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-content {
  width: min(760px, 100%);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slide h1,
.slide h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.65rem, 6vw, 6.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.slide p {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.slider-controls {
  position: absolute;
  left: clamp(18px, 6vw, 94px);
  right: clamp(18px, 6vw, 94px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.slider-btn,
.dot {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 38px;
  height: 5px;
  padding: 0;
  border-radius: 999px;
}

.dot.active {
  background: var(--red);
  border-color: var(--red);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-band div {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 48px);
  background: var(--white);
}

.stats-band div::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  content: "";
  background: var(--red);
  transition: width 1.1s ease;
}

.stats-band.visible div::after {
  width: 100%;
}

.stats-band.visible div:nth-child(2)::after {
  transition-delay: 0.12s;
}

.stats-band.visible div:nth-child(3)::after {
  transition-delay: 0.24s;
}

.stats-band.visible div:nth-child(4)::after {
  transition-delay: 0.36s;
}

.stats-band strong {
  display: block;
  color: var(--red);
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(18px, 6vw, 94px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-heading h2,
.service-detail h2,
.quote-band h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.timeline-item,
.blog-card,
.legal-panels article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 8, 10, 0.06);
}

.service-card {
  min-height: 280px;
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(215, 17, 31, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 36px;
  color: var(--white);
  background: var(--black);
  border-left: 6px solid var(--red);
  font-weight: 900;
}

.service-card h3,
.timeline-item h3,
.blog-card h3 {
  margin: 0 0 14px;
  font-size: 1.18rem;
}

.service-card p,
.timeline-item p,
.blog-card p,
.service-detail p,
.quote-band p,
.footer-brand p,
.footer-contact p,
.legal-panels p {
  color: var(--muted);
  line-height: 1.68;
}

.service-page {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 6vw, 94px);
  background: var(--soft);
}

.service-visual {
  position: relative;
}

.service-visual::before {
  position: absolute;
  left: -22px;
  bottom: -22px;
  z-index: 0;
  width: 46%;
  height: 48%;
  content: "";
  background: var(--red);
}

.service-visual img {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--red);
  clip-path: polygon(14% 49%, 38% 73%, 86% 18%, 100% 31%, 40% 100%, 0 60%);
}

.process {
  color: var(--white);
  background: var(--black);
}

.process .section-heading h2 {
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-item {
  min-height: 250px;
  padding: 28px;
  background: #111318;
  border-color: rgba(255, 255, 255, 0.12);
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.timeline-item p {
  color: rgba(255, 255, 255, 0.68);
}

.blog-section {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-list-grid {
  grid-template-columns: repeat(2, 1fr);
}

.blog-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.blog-card img {
  height: 210px;
  object-fit: cover;
}

.blog-card div {
  padding: 24px;
}

.blog-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  padding: 22px 24px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.quote-band {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 36px;
  align-items: center;
  margin: clamp(18px, 6vw, 94px);
  padding: clamp(34px, 6vw, 70px);
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #17191f 62%, var(--red-dark));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-band h2 {
  color: var(--white);
}

.quote-band p {
  color: rgba(255, 255, 255, 0.72);
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
}

.quote-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.quote-form select {
  color-scheme: dark;
}

.inner-hero {
  display: flex;
  align-items: end;
  min-height: 620px;
  padding: 150px clamp(18px, 6vw, 94px) 86px;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(7, 8, 10, 0.92), rgba(7, 8, 10, 0.56)), url("assets/images/logistics-hub.png");
  background-position: center;
  background-size: cover;
}

.inner-hero-content {
  max-width: 900px;
}

.inner-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 6rem);
  line-height: 0.98;
}

.inner-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
  line-height: 1.7;
}

.service-deep {
  display: grid;
  gap: 28px;
}

.deep-card {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 8, 10, 0.06);
}

.deep-card.reverse img {
  order: 2;
}

.deep-card img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.deep-card h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.35rem);
  line-height: 1.06;
}

.deep-card p {
  color: var(--muted);
  line-height: 1.72;
}

.operation-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 0 clamp(18px, 6vw, 94px) clamp(72px, 10vw, 130px);
  padding: clamp(34px, 6vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #17191f 64%, var(--red-dark));
  border-radius: 8px;
}

.operation-band h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.operation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.operation-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.operation-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.operation-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(72px, 9vw, 118px) clamp(18px, 6vw, 94px);
}

.content-main {
  max-width: 920px;
}

.content-main h2,
.content-main h3 {
  color: var(--black);
  line-height: 1.1;
}

.content-main h2 {
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.content-main h3 {
  margin: 34px 0 12px;
  font-size: 1.35rem;
}

.content-main p,
.content-main li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.content-main ul,
.content-main ol {
  padding-left: 22px;
}

.side-panel {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 26px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
}

.side-panel h3 {
  margin: 0 0 16px;
}

.side-panel a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.side-panel a:hover {
  color: var(--white);
}

.content-hero-image {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 36px;
}

.page-kicker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.page-kicker article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.page-kicker strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 1.4rem;
}

.blog-list-hero {
  background-image: linear-gradient(90deg, rgba(7, 8, 10, 0.92), rgba(7, 8, 10, 0.58)), url("assets/images/blog-rota.png");
}

.blog-card.big {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
}

.blog-card.big img {
  height: 100%;
  min-height: 280px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 28px;
  color: var(--muted);
  font-weight: 800;
}

.article-meta span {
  padding: 8px 12px;
  background: var(--soft);
  border-radius: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 8, 10, 0.06);
}

.contact-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--black);
}

.site-footer {
  color: var(--white);
  background: #050608;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 34px;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 94px) 42px;
}

.footer-top h3 {
  margin: 0 0 18px;
  font-size: 0.95rem;
}

.footer-top a {
  display: block;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.4;
}

.footer-top a:hover {
  color: var(--white);
}

.footer-brand p {
  max-width: 370px;
  color: rgba(255, 255, 255, 0.62);
}

.legal-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(18px, 6vw, 94px) 42px;
}

.legal-panels article {
  padding: 22px;
  background: #101216;
  border-color: rgba(255, 255, 255, 0.1);
}

.legal-panels h3 {
  margin: 0 0 10px;
}

.legal-panels p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 6vw, 94px);
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.cookie-consent {
  position: fixed;
  left: clamp(16px, 4vw, 44px);
  right: clamp(16px, 4vw, 44px);
  bottom: 24px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
  color: var(--white);
  background: rgba(7, 8, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  opacity: 0;
  overflow: hidden;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.cookie-consent.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cookie-consent.hide {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
}

.cookie-glow {
  position: absolute;
  left: -90px;
  top: -90px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(215, 17, 31, 0.54), rgba(215, 17, 31, 0));
  pointer-events: none;
}

.cookie-copy {
  position: relative;
}

.cookie-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.cookie-icon::before {
  width: 24px;
  height: 24px;
  content: "";
  background:
    radial-gradient(circle at 65% 32%, transparent 0 4px, var(--white) 4.5px 5.5px, transparent 6px),
    radial-gradient(circle at 35% 64%, var(--white) 0 2.5px, transparent 3px),
    radial-gradient(circle at 58% 72%, var(--white) 0 2px, transparent 2.5px),
    radial-gradient(circle at 40% 38%, var(--white) 0 2px, transparent 2.5px),
    radial-gradient(circle at 50% 50%, transparent 0 11px, var(--white) 11.5px 12.5px, transparent 13px);
  border-radius: 50%;
}

.cookie-icon span,
.cookie-icon i {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
}

.cookie-icon span {
  right: 13px;
  top: 13px;
  width: 6px;
  height: 6px;
}

.cookie-icon i {
  left: 15px;
  bottom: 15px;
  width: 4px;
  height: 4px;
}

.cookie-copy .eyebrow {
  margin-bottom: 6px;
  font-size: 0.68rem;
}

.cookie-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(0.98rem, 1.45vw, 1.24rem);
  line-height: 1.25;
  font-weight: 800;
}

.cookie-copy p {
  max-width: 780px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.52;
}

.cookie-copy a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  border-bottom: 2px solid var(--red);
}

.cookie-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .btn.secondary {
  color: var(--white);
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    --mobile-header-height: 82px;
    grid-template-columns: auto auto;
    gap: 14px;
    background: rgba(7, 8, 10, 0.96);
    min-height: var(--mobile-header-height);
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    position: relative;
    z-index: 31;
  }

  .main-nav.open {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--mobile-header-height);
    bottom: 0;
    display: grid;
    grid-auto-rows: max-content;
    justify-content: stretch;
    align-content: start;
    gap: 10px;
    padding: 26px clamp(18px, 6vw, 34px) 34px;
    background:
      linear-gradient(180deg, rgba(7, 8, 10, 0.98), rgba(7, 8, 10, 0.94)),
      radial-gradient(circle at 12% 18%, rgba(215, 17, 31, 0.16), transparent 34%);
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: blur(18px);
    animation: mobileMenuIn 0.22s ease both;
    overflow-y: auto;
  }

  .main-nav.open a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 1.06rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  }

  .main-nav.open a::before {
    width: 7px;
    height: 7px;
    content: "";
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(215, 17, 31, 0.12);
  }

  .main-nav.open a::after {
    display: block;
    position: static;
    width: auto;
    height: auto;
    content: ">";
    color: rgba(255, 255, 255, 0.42);
    background: transparent;
    font-size: 1.1rem;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .main-nav.open a:hover {
    color: var(--white);
    background: rgba(215, 17, 31, 0.18);
    border-color: rgba(215, 17, 31, 0.34);
  }

  .main-nav.open a:hover::after {
    color: var(--white);
    transform: translateX(3px);
  }

  .service-grid,
  .timeline,
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid,
  .legal-panels {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-page,
  .quote-band,
  .deep-card,
  .content-wrap,
  .blog-card.big {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cookie-actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  .deep-card.reverse img {
    order: 0;
  }
}

@media (max-width: 720px) {
  .hero-slider {
    min-height: 810px;
    height: auto;
  }

  .slide {
    padding-top: 118px;
    padding-bottom: 138px;
    background-image: linear-gradient(90deg, rgba(7, 8, 10, 0.92), rgba(7, 8, 10, 0.66)), var(--slide-bg);
  }

  .slide h1,
  .slide h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.45rem);
    line-height: 1;
  }

  .slider-controls {
    bottom: 26px;
  }

  .stats-band,
  .service-grid,
  .timeline,
  .blog-grid,
  .legal-panels,
  .footer-top,
  .operation-grid,
  .page-kicker,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 620px;
  }

  .inner-hero h1 {
    font-size: clamp(2.25rem, 11.5vw, 3.45rem);
  }

  .deep-card img {
    min-height: 260px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .quote-band {
    margin: 18px;
  }

  .cookie-consent {
    bottom: 14px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .cookie-icon {
    width: 46px;
    height: 46px;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
