@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --orange: #f5a623;
  --dark: #080808;
  --dark-soft: #0f0f0f;
  --card: #1a1a1a;
  --panel: #101010;
  --border: #2a2a2a;
  --text: #ffffff;
  --muted: #777777;
  --muted-strong: #aaaaaa;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--text);
  background: var(--dark);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

img,
video {
  display: block;
  max-width: 100%;
}

.services,
.portfolio,
.custom-ba-section,
.pricing,
.reviews,
.rsh-process-section,
.order-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
a,
button {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 5%;
  color: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled,
.site-header.compact {
  background: rgba(8, 8, 8, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #d8d8d8;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 780px;
  padding: 180px 5%;
  overflow: hidden;
  text-align: center;
  background: var(--dark);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 18px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 50px;
  color: var(--orange);
  background: rgba(245, 166, 35, 0.14);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow: 0 12px 45px rgba(0, 0, 0, 0.85);
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  max-width: 500px;
  margin: 0 auto 32px;
  color: #d8d8d8;
  font-size: 17px;
  line-height: 1.7;
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.85);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.rsh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(10px);
}

.rsh-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  padding-top: 32px;
}

.stat {
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stat:last-child {
  border-right: 0;
}

.stat-num {
  color: var(--orange);
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
}

.stat-label {
  margin-top: 4px;
  color: #b5b5b5;
  font-size: 12px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.8);
}

.section-header {
  margin-bottom: 64px;
  text-align: center;
}

.section-tag,
.custom-ba-tag {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title,
.custom-ba-title {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-sub,
.custom-ba-subtitle {
  max-width: 560px;
  margin: 0 auto;
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
}

.services,
.pricing {
  padding: 100px 5%;
  background: var(--dark-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  transform: translateY(-4px);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  color: var(--orange);
  background: rgba(245, 166, 35, 0.1);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.service-card p {
  margin-bottom: 20px;
  color: #777777;
  font-size: 14px;
  line-height: 1.6;
}

.service-price {
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
}

.portfolio {
  padding: 100px 0;
  background: var(--dark);
}

.portfolio-intro {
  padding: 0 5%;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: none;
  margin: 0 auto;
}

.portfolio-grid figure {
  position: relative;
  aspect-ratio: 1 / 1.36;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--panel);
}

.portfolio-link {
  position: absolute;
  inset: 0;
  display: block;
  cursor: zoom-in;
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.portfolio-link::before {
  content: none;
}

.portfolio-link:hover img,
.portfolio-link:focus-visible img {
  transform: scale(1.07);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999998;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(0, 0, 0, 0.92);
  cursor: zoom-out;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  max-width: min(100%, 1500px);
  max-height: 92vh;
  object-fit: contain;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
  cursor: default;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.04);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.custom-ba-section {
  padding: 80px 4%;
  background: var(--dark);
}

.custom-ba-header {
  margin-bottom: 36px;
  text-align: center;
}

.custom-ba-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1720px;
  margin: 0 auto;
}

.custom-ba-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #111111;
}

.custom-ba-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: #0b0b0b;
  touch-action: pan-y;
}

.custom-ba-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.custom-ba-after {
  clip-path: inset(0 0 0 50%);
}

.custom-ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 5;
  width: 2px;
  background: #ffffff;
  transform: translateX(-50%);
  pointer-events: none;
}

.custom-ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--dark);
  background: #ffffff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  touch-action: pan-y;
}

.custom-ba-labels {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 7;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.custom-ba-labels span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.process-section {
  padding: 100px 5%;
  background: #0d0d0d;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  list-style: none;
}

.process-list li {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
}

.process-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 700;
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 18px;
}

.process-list p {
  color: #777777;
  font-size: 14px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 38px 30px 34px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  border-color: rgba(245, 166, 35, 0.35);
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: var(--orange);
}

.popular-badge,
.discount-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transform: translateX(-50%);
}

.popular-badge {
  color: #000000;
  background: var(--orange);
}

.discount-badge {
  color: #000000;
  background: #ffffff;
}

.pricing-intro {
  min-height: 190px;
}

.pricing-name {
  margin-bottom: 12px;
  color: #666666;
  font-size: 14px;
  font-weight: 500;
}

.pricing-price {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.pricing-price span {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
}

.pricing-price .pricing-from {
  margin-right: 8px;
  color: #777777;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  opacity: 0.85;
}

.pricing-old {
  margin-bottom: 8px;
  color: #555555;
  font-size: 14px;
}

.pricing-old span {
  text-decoration: line-through;
}

.pricing-save {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
}

.pricing-desc {
  margin-top: 10px;
  color: #555555;
  font-size: 13px;
  line-height: 1.5;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 30px;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-features li::before {
  content: "✓";
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--orange);
  font-weight: 700;
}

.btn-orange,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.btn-orange {
  border: 0;
  color: #000000;
  background: var(--orange);
}

.btn-orange:hover {
  opacity: 0.85;
}

.btn-ghost {
  border: 1px solid #333333;
  color: #ffffff;
  background: transparent;
}

.btn-ghost:hover {
  border-color: #666666;
}

.reviews {
  padding: 90px 5%;
  overflow: hidden;
  background: var(--dark);
}

.reviews-slider-wrap {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.reviews-viewport {
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.review-image-card {
  flex: 0 0 calc((100% - 40px) / 3);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-image-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  transform: translateY(-4px);
}

.review-image-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: var(--panel);
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  right: -24px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #000000;
  background: var(--orange);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-50%);
}

.reviews-arrow:hover {
  opacity: 0.85;
  transform: translateY(-50%) scale(1.04);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 620px);
  align-items: start;
  gap: 42px;
  padding: 100px 5%;
  background: var(--dark-soft);
}

.contact-copy {
  margin-bottom: 0;
  text-align: left;
}

.contact-copy .section-sub {
  margin-left: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #333333;
  border-radius: 14px;
  padding: 13px 14px;
  color: #ffffff;
  background: #101010;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(245, 166, 35, 0.65);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 5%;
  border-top: 1px solid var(--border);
  color: #ffffff;
  background: #050505;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #d8d8d8;
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--orange);
}

.site-footer p {
  color: #777777;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 460px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

.cookie-banner p {
  color: #aaaaaa;
  font-size: 14px;
}

.cookie-button {
  width: auto;
  min-width: 96px;
  margin-top: 0;
}

.legal-page {
  padding-top: 90px;
  background: var(--dark);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 5% 100px;
}

.legal-content h1 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.08;
}

.legal-content h2 {
  margin-top: 38px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 22px;
}

.legal-content p {
  color: #aaaaaa;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .portfolio-grid,
  .custom-ba-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  .pricing-grid {
    max-width: 760px;
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .pricing-intro {
    min-height: auto;
  }

  .pricing-intro {
    margin-bottom: 26px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .review-image-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .review-image-card img {
    height: 250px;
  }

  .reviews-arrow {
    right: -8px;
  }
}

@media (max-width: 768px) {
  .runaway-zone {
    display: none;
  }

  .site-header {
    padding: 16px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    display: none;
    min-width: 230px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(16, 16, 16, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
  }

  .site-nav.is-open {
    display: grid;
  }

  .legal-nav {
    position: static;
    display: flex;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero {
    min-height: 720px;
    padding: 140px 20px 120px;
  }

  .stat {
    padding: 12px 20px;
    border-right: 0;
  }

  .services,
  .portfolio,
  .pricing,
  .process-section,
  .reviews,
  .contact-section {
    padding: 80px 20px;
  }

  .custom-ba-section {
    padding: 60px 20px;
  }

  .portfolio-grid,
  .custom-ba-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .custom-ba-wrapper {
    cursor: default;
  }

  .custom-ba-handle {
    width: 52px;
    height: 52px;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy .section-sub {
    margin: 0 auto;
  }

  .contact-form {
    padding: 26px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .image-lightbox {
    padding: 18px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .reviews {
    padding: 80px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .review-image-card {
    flex-basis: 100%;
  }

  .review-image-card img {
    height: 280px;
  }

  .reviews-arrow {
    right: 8px;
    width: 46px;
    height: 46px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 36px 26px 32px;
  }

  .pricing-price {
    font-size: 38px;
  }

  .pricing-price .pricing-from {
    margin-right: 6px;
    font-size: 12px;
  }
}

/* Final retoucher.sh Tilda-style header */
.site-header {
  padding: 22px 5%;
  pointer-events: none;
}

.site-header.is-scrolled,
.site-header.compact {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  min-height: 70px;
  margin: 0 auto;
  padding: 0 30px;
  border-radius: 999px;
  background: rgba(39, 31, 16, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.header-shell .site-nav {
  justify-self: start;
  gap: 28px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.header-shell .brand {
  justify-self: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.brand span,
.footer-logo span {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 28px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.instagram-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sample-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 162px;
  min-height: 42px;
  padding: 0 28px;
  border-radius: 999px;
  color: #000000;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sample-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.header-shell .nav-toggle {
  display: none;
  justify-self: end;
}

.legal-header-shell {
  display: flex;
  justify-content: center;
}

.legal-header-shell .brand {
  justify-self: center;
}

/* Friendly process block */
.rsh-process-section {
  overflow: hidden;
  padding: 100px 5%;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% -8%, rgba(245, 166, 35, 0.18) 0%, rgba(245, 166, 35, 0.06) 24%, rgba(8, 8, 8, 0.98) 50%, #050505 100%),
    linear-gradient(180deg, #070707 0%, #050505 100%);
}

.rsh-process-container {
  max-width: 1180px;
  margin: 0 auto;
}

.rsh-process-header {
  margin-bottom: 58px;
  text-align: center;
}

.rsh-process-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  border: 1px solid rgba(245, 166, 35, 0.36);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(245, 166, 35, 0.13);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rsh-process-title {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.55);
}

.rsh-process-title span {
  color: var(--orange);
}

.rsh-process-subtitle {
  max-width: 650px;
  margin: 0 auto;
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.75;
}

.rsh-process-flow {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
  align-items: stretch;
  gap: 14px;
}

.rsh-process-card {
  min-height: 300px;
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(18, 18, 18, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rsh-process-card:hover {
  border-color: rgba(245, 166, 35, 0.45);
  background: rgba(24, 24, 24, 0.96);
  transform: translateY(-5px);
}

.rsh-process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #080808;
  background: var(--orange);
  font-size: 20px;
  font-weight: 900;
}

.rsh-process-card h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}

.rsh-process-card p {
  margin-bottom: 12px;
  color: #d2d2d2;
  font-size: 14.5px;
  line-height: 1.75;
}

.rsh-process-card p:last-child {
  margin-bottom: 0;
}

.rsh-process-highlight {
  color: #ffffff;
  font-weight: 750;
}

.rsh-process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 34px;
  font-weight: 300;
  opacity: 0.9;
}

/* Order form and footer */
.order-section {
  padding: 100px 5%;
  background: var(--dark);
  text-align: center;
}

.order-section .section-sub {
  margin-bottom: 48px;
}

.order-inner {
  max-width: 640px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #858585;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: #ffffff;
  background: var(--card);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
}

.form-field select {
  cursor: pointer;
}

.form-field select option {
  color: #ffffff;
  background: #222222;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #444444;
}

.btn-submit {
  width: 100%;
  margin-top: 20px;
  border: 0;
  border-radius: 50px;
  padding: 16px;
  color: #000000;
  background: var(--orange);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-submit:hover {
  opacity: 0.85;
}

.btn-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.runaway-zone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 130px;
  margin-top: 12px;
  overflow: hidden;
}

.not-ready-btn {
  display: block;
  width: min(100%, 280px);
  margin: 0 auto;
  border: 1px solid #333333;
  border-radius: 50px;
  padding: 14px 18px;
  color: #777777;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: default;
  transition: transform 0.22s ease, opacity 0.25s ease, border-color 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.not-ready-btn:hover {
  border-color: #555555;
  color: #aaaaaa;
}

.form-note {
  margin-top: 0;
  color: #4e4e4e;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.form-note span {
  color: var(--orange);
  margin-right: 6px;
}

.success-msg {
  display: none;
  margin-top: 20px;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 10px;
  padding: 20px;
  color: var(--orange);
  background: rgba(245, 166, 35, 0.1);
  font-size: 15px;
  text-align: center;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 5%;
  border-top: 1px solid var(--border);
  background: #050505;
}

.footer-logo {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: var(--orange);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffbe46;
}

.footer-copy {
  color: #333333;
  font-size: 12px;
}

/* Cookie banner */
.rsh-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  width: calc(100% - 48px);
  max-width: 680px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.rsh-cookie-banner.is-visible {
  display: flex;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.rsh-cookie-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.rsh-cookie-icon {
  flex-shrink: 0;
  font-size: 24px;
}

.rsh-cookie-text {
  flex: 1;
  min-width: 220px;
}

.rsh-cookie-text p {
  margin: 0;
  color: #888888;
  font-size: 13px;
  line-height: 1.6;
}

.rsh-cookie-text a {
  color: var(--orange);
}

.rsh-cookie-text a:hover {
  text-decoration: underline;
}

.rsh-cookie-btns {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.rsh-cookie-accept,
.rsh-cookie-decline {
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.rsh-cookie-accept {
  border: 0;
  color: #000000;
  background: var(--orange);
  font-weight: 600;
}

.rsh-cookie-accept:hover {
  opacity: 0.85;
}

.rsh-cookie-decline {
  border: 1px solid #333333;
  color: #666666;
  background: transparent;
  font-weight: 400;
}

.rsh-cookie-decline:hover {
  border-color: #555555;
  color: #aaaaaa;
}

/* Legal pages */
.rsh-legal-page {
  min-height: 100vh;
  padding: 120px 5% 90px;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% -10%, rgba(245, 166, 35, 0.22) 0%, rgba(245, 166, 35, 0.08) 22%, rgba(8, 8, 8, 0.98) 48%, #050505 100%),
    linear-gradient(180deg, #080808 0%, #070707 45%, #050505 100%);
}

.rsh-legal-container {
  max-width: 980px;
  margin: 0 auto;
}

.rsh-legal-top {
  margin-bottom: 56px;
  text-align: center;
}

.rsh-legal-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(245, 166, 35, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rsh-legal-title {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.rsh-legal-title span {
  color: var(--orange);
}

.rsh-legal-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: #d0d0d0;
  font-size: 17px;
  line-height: 1.7;
}

.rsh-legal-meta {
  margin-top: 24px;
  color: #9a9a9a;
  font-size: 13px;
}

.rsh-legal-card {
  margin-bottom: 24px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(18, 18, 18, 0.88);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.rsh-legal-card h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.3;
}

.rsh-legal-card p {
  margin-bottom: 16px;
  color: #d2d2d2;
  font-size: 15.5px;
  line-height: 1.8;
}

.rsh-legal-card p:last-child {
  margin-bottom: 0;
}

.rsh-legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rsh-legal-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 26px;
  color: #d2d2d2;
  font-size: 15.5px;
  line-height: 1.75;
}

.rsh-legal-list li::before {
  content: "\2022";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.rsh-legal-highlight {
  color: #ffffff;
  font-weight: 700;
}

.rsh-legal-link {
  color: var(--orange);
  border-bottom: 1px solid rgba(245, 166, 35, 0.45);
}

.rsh-legal-link:hover {
  border-bottom-color: var(--orange);
}

.rsh-legal-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

.rsh-legal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  color: #080808;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.rsh-legal-button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: transparent;
}

.rsh-legal-button:hover {
  opacity: 0.86;
  transform: translateY(-2px);
}

.pricing-features li::before {
  content: "\2713";
}

@media (max-width: 1100px) and (min-width: 721px) {
  .rsh-process-flow {
    grid-template-columns: 1fr 36px 1fr;
  }

  .rsh-process-arrow:nth-of-type(4),
  .rsh-process-arrow:nth-of-type(6) {
    display: none;
  }
}

@media (max-width: 820px) {
  .header-shell {
    grid-template-columns: 1fr auto;
    min-height: 62px;
    padding: 0 16px 0 22px;
  }

  .header-shell .brand {
    justify-self: start;
  }

  .header-actions {
    display: none;
  }

  .header-shell .nav-toggle {
    display: block;
  }

  .header-shell .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    min-width: 230px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(16, 16, 16, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
  }

  .header-shell .site-nav.is-open {
    display: grid;
  }

  .header-shell .legal-nav {
    position: static;
    display: flex;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 720px) {
  .rsh-process-section {
    padding: 80px 20px;
  }

  .rsh-process-header {
    margin-bottom: 42px;
  }

  .rsh-process-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rsh-process-arrow,
  .rsh-process-arrow:nth-of-type(4),
  .rsh-process-arrow:nth-of-type(6) {
    display: flex !important;
    height: 26px;
    margin: -2px 0;
    font-size: 30px;
    transform: rotate(90deg);
  }

  .rsh-process-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .rsh-cookie-banner {
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 18px;
    gap: 14px;
  }

  .rsh-cookie-btns {
    width: 100%;
  }

  .rsh-cookie-accept,
  .rsh-cookie-decline {
    flex: 1;
    padding: 11px 16px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 14px 14px;
  }

  .rsh-process-section {
    padding: 64px 20px;
  }

  .rsh-process-title {
    font-size: 34px;
  }

  .rsh-process-subtitle {
    font-size: 15px;
  }

  .rsh-legal-page {
    padding: 90px 20px 70px;
  }

  .rsh-legal-card {
    padding: 26px;
    border-radius: 22px;
  }
}

@media (max-width: 768px) {
  .runaway-zone {
    display: none !important;
  }
}

