:root {
  --black: #07080a;
  --ink: #111318;
  --anthracite: #191d24;
  --panel: #20252d;
  --muted: #6f7784;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(16, 18, 24, 0.1);
  --white: #ffffff;
  --soft: #f4f5f7;
  --red: #d91424;
  --red-dark: #9f0e19;
  --red-soft: rgba(217, 20, 36, 0.2);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.section {
  padding: 96px 0;
}

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

.section-muted {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-head h2,
.teaser-copy h2,
.about-copy h2,
.final-cta h2,
.contact-info h2 {
  margin: 10px 0 16px;
  font-size: 44px;
  line-height: 1.06;
}

.section-head p,
.teaser-copy p,
.about-copy p,
.contact-info p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-head p,
.section-dark .about-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 18px var(--red-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 16px 34px rgba(217, 20, 36, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(217, 20, 36, 0.42);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-whatsapp {
  color: var(--white);
  background: #128c4a;
  box-shadow: 0 14px 30px rgba(18, 140, 74, 0.24);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.btn-large {
  min-height: 56px;
  padding: 16px 24px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 16px max(22px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background: rgba(7, 8, 10, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  transition: padding 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(7, 8, 10, 0.94);
}

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

.brand-logo-wrap {
  display: grid;
  place-items: center;
  width: 96px;
  height: 58px;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(217, 20, 36, 0.18);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(217, 20, 36, 0.34);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.05;
  font-size: 18px;
}

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

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-contact {
  display: grid;
  text-align: right;
  line-height: 1.25;
}

.header-contact a {
  font-weight: 900;
}

.header-contact__mail {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.header-contact span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 840px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;
}

.hero-bg,
.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg {
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.94) 0%, rgba(7, 8, 10, 0.74) 42%, rgba(7, 8, 10, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.46) 0%, rgba(7, 8, 10, 0.78) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0), var(--black));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 54px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 16px 0 20px;
  font-size: 72px;
  line-height: 0.96;
}

.hero-copy p {
  max-width: 690px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
}

.hero-buttons,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.micro-trust li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

.trust-card,
.conversion-panel,
.testimonial-card,
.contact-form,
.whatsapp-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-card {
  padding: 28px;
  background: rgba(14, 16, 20, 0.72);
  backdrop-filter: blur(16px);
}

.trust-card__label {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list div {
  display: grid;
  gap: 2px;
  padding: 15px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
}

.trust-list strong {
  font-size: 26px;
  line-height: 1;
}

.trust-list span {
  color: rgba(255, 255, 255, 0.68);
}

.trust-bar {
  position: relative;
  z-index: 2;
  color: var(--white);
  background: #0d0f13;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-bar__inner div {
  padding: 28px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar__inner div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.services-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.service-card,
.project-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 18, 24, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 20, 36, 0.22);
  box-shadow: 0 26px 70px rgba(16, 18, 24, 0.16);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card__body {
  position: relative;
  padding: 28px;
}

.icon-box {
  position: absolute;
  top: -28px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 30px rgba(217, 20, 36, 0.3);
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card h3,
.conversion-panel h3,
.project-card h3,
.testimonial-card strong,
.footer-grid h3 {
  margin: 0;
}

.service-card h3 {
  font-size: 26px;
}

.service-card p,
.conversion-panel p {
  color: var(--muted);
}

.service-card ul,
.check-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
}

.service-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--red);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-weight: 900;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

.conversion-panel {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 22px;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(217, 20, 36, 0.24), rgba(217, 20, 36, 0)),
    var(--anthracite);
}

.conversion-panel p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.7);
}

.rating-box {
  display: grid;
  min-width: 180px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.rating-box strong {
  font-size: 34px;
  line-height: 1;
}

.rating-box span {
  color: rgba(255, 255, 255, 0.7);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  position: relative;
  min-height: 360px;
  color: var(--white);
  background: var(--ink);
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 260ms ease, opacity 260ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
  opacity: 0.86;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.05), rgba(7, 8, 10, 0.84));
}

.project-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.project-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.project-card h3 {
  font-size: 24px;
  line-height: 1.15;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.center-action .btn-secondary {
  color: var(--ink);
  border-color: var(--line-dark);
  background: var(--white);
}

.teaser-grid,
.about-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 54px;
  align-items: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0), rgba(7, 8, 10, 0.48));
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(217, 20, 36, 0.9);
  box-shadow: 0 24px 56px rgba(217, 20, 36, 0.36);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid var(--white);
}

.teaser-copy .btn {
  margin-top: 8px;
}

.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(217, 20, 36, 0.18), rgba(217, 20, 36, 0) 36%),
    linear-gradient(180deg, #101217, #07080a);
}

.about-grid {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stats-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--white);
  font-size: 34px;
  line-height: 1;
}

.stats-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-badge {
  position: absolute;
  left: -22px;
  bottom: 26px;
  max-width: 270px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 8, 10, 0.78);
  backdrop-filter: blur(14px);
}

.image-badge strong,
.image-badge span {
  display: block;
}

.image-badge span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

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

.testimonial-card {
  padding: 28px;
  border-color: var(--line-dark);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 18, 24, 0.08);
}

.stars {
  color: var(--red);
  font-size: 20px;
}

.testimonial-card p {
  margin: 18px 0 20px;
  color: #3f4652;
}

.final-cta {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.final-cta__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.9), rgba(7, 8, 10, 0.56), rgba(217, 20, 36, 0.26)),
    linear-gradient(180deg, rgba(7, 8, 10, 0.15), rgba(7, 8, 10, 0.74));
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.final-cta h2 {
  margin: 14px 0;
  font-size: 56px;
}

.final-cta p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
}

.faq-grid {
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 18, 24, 0.06);
}

.accordion-item button {
  width: 100%;
  min-height: 64px;
  padding: 18px 56px 18px 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  position: relative;
}

.accordion-item button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  color: var(--red);
  font-size: 28px;
  transform: translateY(-50%);
}

.accordion-item button[aria-expanded="true"]::after {
  content: "-";
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: var(--muted);
}

.accordion-item.is-open .accordion-panel p {
  padding-bottom: 20px;
}

.contact-grid {
  align-items: start;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.info-list div {
  display: grid;
  gap: 2px;
  padding: 17px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 18, 24, 0.06);
}

.info-list strong {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--muted);
}

.info-list a,
.info-list span {
  font-weight: 800;
}

.whatsapp-box {
  display: grid;
  gap: 10px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, #128c4a, #075e36);
}

.whatsapp-box span {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border-color: var(--line-dark);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(16, 18, 24, 0.12);
}

.form-row {
  display: grid;
  gap: 8px;
}

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

label {
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d9dde5;
  border-radius: 6px;
  padding: 14px 14px;
  background: #fbfcfd;
  color: var(--ink);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(217, 20, 36, 0.12);
}

textarea {
  resize: vertical;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.check-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--red);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #07080a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 34px;
  padding: 66px 0 42px;
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 16px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
}

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

.footer-brand {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-brand .brand-logo-wrap {
  width: 118px;
  height: 72px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.designer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(217, 20, 36, 0.44);
  border-radius: 999px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(217, 20, 36, 0.34), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 14px 34px rgba(217, 20, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.designer-credit:hover {
  color: var(--white);
  border-color: rgba(217, 20, 36, 0.72);
  background:
    linear-gradient(135deg, rgba(217, 20, 36, 0.54), rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 44px rgba(217, 20, 36, 0.32),
    0 0 0 6px rgba(217, 20, 36, 0.1);
  transform: translateY(-2px);
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: grid;
  gap: 10px;
}

.floating-btn {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease;
}

.floating-btn:hover {
  transform: translateY(-3px);
}

.floating-btn--whatsapp {
  background: #128c4a;
}

.floating-btn--phone {
  background: var(--red);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-18px, 10px, 0);
  }
}

@keyframes galleryFly {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes galleryFloat {
  from {
    translate: 0 -5px;
  }
  to {
    translate: 0 9px;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    display: none;
    color: var(--white);
    background: rgba(7, 8, 10, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
  }

  .main-nav {
    top: 82px;
    justify-self: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 8px 8px 0 0;
  }

  .main-nav a {
    padding: 14px;
  }

  .header-actions {
    top: 366px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 0 0 8px 8px;
  }

  .header-contact {
    text-align: left;
  }

  .nav-open .main-nav,
  .nav-open .header-actions {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 62px;
  }

  .trust-card {
    max-width: 520px;
  }

  .services-layout,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-panel {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
  }

  .work-reel__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work-reel__head h2 {
    font-size: 42px;
  }

  .gallery-card {
    width: 230px;
    height: 306px;
  }

  .gallery-card:nth-child(3n) {
    width: 280px;
  }

  .teaser-grid,
  .about-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .main-nav,
  .header-actions {
    left: 14px;
    right: 14px;
    width: calc(100% - 28px);
  }

  .brand strong {
    font-size: 16px;
  }

  .brand-logo-wrap {
    width: 64px;
    height: 40px;
    padding: 4px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 8, 10, 0.38), rgba(7, 8, 10, 0.96) 64%, rgba(7, 8, 10, 0.98)),
      linear-gradient(90deg, rgba(7, 8, 10, 0.72), rgba(7, 8, 10, 0.34));
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-copy p,
  .final-cta p {
    font-size: 18px;
  }

  .section-head h2,
  .teaser-copy h2,
  .about-copy h2,
  .contact-info h2 {
    font-size: 34px;
  }

  .final-cta h2 {
    font-size: 38px;
  }

  .hero-buttons,
  .cta-row {
    display: grid;
  }

  .micro-trust {
    display: none;
  }

  .trust-bar__inner {
    grid-template-columns: 1fr;
  }

  .trust-bar__inner div,
  .trust-bar__inner div:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .work-reel {
    padding: 68px 0;
  }

  .work-reel__head h2 {
    font-size: 34px;
  }

  .work-reel__head p {
    font-size: 16px;
  }

  .work-reel__viewport {
    padding-top: 8px;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .work-reel__track {
    animation-duration: 150s;
  }

  .gallery-card,
  .gallery-card:nth-child(3n),
  .gallery-card:nth-child(4n),
  .gallery-card:nth-child(5n) {
    width: 205px;
    height: 260px;
    margin-right: 12px;
  }

  .work-reel__bottom {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .work-reel__bottom .btn {
    width: 100%;
  }

  .services-layout,
  .project-grid,
  .testimonial-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .conversion-panel {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 310px;
  }

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

  .about-image img {
    aspect-ratio: 4 / 3;
  }

  .image-badge {
    left: 14px;
    right: 14px;
    max-width: none;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Premium tuning */
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 20, 36, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f5f6f8 62%, #ffffff);
}

.site-header {
  padding-top: 14px;
  padding-bottom: 14px;
  background:
    linear-gradient(180deg, rgba(10, 11, 14, 0.93), rgba(10, 11, 14, 0.74));
  border-bottom-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.site-header.is-scrolled {
  background: rgba(7, 8, 10, 0.96);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.brand-mark {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, #ef2635, #9f0e19);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -40% 35% auto -40%;
  height: 90px;
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(35deg);
}

.brand-mark,
.brand strong {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

.header-contact {
  min-width: 192px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.header-contact__label {
  color: var(--red) !important;
  font-size: 10px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  min-height: 900px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 34%, rgba(217, 20, 36, 0.32), transparent 24%),
    linear-gradient(115deg, rgba(217, 20, 36, 0.22), transparent 36%),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 90px);
  mix-blend-mode: screen;
  opacity: 0.5;
}

.hero-bg {
  filter: saturate(0.84) contrast(1.12) brightness(0.68);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 5, 7, 0.98) 0%, rgba(4, 5, 7, 0.86) 44%, rgba(4, 5, 7, 0.3) 100%),
    linear-gradient(180deg, rgba(4, 5, 7, 0.72) 0%, rgba(4, 5, 7, 0.58) 48%, rgba(4, 5, 7, 0.94) 100%);
}

.hero-grid {
  z-index: 2;
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-proofline span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.hero-copy h1 {
  max-width: 880px;
  font-size: 78px;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.72);
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--red), rgba(217, 20, 36, 0));
  box-shadow: 0 0 24px rgba(217, 20, 36, 0.44);
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 52px;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-120%);
  transition: transform 360ms ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-large {
  min-height: 60px;
  padding: 18px 28px;
  font-size: 16px;
}

.btn-primary {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, #f12838, #b70f1d 55%, #7f0913);
  box-shadow:
    0 18px 48px rgba(217, 20, 36, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-secondary {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-dark-outline {
  color: var(--ink);
  border-color: rgba(16, 18, 24, 0.16);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(16, 18, 24, 0.08);
}

.micro-trust li {
  display: flex;
  align-items: center;
  min-height: 42px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.micro-trust li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(217, 20, 36, 0.8);
}

.trust-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(12, 14, 18, 0.7);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.46),
    0 0 80px rgba(217, 20, 36, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.trust-card__label {
  color: var(--white);
  font-size: 15px;
}

.trust-list div {
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.08);
}

.trust-list strong {
  color: var(--white);
}

.trust-card__cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(217, 20, 36, 0.22);
  font-weight: 900;
}

.trust-bar {
  margin-top: -1px;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 20, 36, 0.18), transparent 40%),
    linear-gradient(180deg, #0f1116, #090a0d);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.trust-bar__inner {
  gap: 1px;
}

.trust-bar__inner div {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  column-gap: 14px;
  padding: 26px 18px;
  border-left: 0;
  background: rgba(255, 255, 255, 0.035);
}

.trust-bar__inner div::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.trust-icon {
  grid-row: span 2;
  display: grid !important;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white) !important;
  background: rgba(217, 20, 36, 0.22);
  box-shadow: 0 12px 28px rgba(217, 20, 36, 0.18);
  font-weight: 900;
}

.work-reel {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  background:
    radial-gradient(circle at 18% 8%, rgba(217, 20, 36, 0.22), transparent 32%),
    radial-gradient(circle at 92% 42%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #090a0e, #141821 48%, #07080a);
}

.work-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 105px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%, rgba(0, 0, 0, 0.3));
}

.work-reel__head,
.work-reel__bottom {
  position: relative;
  z-index: 2;
}

.work-reel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: end;
  margin-bottom: 42px;
}

.work-reel__head h2 {
  max-width: 740px;
  margin: 10px 0 0;
  font-size: 48px;
  line-height: 1.05;
}

.work-reel__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.work-reel__viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 18px 0 30px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.work-reel__viewport::before,
.work-reel__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 16vw;
  pointer-events: none;
}

.work-reel__viewport::before {
  left: 0;
  background: linear-gradient(90deg, #090a0e, transparent);
}

.work-reel__viewport::after {
  right: 0;
  background: linear-gradient(270deg, #090a0e, transparent);
}

.work-reel__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: galleryFly 120s linear infinite;
}

.work-reel__viewport:hover .work-reel__track {
  animation-play-state: paused;
}

.work-reel__group {
  display: flex;
  flex: 0 0 auto;
}

.gallery-card {
  position: relative;
  flex: 0 0 auto;
  width: 252px;
  height: 330px;
  margin: 0 18px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.38),
    0 0 38px rgba(217, 20, 36, 0.08);
  transform: translateY(var(--float-offset, 0));
  animation: galleryFloat 7s ease-in-out infinite alternate;
  animation-delay: var(--float-delay, 0s);
}

.gallery-card:nth-child(3n) {
  width: 310px;
}

.gallery-card:nth-child(4n) {
  height: 360px;
  transform: translateY(18px);
}

.gallery-card:nth-child(5n) {
  width: 225px;
  height: 300px;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(7, 8, 10, 0.36)),
    linear-gradient(135deg, rgba(217, 20, 36, 0.14), transparent 40%);
  pointer-events: none;
}

.gallery-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0.82;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08) brightness(0.86);
  transform: scale(1.02);
}

.work-reel__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.work-reel__bottom span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 330px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.04), transparent);
}

.services .container {
  position: relative;
}

.service-card {
  position: relative;
  border-color: rgba(16, 18, 24, 0.08);
  box-shadow: 0 22px 58px rgba(16, 18, 24, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(217, 20, 36, 0);
  transition: box-shadow 180ms ease;
}

.service-card:hover::before {
  box-shadow: inset 0 0 0 1px rgba(217, 20, 36, 0.32);
}

.service-card img {
  filter: saturate(0.92) contrast(1.08);
  transition: transform 260ms ease, filter 260ms ease;
}

.service-card:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.12);
}

.service-card__body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff),
    var(--white);
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-cta {
  width: 100%;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid rgba(217, 20, 36, 0.2);
  border-radius: 8px;
  background: rgba(217, 20, 36, 0.07);
}

.service-note {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 9px 11px;
  border: 1px solid rgba(16, 18, 24, 0.09);
  border-radius: 999px;
  color: #3f4652;
  background: rgba(16, 18, 24, 0.035);
  font-size: 13px;
  font-weight: 850;
}

.conversion-panel {
  grid-template-columns: minmax(260px, 1fr) minmax(190px, auto) auto auto auto;
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 10% 20%, rgba(217, 20, 36, 0.26), transparent 34%),
    linear-gradient(135deg, #1b2028, #090a0d);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
}

.conversion-panel .eyebrow::before {
  background: var(--white);
}

.conversion-panel h3 {
  font-size: 30px;
  line-height: 1.1;
}

.rating-box {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
}

.projects {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(217, 20, 36, 0.18), transparent 34%),
    linear-gradient(180deg, #11141a, #07080a);
}

.projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 110px);
  opacity: 0.5;
}

.projects .container {
  position: relative;
}

.project-card {
  min-height: 390px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.project-card::after {
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.02), rgba(7, 8, 10, 0.2) 34%, rgba(7, 8, 10, 0.78)),
    linear-gradient(90deg, rgba(217, 20, 36, 0.16), transparent 42%);
}

.project-label {
  display: inline-flex !important;
  width: fit-content;
  margin-bottom: 10px !important;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white) !important;
  background: rgba(217, 20, 36, 0.76);
  font-size: 12px;
  text-transform: uppercase;
}

.project-cta,
.cta-strip__inner,
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.project-cta {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.project-cta strong,
.project-cta span {
  display: block;
}

.project-cta strong {
  font-size: 24px;
  line-height: 1.1;
}

.project-cta span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
}

.video-frame {
  border: 1px solid rgba(16, 18, 24, 0.1);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.play-button {
  z-index: 2;
  width: 92px;
  height: 92px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #f12838, #9f0e19);
}

.video-caption {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 2;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 8, 10, 0.68);
  backdrop-filter: blur(12px);
}

.video-caption strong,
.video-caption span {
  display: block;
}

.video-caption span {
  color: rgba(255, 255, 255, 0.68);
}

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

.about::before {
  background:
    radial-gradient(circle at 86% 16%, rgba(217, 20, 36, 0.22), transparent 34%),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px),
    linear-gradient(180deg, #12161d, #07080a);
}

.about-copy {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-highlights span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
  font-size: 14px;
}

.stats-grid div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
}

.about-image::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(217, 20, 36, 0.34), rgba(255, 255, 255, 0.1), transparent);
}

.section-head--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.review-summary {
  min-width: 180px;
  padding: 18px;
  border: 1px solid rgba(16, 18, 24, 0.1);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(16, 18, 24, 0.16);
}

.review-summary strong,
.review-summary span {
  display: block;
}

.review-summary strong {
  font-size: 36px;
  line-height: 1;
}

.review-summary span {
  color: rgba(255, 255, 255, 0.66);
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border-color: rgba(16, 18, 24, 0.08);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.quote-mark {
  position: absolute;
  top: 12px;
  right: 22px;
  color: rgba(217, 20, 36, 0.1);
  font-size: 108px;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card > span:not(.quote-mark) {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.final-cta {
  min-height: 560px;
}

.final-cta > img {
  filter: saturate(0.86) contrast(1.08) brightness(0.72);
}

.faq-trust-box {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(16, 18, 24, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 20, 36, 0.08), rgba(217, 20, 36, 0)),
    var(--white);
  box-shadow: 0 18px 44px rgba(16, 18, 24, 0.08);
}

.faq-trust-box strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.15;
}

.faq-trust-box ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.faq-trust-box li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 750;
}

.faq-trust-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.accordion-item {
  border-color: rgba(16, 18, 24, 0.08);
  box-shadow: 0 16px 42px rgba(16, 18, 24, 0.08);
}

.accordion-item.is-open {
  border-color: rgba(217, 20, 36, 0.24);
  box-shadow: 0 22px 58px rgba(16, 18, 24, 0.12);
}

.cta-strip {
  padding: 72px 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(217, 20, 36, 0.28), transparent 30%),
    linear-gradient(135deg, #161a21, #07080a);
}

.cta-strip__inner {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.cta-strip h2 {
  max-width: 640px;
  margin: 10px 0 10px;
  font-size: 38px;
  line-height: 1.08;
}

.cta-strip p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.cta-strip__actions {
  display: grid;
  gap: 12px;
  min-width: 280px;
}

.contact {
  background:
    radial-gradient(circle at 0% 20%, rgba(217, 20, 36, 0.08), transparent 28%),
    #f4f5f7;
}

.info-list div {
  position: relative;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 18px;
  border-left: 0;
  border: 1px solid rgba(16, 18, 24, 0.08);
}

.info-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(217, 20, 36, 0.2);
}

.contact-form {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-color: rgba(16, 18, 24, 0.08);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), rgba(217, 20, 36, 0));
}

.form-intro {
  padding-bottom: 12px;
}

.form-intro h3 {
  margin: 10px 0 8px;
  font-size: 28px;
  line-height: 1.1;
}

.form-intro p {
  margin: 0;
  color: var(--muted);
}

input,
textarea {
  border-color: #d5dae2;
  background: #f7f8fa;
}

.whatsapp-box {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #159952, #075e36);
}

.site-footer {
  background:
    radial-gradient(circle at 8% 0%, rgba(217, 20, 36, 0.18), transparent 30%),
    linear-gradient(180deg, #101319, #07080a);
}

.footer-cta {
  transform: translateY(-36px);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(217, 20, 36, 0.22), rgba(255, 255, 255, 0.06)),
    #141820;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.footer-cta strong,
.footer-cta span {
  display: block;
}

.footer-cta strong {
  font-size: 26px;
  line-height: 1.1;
}

.footer-cta span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  padding-top: 28px;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-trust span {
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
    padding: 148px 0 0;
  }

  .hero-copy h1 {
    font-size: 64px;
  }

  .conversion-panel {
    grid-template-columns: 1fr 1fr;
  }

  .conversion-panel .btn-outline {
    grid-column: 1 / -1;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-cta,
  .cta-strip__inner,
  .footer-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .project-cta .btn,
  .footer-cta .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    min-height: 70px;
  }

  .header-contact {
    min-width: 0;
  }

  .hero {
    align-items: start;
    min-height: 820px;
    padding-top: 96px;
  }

  .hero::before {
    opacity: 0.38;
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: 1;
  }

  .hero-copy h1::after {
    width: 88px;
    height: 4px;
    margin-top: 18px;
  }

  .hero-proofline {
    gap: 6px;
  }

  .hero-proofline span {
    font-size: 12px;
  }

  .trust-card {
    display: none;
  }

  .hero-grid {
    padding-bottom: 34px;
  }

  .trust-bar__inner div {
    grid-template-columns: 42px 1fr;
    padding: 18px 0;
  }

  .trust-icon {
    width: 42px;
    height: 42px;
  }

  .service-card__body,
  .about-copy,
  .contact-form,
  .cta-strip__inner {
    padding: 24px;
  }

  .conversion-panel {
    grid-template-columns: 1fr;
  }

  .conversion-panel h3 {
    font-size: 26px;
  }

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

  .project-cta {
    padding: 22px;
  }

  .project-cta strong {
    font-size: 22px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .video-frame::before {
    inset: 12px;
  }

  .play-button {
    width: 76px;
    height: 76px;
  }

  .video-caption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .section-head--split {
    align-items: stretch;
    flex-direction: column;
  }

  .review-summary {
    width: 100%;
  }

  .cta-strip h2 {
    font-size: 30px;
  }

  .cta-strip__actions {
    min-width: 0;
  }

  .info-list div {
    grid-template-columns: 42px 1fr;
  }

  .info-icon {
    width: 42px;
    height: 42px;
  }

  .floating-actions {
    display: none;
  }
}

@media (max-width: 1120px) {
  .work-reel__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work-reel__head h2 {
    font-size: 42px;
  }

  .gallery-card {
    width: 230px;
    height: 306px;
  }

  .gallery-card:nth-child(3n) {
    width: 280px;
  }
}

@media (max-width: 760px) {
  .work-reel {
    padding: 68px 0;
  }

  .work-reel__head h2 {
    font-size: 34px;
  }

  .work-reel__head p {
    font-size: 16px;
  }

  .work-reel__viewport {
    padding-top: 8px;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .work-reel__track {
    animation-duration: 150s;
  }

  .gallery-card,
  .gallery-card:nth-child(3n),
  .gallery-card:nth-child(4n),
  .gallery-card:nth-child(5n) {
    width: 205px;
    height: 260px;
    margin-right: 12px;
  }

  .work-reel__bottom {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .work-reel__bottom .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-reel__track,
  .gallery-card {
    animation: none !important;
  }
}

/* Premium refinements */
body.lightbox-open {
  overflow: hidden;
}

.btn {
  isolation: isolate;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow:
    0 20px 44px rgba(217, 20, 36, 0.42),
    0 0 0 6px rgba(217, 20, 36, 0.1);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  box-shadow:
    0 18px 40px rgba(18, 140, 74, 0.34),
    0 0 0 6px rgba(18, 140, 74, 0.12);
}

.trust-card__title {
  margin: 8px 0 22px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: 0;
}

.trust-checks {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-checks li {
  position: relative;
  min-height: 56px;
  padding: 15px 15px 15px 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.075);
  font-weight: 760;
}

.trust-checks li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 23px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(217, 20, 36, 0.8);
}

.conversion-panel {
  grid-template-columns: minmax(260px, 1fr) minmax(190px, auto) auto auto;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-cta,
.service-note {
  margin-top: auto;
}

.gallery-card {
  appearance: none;
  padding: 0;
  cursor: pointer;
}

.gallery-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 5px;
}

.gallery-card img {
  transition: transform 320ms ease, filter 320ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: saturate(1) contrast(1.1) brightness(0.9);
  transform: scale(1.07);
}

.project-card {
  appearance: none;
  padding: 0;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
}

.project-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.82);
  outline-offset: 5px;
}

.project-card::before {
  content: "Projekt ansehen";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 8, 10, 0.5);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card:hover::before,
.project-card:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.project-card div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 8, 10, 0.5);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  transform: translateY(8px);
  transition: transform 220ms ease, background 220ms ease;
  backdrop-filter: blur(10px);
}

.project-card:hover div,
.project-card:focus-visible div {
  background: rgba(7, 8, 10, 0.68);
  transform: translateY(0);
}

.project-card h3 {
  margin: 2px 0 0;
}

.project-cta {
  align-items: center;
}

.trust-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.trust-value-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 24, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff),
    var(--white);
  box-shadow: 0 18px 44px rgba(16, 18, 24, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trust-value-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.trust-value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 20, 36, 0.22);
  box-shadow: 0 26px 68px rgba(16, 18, 24, 0.14);
}

.trust-value-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(217, 20, 36, 0.22);
  font-weight: 900;
}

.trust-value-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.18;
}

.trust-value-card p {
  margin: 0;
  color: var(--muted);
}

select,
input,
textarea {
  min-height: 52px;
  border-color: #d5dae2;
  background: #f7f8fa;
}

select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--red);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(217, 20, 36, 0.12);
}

.callback-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(16, 18, 24, 0.08);
  border-radius: 8px;
  background: #fbfcfd;
}

.callback-options legend {
  padding: 0 8px;
  color: var(--ink);
  font-weight: 900;
}

.callback-options label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(16, 18, 24, 0.08);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.callback-options input {
  width: 17px;
  height: 17px;
  min-height: 0;
  accent-color: var(--red);
}

.check-row input,
.callback-options input {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.form-status:not(:empty) {
  padding: 12px 14px;
  border: 1px solid rgba(217, 20, 36, 0.18);
  border-radius: 8px;
  background: rgba(217, 20, 36, 0.06);
}

.form-status.is-success {
  color: #107a42;
  border-color: rgba(16, 122, 66, 0.22);
  background: rgba(16, 122, 66, 0.08);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 26px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 8, 10, 0.82);
  cursor: zoom-out;
  backdrop-filter: blur(12px);
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 32px));
  max-height: calc(100vh - 52px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: #090a0d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
}

.lightbox__panel img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: #050608;
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--white);
  background: rgba(7, 8, 10, 0.64);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.lightbox__panel figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(217, 20, 36, 0.18), rgba(255, 255, 255, 0.04)),
    #11141a;
}

.lightbox__panel figcaption strong,
.lightbox__panel figcaption span {
  display: block;
}

.lightbox__panel figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

@keyframes backgroundDrift {
  from {
    transform: translate3d(-12px, 0, 0);
  }

  to {
    transform: translate3d(12px, 6px, 0);
  }
}

.work-reel::before,
.projects::before {
  animation: backgroundDrift 22s ease-in-out infinite alternate;
}

@media (hover: hover) {
  .project-card div {
    opacity: 0.94;
  }
}

@media (max-width: 1120px) {
  .trust-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-buttons {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 320px;
  }

  .project-card::before {
    opacity: 1;
    transform: none;
  }

  .trust-values-grid,
  .callback-options {
    grid-template-columns: 1fr;
  }

  .trust-value-card {
    min-height: 0;
    padding: 24px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox__panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }

  .lightbox__panel img {
    max-height: 68vh;
  }

  .lightbox__panel figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-reel::before,
  .projects::before {
    animation: none !important;
  }
}

/* Legal pages */
.legal-main {
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 20, 36, 0.09), transparent 28%),
    #f4f5f7;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 82px;
  background:
    radial-gradient(circle at 78% 20%, rgba(217, 20, 36, 0.24), transparent 32%),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 110px),
    linear-gradient(135deg, #11141a, #07080a);
}

.legal-hero__content {
  max-width: 820px;
}

.legal-hero h1 {
  margin: 12px 0 16px;
  color: var(--white);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
}

.legal-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}

.legal-card {
  padding: 42px;
  border: 1px solid rgba(16, 18, 24, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(16, 18, 24, 0.1);
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.16;
}

.legal-card h2:first-child,
.legal-card p:first-child + h2 {
  margin-top: 0;
}

.legal-card p {
  margin: 0 0 16px;
  color: #3f4652;
}

.legal-card a {
  color: var(--red);
  font-weight: 850;
}

.legal-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(16, 18, 24, 0.08);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(217, 20, 36, 0.24), transparent 32%),
    linear-gradient(135deg, #171b22, #090a0d);
  box-shadow: 0 22px 60px rgba(16, 18, 24, 0.16);
}

.legal-aside strong {
  font-size: 24px;
  line-height: 1.14;
}

.legal-aside span {
  color: rgba(255, 255, 255, 0.72);
}

.legal-aside .btn {
  width: 100%;
}

.legal-footer .footer-bottom {
  border-top: 0;
}

@media (max-width: 920px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .legal-hero {
    padding: 122px 0 62px;
  }

  .legal-card {
    padding: 26px;
  }

  .legal-card h2 {
    font-size: 21px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .designer-credit {
    width: 100%;
  }
}

/* Reduced premium CTA rhythm */
.work-reel__bottom {
  justify-content: center;
  text-align: center;
}

.conversion-panel {
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
}

.footer-grid {
  padding-top: 66px;
}

body.is-ios .hero-bg,
body.is-ios .work-reel__track,
body.is-ios .gallery-card {
  animation: none !important;
}

body.is-ios .work-reel__viewport {
  overflow-x: auto;
  mask-image: none;
  -webkit-overflow-scrolling: touch;
}

body.is-ios .work-reel__viewport::before,
body.is-ios .work-reel__viewport::after {
  display: none;
}

body.is-ios .gallery-card {
  transform: none !important;
}

body.is-ios .gallery-card img {
  filter: none;
}

body.is-ios *,
body.is-ios *::before,
body.is-ios *::after {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.is-ios .hero-bg,
body.is-ios .gallery-card img,
body.is-ios .project-card img,
body.is-ios .service-card img,
body.is-ios .final-cta > img {
  filter: none !important;
}

@media (max-width: 1120px) {
  .conversion-panel {
    grid-template-columns: 1fr;
  }
}
