:root {
  --ink: #f7f3ee;
  --ink-soft: #d7d0c8;
  --paper: #070707;
  --paper-strong: #111111;
  --panel: #151515;
  --panel-soft: #1d1d1d;
  --muted: #a9a19a;
  --fox: #e46449;
  --fox-deep: #ff7a55;
  --fox-light: #ff9a6d;
  --cyan: #22d3ee;
  --lime: #b4f13b;
  --teal: #102a2a;
  --line: rgba(255, 255, 255, 0.11);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--paper-strong);
  color: var(--ink);
  border-radius: 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

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

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

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

.brand img {
  width: 214px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-cta,
.button-primary {
  background: var(--fox);
  color: #fff;
  box-shadow: 0 10px 28px rgba(216, 99, 73, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.button-quiet {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary:hover {
  background: var(--fox-deep);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(86svh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #030303;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.home-hero .hero-bg {
  object-position: 58% center;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  mix-blend-mode: screen;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(228, 100, 73, 0.14), transparent 22%),
    linear-gradient(20deg, rgba(34, 211, 238, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.1) 48%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(860px, 100%);
  padding: clamp(76px, 10vw, 118px) 0 clamp(42px, 7vw, 76px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--fox-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--fox);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 100%;
  overflow-wrap: break-word;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.service-hero h1 {
  max-width: 900px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 640px;
}

.hero-metrics div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
}

.hero-metrics span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signal-strip {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: #050505;
}

.signal-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: signal-scroll 32s linear infinite;
}

.signal-track span {
  position: relative;
  padding-left: 24px;
}

.signal-track span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translateY(-50%);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.9);
}

@keyframes signal-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-45%);
  }
}

.quick-strip {
  background: #090909;
  border-bottom: 1px solid var(--line);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.quick-item {
  min-height: 118px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.quick-item strong {
  display: block;
  color: var(--fox-light);
  font-size: 1.4rem;
  line-height: 1.1;
}

.quick-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(70px, 9vw, 112px) 0;
}

.section.alt {
  background: #0d0d0d;
}

.section.dark {
  background: #090909;
  color: #fff;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.section-header.center {
  display: block;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  margin-bottom: 10px;
  color: var(--fox-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section.dark .section-label {
  color: var(--fox-light);
}

.section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3.2vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-lead {
  color: var(--muted);
  font-size: 1.06rem;
}

.section.dark .section-lead,
.section.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.service-grid.expanded {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card,
.portfolio-card,
.price-card,
.process-step,
.feature-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.service-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 22px;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card-featured {
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(228, 100, 73, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
}

.card-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(228, 100, 73, 0.16);
  color: var(--fox-light);
}

.service-card:nth-child(3n) .card-icon,
.feature-card:nth-child(3n) .card-icon {
  background: rgba(34, 211, 238, 0.13);
  color: #66e8ff;
}

.service-card:nth-child(4n) .card-icon,
.feature-card:nth-child(4n) .card-icon {
  background: rgba(180, 241, 59, 0.11);
  color: var(--lime);
}

.service-card h3,
.price-card h3,
.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.service-card p,
.portfolio-card p,
.feature-card p,
.process-step p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--fox-light);
  font-weight: 900;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.portfolio-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 14px;
}

.portfolio-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
  box-shadow: var(--shadow);
}

.portfolio-tile.large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.portfolio-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.06) 58%);
}

.portfolio-tile div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.portfolio-tile span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portfolio-tile h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.05;
}

.portfolio-tile:hover img {
  filter: saturate(1.2) contrast(1.08);
  transform: scale(1.045);
}

.lab-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(228, 100, 73, 0.1), transparent 28%),
    linear-gradient(35deg, rgba(34, 211, 238, 0.1), transparent 36%),
    #080808;
}

.lab-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(900px) rotateX(62deg) translateY(140px);
  transform-origin: center bottom;
}

.lab-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
}

.lab-copy h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.lab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.lab-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lab-tab.is-active,
.lab-tab:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(34, 211, 238, 0.12);
  color: #fff;
}

.lab-stage {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: #101010;
  box-shadow: var(--shadow);
}

.lab-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: opacity 0.22s ease, transform 0.7s ease;
}

.lab-stage:hover img {
  transform: scale(1.035);
}

.lab-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: none;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(14px);
}

.lab-panel.is-active {
  display: block;
}

.lab-panel strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
}

.lab-panel span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.portfolio-showcase {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portfolio-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.portfolio-card {
  overflow: hidden;
  background: #101010;
}

.portfolio-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.crop-web {
  object-position: 18% 22%;
}

.crop-brand {
  object-position: 78% 20%;
}

.crop-social {
  object-position: 22% 78%;
}

.crop-print {
  object-position: 78% 78%;
}

.portfolio-card-body {
  padding: 18px;
}

.portfolio-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

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

.process-step {
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--fox);
  color: #fff;
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 8px;
}

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

.price-card {
  padding: 24px;
}

.price-card.featured {
  border-color: rgba(216, 99, 73, 0.45);
  box-shadow: 0 18px 48px rgba(216, 99, 73, 0.16);
}

.price {
  margin: 16px 0 18px;
  color: var(--fox-light);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.price small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.check-list,
.service-list,
.price-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.service-list li,
.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list i,
.service-list i,
.price-list i {
  margin-top: 5px;
  color: var(--fox);
}

.price-list li {
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list strong {
  color: var(--fox-light);
  white-space: nowrap;
}

.contact-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.16), transparent 28%),
    linear-gradient(135deg, #080808, #122322 58%, #0a0a0a);
  color: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.46fr);
  gap: 40px;
  align-items: center;
}

.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.contact-box {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-box p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 34px 0;
  background: #0f0d0c;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner img {
  width: 180px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

.service-hero {
  min-height: auto;
}

.service-hero .hero-content {
  width: min(940px, 100%);
  padding-top: clamp(70px, 10vw, 116px);
  padding-bottom: clamp(52px, 8vw, 90px);
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a {
  color: #fff;
}

.service-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.5fr);
  gap: 36px;
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.feature-card {
  padding: 22px;
}

.sticky-quote {
  position: sticky;
  top: 102px;
}

.mini-showcase {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-showcase img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

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

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

@media (max-width: 1060px) {
  .service-grid,
  .service-grid.expanded,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 860px) {
  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 198px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px 16px 18px;
    background: rgba(18, 16, 15, 0.98);
    border-bottom: 1px solid var(--line-light);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 6px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: calc(86svh - 68px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(15, 13, 12, 0.92) 0%, rgba(15, 13, 12, 0.78) 100%),
      linear-gradient(0deg, rgba(15, 13, 12, 0.74) 0%, rgba(15, 13, 12, 0.12) 54%);
  }

  .hero-bg {
    object-position: 32% center;
  }

  .quick-grid,
  .section-header,
  .portfolio-layout,
  .contact-panel,
  .service-page-grid,
  .lab-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-showcase {
    min-height: 380px;
  }

  .portfolio-mosaic {
    grid-auto-rows: 250px;
  }

  .portfolio-tile.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .lab-stage,
  .lab-stage img {
    min-height: 420px;
  }

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

  .sticky-quote {
    position: static;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 172px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 2.7rem);
    line-height: 1;
  }

  .service-hero h1 {
    font-size: clamp(2.1rem, 10.5vw, 2.9rem);
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .service-grid,
  .service-grid.expanded,
  .portfolio-list,
  .pricing-grid,
  .process-grid,
  .portfolio-mosaic {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 20px;
  }

  .hero-metrics div {
    min-height: 74px;
    padding: 10px;
  }

  .hero-metrics strong {
    font-size: 1.6rem;
  }

  .hero-metrics span {
    font-size: 0.62rem;
  }

  .signal-track {
    gap: 24px;
    font-size: 0.76rem;
  }

  .portfolio-tile,
  .portfolio-tile.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .lab-actions {
    display: grid;
  }

  .lab-stage,
  .lab-stage img {
    min-height: 340px;
  }

  .section {
    padding: 58px 0;
  }

  .quick-item,
  .service-card,
  .price-card,
  .process-step,
  .feature-card,
  .contact-box {
    padding: 20px;
  }

  .portfolio-card img {
    height: 210px;
  }

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

/* Atualização 2026-07: orçamento personalizado e chamadas mais claras */
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  max-width: 760px;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-benefits i {
  color: var(--fox-light);
}

.quote-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(228, 100, 73, 0.16), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(34, 211, 238, 0.12), transparent 32%),
    #0b0b0b;
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
}

.quote-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: 44px;
  align-items: center;
}

.quote-copy h2 {
  max-width: 760px;
}

.quote-copy .section-lead {
  max-width: 760px;
}

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

.quote-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.quote-highlights i,
.quote-points i {
  color: var(--fox-light);
}

.quote-action-card,
.quote-card {
  padding: 28px;
  border: 1px solid rgba(228, 100, 73, 0.36);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(228, 100, 73, 0.14), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.quote-action-card h3,
.quote-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.quote-action-card p,
.quote-card p {
  color: var(--muted);
}

.quote-action-card .button,
.quote-card .button {
  width: 100%;
  margin-top: 8px;
}

.quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(37, 211, 102, 0.14);
  color: #62ef96;
  font-size: 1.35rem;
}

.quote-points {
  display: grid;
  gap: 11px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.quote-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.quote-points i {
  margin-top: 5px;
}

.floating-quote {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: #25d366;
  color: #06180d;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42), 0 0 0 5px rgba(37, 211, 102, 0.08);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.floating-quote:hover,
.floating-quote:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.floating-quote i {
  font-size: 1.25rem;
}

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

@media (max-width: 640px) {
  .hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-benefits span {
    width: 100%;
  }

  .quote-action-card,
  .quote-card {
    padding: 22px;
  }

  .floating-quote {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 12px 15px;
  }

  .floating-quote span {
    display: none;
  }
}


/* Copy ampla e CTA dos serviços */
.services-actions {
  justify-content: center;
  margin-top: 34px;
}

@media (max-width: 680px) {
  .services-actions .button {
    width: 100%;
  }
}
