/*
Theme Name: PrintSync Theme
Theme URI: https://printsync.co.za/
Author: PrintSync
Description: PrintSync public website theme for WordPress (admin dashboard excluded).
Version: 1.0.0
Text Domain: printsync-theme
*/
.tools-payment-status {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  background: rgba(19, 24, 34, 0.78);
  color: var(--text);
}

.tools-payment-status[data-kind="ok"] {
  border-color: rgba(120, 220, 160, 0.55);
  background: rgba(26, 74, 46, 0.35);
}

.tools-payment-status[data-kind="warn"] {
  border-color: rgba(255, 209, 102, 0.6);
  background: rgba(88, 63, 16, 0.35);
}

:root {
  --bg: #0f1218;
  --surface: rgba(24, 28, 38, 0.78);
  --surface-strong: #191f2a;
  --text: #eaf8ff;
  --muted: #b8c2d3;
  --line: rgba(133, 153, 190, 0.28);
  --primary: #c8001c;
  --primary-strong: #a60017;
  --secondary: #1f3a5f;
  --accent: #ffd166;
  --radius: 18px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 600px at 82% -8%, rgba(200, 0, 28, 0.24), transparent),
    radial-gradient(900px 500px at 10% 0%, rgba(31, 58, 95, 0.26), transparent),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 99;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
  z-index: -3;
}

.aura {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -2;
  opacity: 0.4;
  animation: floatAura 14s ease-in-out infinite;
}

.aura-one {
  background: rgba(200, 0, 28, 0.25);
  top: -120px;
  right: -140px;
}

.aura-two {
  background: rgba(31, 58, 95, 0.28);
  left: -180px;
  bottom: -140px;
  animation-delay: 2s;
}

@keyframes floatAura {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(30px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

.site-header {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  z-index: 40;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-bars {
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  display: block;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.nav-toggle-bars::before {
  top: -6px;
}
.nav-toggle-bars::after {
  top: 6px;
}

.nav-backdrop {
  display: none;
}

html.nav-open {
  overflow: hidden;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
  font-size: 0.92rem;
}

.site-nav a.active-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta-small {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
}

.section {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 4.2rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  padding-top: 2.6rem;
}

.page-hero {
  padding-top: 2.6rem;
  padding-bottom: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  margin: 0 0 0.9rem;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  max-width: 18ch;
}

.lead {
  color: var(--muted);
  max-width: 60ch;
  margin: 1.1rem 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff5f7;
}

.btn-primary:hover {
  background: var(--primary-strong);
}

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
}

.hero-card {
  background: linear-gradient(160deg, rgba(31, 58, 95, 0.36), rgba(25, 31, 42, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.metric {
  border: 1px solid rgba(133, 153, 190, 0.28);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(8, 19, 26, 0.45);
}

.metric-value {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
}

.metric-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-heading {
  margin-bottom: 1.3rem;
}

.client-strip-section {
  padding-top: 1.2rem;
}

.logo-marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(19, 24, 34, 0.76);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  padding: 0.9rem;
  animation: marquee 28s linear infinite;
}

.logo-item {
  min-width: 180px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.logo-item img {
  max-width: 150px;
  max-height: 46px;
  object-fit: contain;
  filter: saturate(1.1);
}

.logo-badge {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #f3f6ff;
  letter-spacing: 0.02em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.service-grid,
.policy-grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.service-card,
.policy-card,
.contact-form,
.contact-card,
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card,
.policy-card {
  padding: 1.1rem;
}

.service-card p,
.policy-card p {
  color: var(--muted);
}


.service-list {
  margin: 0.8rem 0 1rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

.service-list li::marker {
  color: var(--accent);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.catalog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 209, 102, 0.35);
  background: rgba(24, 28, 38, 0.9);
}

.catalog-tag {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
}

.catalog-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}.contact {
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.bot-form input {
  background: #141a24;
  border: 1px solid rgba(133, 153, 190, 0.35);
  color: var(--text);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.calc-note {
  margin: -0.2rem 0 0;
  color: var(--accent);
  font-weight: 600;
}

.contact-card {
  padding: 1.1rem;
}

.contact-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 0.6rem;
}

.contact-card p {
  margin: 0.5rem 0;
  color: var(--muted);
}

.contact-card a {
  color: var(--text);
}

.site-footer {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 0 0 5.4rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
}


.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0 1.2rem;
  border-top: 1px solid var(--line);
}

.footer-block {
  display: grid;
  gap: 0.55rem;
}

.footer-brand {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.footer-muted {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.92;
  word-break: break-word;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.65rem 0.8rem;
}

.footer-details summary {
  cursor: pointer;
  font-weight: 700;
}

.footer-details p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid rgba(133, 153, 190, 0.16);
  padding: 0.9rem 0 0;
  margin-bottom: 0.3rem;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sitemap-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.sitemap-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.sitemap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.sitemap-link {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  max-width: 100%;
}

.sitemap-link:hover {
  border-color: rgba(255, 209, 102, 0.6);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sitemap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-list {
    gap: 0.45rem;
  }

  .sitemap-link {
    flex: 1 1 auto;
  }
}.portfolio-hero {
  padding-top: 2.4rem;
  padding-bottom: 1rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-grid--dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portfolio-grid--dense .portfolio-card .image-container {
  aspect-ratio: 16 / 9;
}

.portfolio-card {
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, border-color 260ms ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 209, 102, 0.48);
}

.portfolio-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.portfolio-meta {
  padding: 0.9rem 1rem 1rem;
}

.portfolio-meta p {
  color: var(--muted);
  margin: 0.45rem 0 0;
}

.home-showcase .section-heading {
  max-width: 820px;
}

.proof-engine {
  padding-top: 1.6rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.case-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.case-body {
  padding: 0.95rem;
}

.case-tag {
  margin: 0;
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.case-body h3 {
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

.case-body p {
  color: var(--muted);
}

.case-body ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.showcase-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(24, 28, 38, 0.72);
  box-shadow: var(--shadow);
  padding: 0.9rem;
  overflow: hidden;
}

.showcase-panel-head h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.showcase-panel-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.showcase-panel-foot {
  padding-top: 0.8rem;
}

.showcase-video {
  margin-top: 0.8rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  aspect-ratio: 9 / 16;
  max-height: 520px;
}

.showcase-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.quote-receipt {
  background: #f8f4ea;
  border: 1px solid #dacfb9;
  border-radius: 16px;
  color: #2b2213;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.receipt-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  border-bottom: 1px dashed #b9ab8d;
  padding-bottom: 0.7rem;
}

.receipt-kicker {
  margin: 0 0 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #6c5a3a;
}

.receipt-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.receipt-meta,
.receipt-party {
  border-bottom: 1px dashed #c7baa0;
  padding: 0.62rem 0;
}

.receipt-meta p,
.receipt-party p {
  margin: 0.25rem 0;
}

.receipt-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.7rem;
  font-size: 0.88rem;
}

.receipt-table th,
.receipt-table td {
  border-bottom: 1px dashed #cfbfa0;
  text-align: left;
  padding: 0.48rem 0.25rem;
  vertical-align: top;
}

.receipt-table .is-right {
  text-align: right;
}

.receipt-total {
  margin-top: 0.8rem;
}

.receipt-total p {
  margin: 0.3rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.receipt-notes {
  border-top: 1px dashed #c7baa0;
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
}

.receipt-foot {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: #5f543f;
}

.quote-form-status {
  margin: 0;
  min-height: 1.1rem;
  color: var(--accent);
  font-size: 0.9rem;
}

.mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem;
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  background: rgba(10, 12, 18, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  z-index: 50;
}

.mobile-actions a {
  text-align: center;
  text-decoration: none;
  color: var(--text);
  padding: 0.65rem 0.4rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.88rem;
  white-space: nowrap;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.mobile-action-call {
  background: rgba(31, 58, 95, 0.5);
  border-color: rgba(133, 153, 190, 0.44);
}

.mobile-action-quote {
  background: rgba(200, 0, 28, 0.44);
  border-color: rgba(255, 209, 102, 0.56);
}

.mobile-action-whatsapp {
  background: rgba(22, 130, 72, 0.42);
  border-color: rgba(118, 214, 156, 0.48);
}

.support-toggle {
  position: fixed;
  right: 1rem;
  bottom: 5.3rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 700;
  padding: 0.72rem 1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 60;
}

.support-bot {
  position: fixed;
  right: 1rem;
  bottom: 9rem;
  width: min(360px, calc(100vw - 1.4rem));
  background: #161b26;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 61;
}

.support-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.8rem;
  background: rgba(31, 58, 95, 0.34);
}

.support-header h3 {
  font-size: 1rem;
}

.support-close {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}

.support-messages {
  max-height: 230px;
  overflow: auto;
  padding: 0.7rem;
  display: grid;
  gap: 0.45rem;
}

.bot-msg,
.user-msg {
  padding: 0.52rem 0.65rem;
  border-radius: 10px;
  margin: 0;
  font-size: 0.9rem;
}

.bot-msg {
  background: rgba(31, 58, 95, 0.3);
}

.user-msg {
  background: rgba(200, 0, 28, 0.22);
  justify-self: end;
}

.support-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  padding: 0 0.7rem 0.65rem;
}

.support-actions button,
.bot-form button {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #1b2230;
  color: var(--text);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
}

.bot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
  padding: 0 0.7rem 0.7rem;
}

.shop-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 1rem;
  align-items: start;
}

.shop-controls {
  padding-top: 1.1rem;
  padding-bottom: 1rem;
  display: grid;
  gap: 0.8rem;
}

.shop-search-wrap {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.shop-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.shop-filter-buttons button {
  border: 1px solid var(--line);
  background: #1a2230;
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  font-size: 0.84rem;
  max-width: 100%;
}


.shop-filter-buttons button.is-active {
  background: rgba(200, 0, 28, 0.3);
  border-color: rgba(255, 209, 102, 0.6);
}


@media (max-width: 560px) {
  .shop-filter-buttons button {
    flex: 1 1 calc(50% - 0.55rem);
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .shop-filter-buttons button {
    flex-basis: 100%;
  }
}.shop-no-results {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

.shop-main {
  display: grid;
  gap: 1.2rem;
}

.shop-category {
  display: grid;
  gap: 0.8rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.shop-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  padding: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.shop-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.shop-card h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.shop-card button,
.checklist-panel button {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #1b2230;
  color: var(--text);
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}

.shop-card button.added {
  border-color: rgba(255, 209, 102, 0.6);
  background: rgba(200, 0, 28, 0.28);
}

.checklist-panel {
  position: sticky;
  top: 5rem;
  padding: 1rem;
}

.checklist-items {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  max-height: 340px;
  overflow: auto;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 14, 0.72);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  z-index: 90;
  padding: 0.8rem;
}

.checkout-modal[hidden] {
  display: none !important;
}

.checkout-box {
  width: min(620px, 100%);
  background: #161c29;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.shop-checkout-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.shop-checkout-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.checkout-line-items {
  display: grid;
  gap: 0.6rem;
  padding: 0.5rem 0;
}

.checkout-line-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.02);
}

.checkout-line-item h4 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.checkout-line-grid {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 0.5rem;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.admin-card-head button {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #1b2230;
  color: var(--text);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

.admin-meta {
  color: var(--muted);
  margin: 0.8rem 0;
}

.admin-empty {
  color: var(--muted);
  margin: 0;
}

.admin-list {
  display: grid;
  gap: 0.8rem;
  max-height: 72vh;
  overflow: auto;
}

.submission-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.02);
}

.submission-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.submission-card p {
  margin: 0.35rem 0;
  color: var(--muted);
}

.submission-card ul {
  margin: 0.35rem 0 0;
  padding-left: 1.05rem;
}

.admin-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-height: 72vh;
  overflow: auto;
}

.product-admin-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 0.5rem;
}

.product-admin-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.product-admin-card h4 {
  font-size: 0.95rem;
}

.product-admin-card label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.82rem;
}

.product-admin-actions {
  display: flex;
  gap: 0.4rem;
}

.product-admin-card button {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #1b2230;
  color: var(--text);
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}

.admin-body {
  min-height: 100vh;
  padding: 1rem 0;
}

.admin-shell {
  width: min(1420px, 94%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 1rem;
  position: relative;
}

.admin-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 16, 0.68);
  backdrop-filter: blur(8px);
  z-index: 55;
}

.admin-content {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  min-width: 0;
}

.admin-topbar {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(17, 22, 32, 0.72);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  position: sticky;
  top: 1rem;
  z-index: 45;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.admin-topbar-title {
  display: grid;
  gap: 0.1rem;
}

.admin-topbar-kicker {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(234, 248, 255, 0.7);
}

.admin-topbar-h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.admin-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  display: none;
  place-items: center;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.admin-icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 209, 102, 0.55);
  background: rgba(255, 255, 255, 0.04);
}

.admin-burger {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  display: block;
  position: relative;
}

.admin-burger::before,
.admin-burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.admin-burger::before { top: -6px; }
.admin-burger::after { top: 6px; }

.admin-primary-btn {
  border: 1px solid rgba(255, 209, 102, 0.55);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(200, 0, 28, 0.4), rgba(200, 0, 28, 0.2));
  color: var(--text);
  padding: 0.62rem 0.9rem;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 140ms ease, filter 140ms ease, border-color 140ms ease;
}

.admin-primary-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.admin-sidebar {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 1rem 0.8rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  position: sticky;
  top: 1rem;
  max-height: calc(100vh - 2rem);
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.admin-brand {
  padding: 0.2rem 0.2rem;
}

.admin-brand-text {
  display: grid;
  line-height: 1.1;
}

.admin-brand-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.admin-brand-sub {
  font-size: 0.82rem;
  color: rgba(234, 248, 255, 0.72);
}

.admin-user-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.admin-menu {
  display: grid;
  gap: 0.45rem;
}

.admin-menu-btn {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(133, 153, 190, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 0.62rem 0.7rem;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.admin-menu-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 209, 102, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

.admin-menu-btn.is-active {
  background:
    linear-gradient(90deg, rgba(200, 0, 28, 0.38), rgba(255, 209, 102, 0.12));
  border-color: rgba(255, 209, 102, 0.65);
}

.admin-back-link {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
}

.admin-main {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 1rem;
  min-width: 0;
}

.admin-view {
  display: none;
}

.admin-view.is-active {
  display: block;
  animation: adminViewIn 220ms ease both;
}

@keyframes adminViewIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.admin-view-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.admin-view-head button {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #1b2230;
  color: var(--text);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.admin-kpi-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.8rem;
}

.admin-kpi-card h3 {
  font-size: 0.9rem;
  color: var(--muted);
}

.admin-kpi-card p {
  margin: 0.4rem 0 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.crm-columns {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 1fr);
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
}

.crm-col {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  scroll-snap-align: start;
}

.crm-col h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.crm-list {
  display: grid;
  gap: 0.55rem;
  max-height: 68vh;
  overflow: auto;
}

.crm-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem;
  display: grid;
  gap: 0.42rem;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.crm-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 209, 102, 0.45);
  background: rgba(255, 255, 255, 0.03);
}

.crm-card h4 {
  font-size: 0.92rem;
}

.crm-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.crm-card label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.78rem;
}

.crm-card select,
.crm-card input,
.crm-card textarea,
.admin-form input,
.admin-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111926;
  color: var(--text);
  padding: 0.42rem 0.5rem;
  font: inherit;
}

.crm-card button,
.admin-form button {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #1b2230;
  color: var(--text);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
}

.crm-card button:disabled,
.admin-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.admin-form {
  display: grid;
  gap: 0.65rem;
  max-width: 820px;
}

.admin-builder-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.admin-builder-form {
  max-width: none;
}

.admin-builder-form h3 {
  margin: 0.4rem 0 0.1rem;
  font-size: 0.96rem;
  color: rgba(234, 248, 255, 0.86);
}

.admin-builder-preview-shell {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem;
  position: sticky;
  top: 1rem;
}

.admin-builder-toolbar {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.admin-builder-toolbar button {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #1b2230;
  color: var(--text);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

.builder-frame-wrap {
  border: 1px solid rgba(133, 153, 190, 0.3);
  border-radius: 12px;
  background: #0b111a;
  padding: 0.5rem;
  overflow: auto;
  transition: all 180ms ease;
}

.builder-frame-wrap iframe {
  border: 0;
  width: 100%;
  height: min(72vh, 760px);
  border-radius: 8px;
  background: #0f1218;
}

.builder-frame-wrap.is-mobile {
  width: min(430px, 100%);
  margin: 0 auto;
}

.builder-blocks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.builder-block-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(133, 153, 190, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.55rem 0.65rem;
  cursor: move;
  user-select: none;
}

.builder-drag-handle {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 209, 102, 0.86);
}

.builder-block-item.is-dragging {
  opacity: 0.58;
}

.builder-block-item.is-drop-target {
  border-color: rgba(255, 209, 102, 0.7);
  background: rgba(200, 0, 28, 0.2);
}

.admin-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.86rem;
}

.admin-hint {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.toggle-wrap {
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  gap: 0.45rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.reveal-delay {
  transition-delay: 140ms;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .site-nav {
    gap: 0.7rem;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

  .hero,
  .contact-grid,
  .quote-layout,
  .shop-layout,
  .admin-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: fixed;
    left: -320px;
    top: 1rem;
    width: min(320px, calc(100vw - 2rem));
    z-index: 60;
    max-height: calc(100vh - 2rem);
    transition: left 220ms ease;
  }

  body.admin-nav-open .admin-sidebar {
    left: 1rem;
  }

  .admin-icon-btn {
    display: grid;
  }

  .admin-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-builder-layout {
    grid-template-columns: 1fr;
  }

  .admin-builder-preview-shell {
    position: static;
  }

  .crm-columns {
    grid-auto-columns: minmax(260px, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checklist-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 60;
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(86vw, 340px);
    padding: 90px 18px 18px;
    background: rgba(9, 10, 12, 0.96);
    border-left: 1px solid var(--line);
    backdrop-filter: blur(10px);
    transform: translateX(110%);
    transition: transform 200ms ease;
    z-index: 70;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.is-nav-open .site-nav {
    transform: translateX(0);
  }

  .site-header.is-nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 1rem;
    padding: 0.35rem 0;
  }

  .site-nav-group {
    width: 100%;
  }

  .site-nav-dropdown {
    position: static;
    display: block;
    padding: 0.35rem 0 0.2rem 0.85rem;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.25rem;
  }

  .section {
    padding: 3.1rem 0;
  }

  .policy-grid,
  .service-grid,
  .case-grid,
  .portfolio-grid,
  .shop-grid,
  .admin-products {
    grid-template-columns: 1fr;
  }

  .admin-kpi-grid {
    grid-template-columns: 1fr;
  }

  .crm-columns {
    grid-auto-columns: minmax(86vw, 1fr);
  }

  .logo-item {
    min-width: 150px;
    height: 58px;
  }

  .logo-item img {
    max-width: 126px;
    max-height: 38px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 7.2rem;
  }

  .mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem;
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  background: rgba(10, 12, 18, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  z-index: 50;
}

  .support-toggle {
    bottom: 7rem;
  }

  .support-bot {
    right: 0.7rem;
    bottom: 10.4rem;
  }
}

@media (max-width: 560px) {
  .mobile-actions a {
    font-size: 0.84rem;
    padding: 0.6rem 0.35rem;
  }

  .site-footer {
    padding-bottom: 9.4rem;
  }

  .support-toggle {
    bottom: 9.3rem;
  }

  .support-bot {
    bottom: 12.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .js .reveal {
    transition: none;
    transform: none;
  }

  .admin-view.is-active {
    animation: none;
  }

  .admin-menu-btn,
  .admin-icon-btn,
  .admin-primary-btn {
    transition: none;
  }
}

/* Mockup Studio (desktop-only) */
.studio-body .site-header {
  width: min(1240px, 92%);
}

.studio-mobile-block {
  display: none;
}

.studio-hero {
  padding-top: 2.4rem;
  padding-bottom: 1rem;
}

.studio-shell {
  display: grid;
  grid-template-columns: 360px 1fr 360px;
  gap: 1rem;
  align-items: start;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.catalog-card {
  border: 1px solid rgba(133, 153, 190, 0.25);
  border-radius: 14px;
  background: rgba(11, 14, 22, 0.85);
  padding: 0.85rem;
  display: grid;
  gap: 0.45rem;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease;
}

.catalog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 209, 102, 0.6);
}

.catalog-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.catalog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.catalog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.catalog-tag {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
}

.catalog-card.is-active {
  border-color: rgba(200, 0, 28, 0.8);
  box-shadow: 0 18px 30px rgba(200, 0, 28, 0.25);
}

.studio-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(24, 28, 38, 0.72);
  box-shadow: var(--shadow);
  padding: 0.95rem;
  overflow: hidden;
}

.studio-panel-right {
  position: sticky;
  top: 5.2rem;
}

.studio-panel-head h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.studio-panel-head p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.studio-group {
  border-top: 1px solid rgba(133, 153, 190, 0.18);
  padding-top: 0.85rem;
  margin-top: 0.85rem;
}

.studio-group h3 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  color: rgba(234, 248, 255, 0.92);
}

.studio-hint {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.studio-select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #111926;
  color: var(--text);
  padding: 0.6rem 0.65rem;
  font: inherit;
}

.studio-file {
  display: grid;
  gap: 0.5rem;
  border: 1px dashed rgba(255, 209, 102, 0.55);
  border-radius: 14px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
}

.studio-file input {
  width: 100%;
}

.studio-file span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.studio-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.studio-field {
  display: grid;
  gap: 0.3rem;
  font-size: 0.86rem;
}

.studio-field input[type="range"] {
  width: 100%;
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.studio-form {
  display: grid;
  gap: 0.6rem;
}

.studio-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.studio-form input,
.studio-form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #111926;
  color: var(--text);
  padding: 0.55rem 0.65rem;
  font: inherit;
}

.studio-status {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: rgba(234, 248, 255, 0.88);
}

.studio-status[data-kind="error"] { color: rgba(255, 209, 102, 0.95); }
.studio-status[data-kind="ok"] { color: rgba(180, 255, 210, 0.92); }

.studio-canvas {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(24, 28, 38, 0.72);
  box-shadow: var(--shadow);
  padding: 0.95rem;
  min-width: 0;
}

.studio-canvas-head h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.studio-canvas-head p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.studio-stage {
  margin-top: 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.studio-stage canvas {
  width: 100%;
  height: auto;
  display: block;
}

.studio-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(600px 280px at center, rgba(200, 0, 28, 0.12), transparent);
  color: rgba(234, 248, 255, 0.9);
  padding: 1.1rem;
}

.studio-empty p {
  margin: 0.35rem 0;
  color: rgba(234, 248, 255, 0.8);
}

.studio-templates {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  max-height: 70vh;
  overflow: auto;
  padding-right: 0.25rem;
}

.studio-template-card {
  text-align: left;
  border: 1px solid rgba(133, 153, 190, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 0.55rem;
  cursor: pointer;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.7rem;
  align-items: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.studio-template-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 209, 102, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

.studio-template-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.studio-template-card span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.studio-panel-foot {
  border-top: 1px solid rgba(133, 153, 190, 0.18);
  padding-top: 0.85rem;
  margin-top: 0.85rem;
}

.studio-block-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(24, 28, 38, 0.72);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

@media (max-width: 1100px) {
  .studio-desktop-only {
    display: none;
  }

  .studio-mobile-block {
    display: block;
  }
}
/* T-shirt printing visual sections */
.tshirt-showcase {
  padding-top: 1.2rem;
}

.tshirt-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tshirt-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.tshirt-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  display: block;
}

.shop-visual-strip {
  padding-top: 0.8rem;
  padding-bottom: 0.5rem;
}

@media (max-width: 1024px) {
  .tshirt-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tshirt-gallery {
    grid-template-columns: 1fr;
  }
}
/* Services dropdown nav */
.site-nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav-parent::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.7rem;
  opacity: 0.85;
}

.site-nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(16, 20, 30, 0.97);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.35rem;
  z-index: 80;
}

.site-nav-group:hover .site-nav-dropdown,
.site-nav-group:focus-within .site-nav-dropdown {
  display: grid;
}

.site-nav-dropdown a {
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  font-size: 0.86rem;
  line-height: 1.25;
}

.site-nav-dropdown a:hover {
  background: rgba(200, 0, 28, 0.2);
  opacity: 1;
}

.site-nav-group.is-active .site-nav-parent {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-card[id] {
  scroll-margin-top: 110px;
}
.printsync-page-builder {
  min-height: 60vh;
}

.printsync-page-builder .pagelayer-wrap,
.printsync-page-builder .pagelayer-row,
.printsync-page-builder .pagelayer-col-holder {
  max-width: 100%;
}
/* Most Interesting flagship section */
.interest-section {
  padding-top: 1.3rem;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.interest-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(24, 28, 38, 0.96), rgba(15, 18, 24, 0.96));
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.interest-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  display: block;
}

.interest-body {
  padding: 0.95rem;
  display: grid;
  gap: 0.45rem;
}

.interest-tag {
  margin: 0;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.interest-body h3 {
  font-size: 1.12rem;
}

.interest-body p {
  margin: 0;
  color: var(--muted);
}

.interest-card-feature {
  grid-column: span 2;
  min-height: 100%;
}

.interest-card-feature img {
  height: 260px;
}

.interest-card-highlight {
  border-color: rgba(200, 0, 28, 0.5);
  background: linear-gradient(165deg, rgba(35, 16, 20, 0.96), rgba(18, 12, 16, 0.98));
}

.interest-card .btn {
  width: fit-content;
  margin-top: 0.25rem;
}
@media (max-width: 1024px) {
  .interest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interest-card-feature {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .interest-grid {
    grid-template-columns: 1fr;
  }

  .interest-card-feature {
    grid-column: span 1;
  }

  .interest-card-feature img,
  .interest-card img {
    height: 220px;
  }
}
/* Tools landing refresh */
.tools-lab-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(133, 153, 190, 0.26);
  border-radius: 30px;
  background:
    radial-gradient(900px 300px at 78% 8%, rgba(255, 209, 102, 0.16), transparent),
    radial-gradient(700px 380px at 18% -12%, rgba(200, 0, 28, 0.32), transparent),
    linear-gradient(145deg, rgba(9, 13, 22, 0.95), rgba(14, 19, 30, 0.92));
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: end;
}

.tools-lab-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.04) 40%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 70px);
  opacity: 0.5;
}

.tools-lab-copy,
.tools-lab-stats {
  position: relative;
  z-index: 1;
}

.tools-lab-copy h1 {
  max-width: 18ch;
}

.tools-lab-stats {
  border: 1px solid rgba(255, 209, 102, 0.35);
  border-radius: 20px;
  background: rgba(5, 8, 14, 0.6);
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.tools-lab-stats p {
  margin: 0;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(133, 153, 190, 0.22);
  color: rgba(234, 248, 255, 0.86);
}

.tools-lab-stats p:last-child {
  border-bottom: 0;
}

.tools-lab-stats strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  margin-right: 0.35rem;
  color: #ffffff;
}

.tools-package-strip {
  padding-top: 2.2rem;
}

.tools-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tools-package-card {
  border: 1px solid rgba(133, 153, 190, 0.28);
  border-radius: 18px;
  background: linear-gradient(170deg, rgba(22, 28, 40, 0.95), rgba(10, 13, 20, 0.95));
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.tools-package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 209, 102, 0.56);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.35);
}

.tools-package-tag {
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.tools-package-card h3 {
  font-size: 1.2rem;
}

.tools-package-card p {
  color: var(--muted);
}
.tools-package-price {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 102, 0.5);
  background: rgba(255, 209, 102, 0.12);
  color: #ffe8ab;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.tools-package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tools-bank-card {
  margin-top: 1rem;
  border: 1px solid rgba(255, 209, 102, 0.45);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(31, 38, 52, 0.95), rgba(13, 16, 24, 0.95));
  box-shadow: var(--shadow);
  padding: 1rem;
}

.tools-bank-card h3 {
  font-size: 1.1rem;
  margin: 0.2rem 0 0.55rem;
}

.tools-bank-card p {
  margin: 0.4rem 0;
  color: var(--muted);
}

.tools-bank-card strong {
  color: #ffffff;
}

.quote-bank-card {
  border: 1px solid rgba(255, 209, 102, 0.4);
  border-radius: 12px;
  background: rgba(14, 19, 30, 0.72);
  padding: 0.75rem;
  margin: 0.1rem 0 0.2rem;
}

.quote-bank-card p {
  margin: 0.3rem 0;
  color: var(--muted);
}

.quote-bank-card strong {
  color: #ffffff;
}
.tools-package-actions .btn {
  padding: 0.62rem 0.95rem;
}

.tools-gateway-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
  padding-top: 1.8rem;
}

.tools-gateway-card,
.tools-jump-nav {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 27, 39, 0.78);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.tools-jump-nav {
  display: grid;
  gap: 0.55rem;
}

.tools-jump-nav h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.tools-jump-nav a {
  text-decoration: none;
  color: rgba(234, 248, 255, 0.92);
  border: 1px solid rgba(133, 153, 190, 0.25);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.55rem 0.65rem;
  transition: transform 170ms ease, background-color 170ms ease, border-color 170ms ease;
}

.tools-jump-nav a:hover {
  transform: translateX(2px);
  background: rgba(200, 0, 28, 0.2);
  border-color: rgba(255, 209, 102, 0.45);
}
@media (max-width: 1024px) {
  .tools-lab-hero,
  .tools-gateway-grid {
    grid-template-columns: 1fr;
  }

  .tools-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tools-lab-hero {
    padding: 2.8rem 1.1rem;
    border-radius: 22px;
  }

  .tools-package-grid {
    grid-template-columns: 1fr;
  }
}
/* Tools page */
.tools-hero h1 {
  max-width: 22ch;
}

.tools-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: start;
}

.tools-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.tools-grid-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.tools-grid-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.tools-grid-form input,
.tools-grid-form select,
.tools-grid-form textarea,
.tools-table input {
  background: #141a24;
  border: 1px solid rgba(133, 153, 190, 0.35);
  color: var(--text);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font: inherit;
}

.tools-grid-finance {
  margin-top: 0.8rem;
}

.tools-line-items {
  margin-top: 1rem;
}

.tools-line-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.tools-table {
  width: 100%;
  border-collapse: collapse;
}

.tools-table th,
.tools-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.45rem;
  font-size: 0.85rem;
}

.tools-table th {
  text-align: left;
  color: var(--muted);
}

.doc-remove {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  padding: 0.25rem 0.45rem;
  cursor: pointer;
}

.doc-preview {
  min-height: 280px;
}

.doc-paper {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 12, 18, 0.85);
  padding: 0.9rem;
  display: grid;
  gap: 0.8rem;
}

.doc-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.doc-columns pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: inherit;
  color: var(--muted);
}

.doc-preview-table {
  width: 100%;
  border-collapse: collapse;
}

.doc-preview-table th,
.doc-preview-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.4rem;
  font-size: 0.84rem;
}

.doc-totals {
  justify-self: end;
  min-width: 250px;
}

.doc-totals p {
  margin: 0.28rem 0;
}

.doc-grand {
  font-size: 1.02rem;
  color: #ffffff;
}

.qr-preview {
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: rgba(10, 12, 18, 0.6);
  margin-bottom: 0.8rem;
}

#qrPreview canvas,
#qrPreview svg {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .tools-shell {
    grid-template-columns: 1fr;
  }

  .tools-grid-form,
  .doc-columns {
    grid-template-columns: 1fr;
  }
}

.tools-inline-select {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.tools-inline-select select {
  min-width: 170px;
}

.tools-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.tools-list {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 12, 18, 0.45);
  min-height: 130px;
  padding: 0.55rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.tools-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem;
  border: 1px solid rgba(133, 153, 190, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.tools-list-item p {
  margin: 0.2rem 0 0;
}

.tools-list-actions {
  display: inline-flex;
  gap: 0.4rem;
}

.tools-mini {
  padding: 0.42rem 0.75rem;
  font-size: 0.77rem;
}

.doc-paper-head {
  display: grid;
  gap: 0.35rem;
}

.doc-brand {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
  font-weight: 700;
}

.doc-theme-minimal-clean {
  background: rgba(247, 247, 247, 0.98);
  color: #111;
}

.doc-theme-minimal-clean .doc-brand {
  color: #333;
}

.doc-theme-minimal-clean pre,
.doc-theme-minimal-clean p,
.doc-theme-minimal-clean h2,
.doc-theme-minimal-clean h4,
.doc-theme-minimal-clean td,
.doc-theme-minimal-clean th {
  color: #111;
}

.doc-theme-dark-impact {
  background: linear-gradient(165deg, rgba(14, 17, 24, 1), rgba(8, 10, 14, 1));
  border-color: rgba(128, 0, 28, 0.5);
}

.doc-theme-dark-impact .doc-brand {
  color: #ff4d64;
}

.barcode-canvas {
  width: 100%;
  min-height: 108px;
  margin-top: 0.75rem;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: rgba(10, 12, 18, 0.65);
  padding: 0.55rem;
}

@media (max-width: 760px) {
  .tools-stack-grid {
    grid-template-columns: 1fr;
  }
}

/* Home lead + search + safety signs */
.home-search-shell {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(17, 22, 32, 0.72);
  padding: 0.8rem;
  display: grid;
  gap: 0.65rem;
}

.home-search-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.home-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.home-search-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-search-link {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
}

.home-search-link:hover {
  border-color: rgba(255, 209, 102, 0.6);
}

.home-growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.home-growth-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.marketing-lead-form {
  display: grid;
  gap: 0.65rem;
}

.marketing-lead-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.lead-consent {
  display: flex !important;
  align-items: center;
  gap: 0.45rem;
  color: var(--text) !important;
}

.home-safety-signs .section-heading {
  max-width: 760px;
}

.home-safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-safety-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
}

.home-safety-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.home-safety-card h3 {
  margin: 0;
  padding: 0.7rem 0.8rem;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .home-growth-grid {
    grid-template-columns: 1fr;
  }

  .home-safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-search-row {
    grid-template-columns: 1fr;
  }

  .home-safety-grid {
    grid-template-columns: 1fr;
  }
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1rem + var(--ps-mobile-actions-height, 0px));
  width: min(720px, calc(100vw - 2rem));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 21, 31, 0.96);
  box-shadow: var(--shadow);
  padding: 1rem;
  z-index: 70;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-eyebrow {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

.cookie-banner h3 {
  margin: 0;
  font-size: 1.15rem;
}

.cookie-banner p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.cookie-prefs-btn {
  position: fixed;
  left: 1rem;
  bottom: calc(1rem + var(--ps-mobile-actions-height, 0px));
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 14, 22, 0.92);
  color: var(--text);
  padding: 0.5rem 0.85rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  z-index: 69;
}

.cookie-prefs-btn[hidden] {
  display: none;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 0.65rem;
    right: 0.65rem;
    width: auto;
    padding: 0.85rem;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }

  .cookie-prefs-btn {
    left: 0.65rem;
    }
}

.page-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  color: rgba(255,255,255,0.82);
}

.page-breadcrumbs a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-breadcrumbs span[aria-current="page"] {
  color: #ffe9b0;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 0.65rem 0 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ps-studio-control {
  margin-top: 0.8rem;
}

.ps-studio-control-bar {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(8, 12, 20, 0.55);
  display: grid;
  gap: 0.85rem;
}

.ps-studio-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ps-studio-nav-btn.is-active {
  border-color: rgba(255, 209, 102, 0.72);
  background: rgba(255, 209, 102, 0.16);
}

.ps-studio-panel {
  display: none;
}

.ps-studio-panel.is-active {
  display: grid;
  animation: toolsPanelIn 200ms ease both;
}

@keyframes toolsPanelIn {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Client auth pages */
.auth-shell {
  display: flex;
  justify-content: center;
}

.auth-card {
  width: min(560px, 100%);
  background: linear-gradient(160deg, rgba(12, 16, 29, 0.95), rgba(20, 28, 50, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 14px;
}

.auth-card h2 {
  margin: 0;
}

.auth-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.auth-card label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"] {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 11, 22, 0.7);
  color: #fff;
  border-radius: 12px;
  padding: 11px 12px;
  outline: none;
}

.auth-card input:focus {
  border-color: rgba(255, 86, 61, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 86, 61, 0.2);
}

.auth-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.auth-submit {
  width: 100%;
}

.auth-notice {
  margin: 0;
  border: 1px solid rgba(255, 159, 67, 0.38);
  background: rgba(255, 159, 67, 0.12);
  color: #ffd7a6;
  border-radius: 12px;
  padding: 10px 12px;
}

.auth-links {
  margin: 2px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-links a {
  color: #ffd6cf;
  text-decoration: none;
  font-size: 0.92rem;
}

.auth-links a:hover,
.auth-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .auth-card {
    padding: 20px;
    border-radius: 14px;
  }
}

/* Auth UX refinement pass */
.auth-hero .lead {
  max-width: 62ch;
}

.auth-section {
  padding-top: clamp(12px, 2vw, 24px);
}

.auth-card {
  width: min(620px, 100%);
}

.auth-footnote {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.auth-notice.is-error {
  border-color: rgba(255, 107, 107, 0.4);
  background: rgba(255, 107, 107, 0.14);
  color: #ffd0d0;
}

.auth-notice.is-success {
  border-color: rgba(87, 230, 173, 0.4);
  background: rgba(87, 230, 173, 0.12);
  color: #c7ffe9;
}

.auth-notice.is-info {
  border-color: rgba(255, 159, 67, 0.38);
  background: rgba(255, 159, 67, 0.12);
  color: #ffd7a6;
}

@media (max-width: 900px) {
  .auth-section {
    padding-top: 10px;
  }

  .auth-card {
    width: min(680px, 100%);
  }
}

@media (max-width: 640px) {
  .auth-shell {
    display: block;
  }

  .auth-card {
    width: 100%;
    padding: 18px;
    gap: 12px;
  }

  .auth-card h2 {
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .auth-sub,
  .auth-footnote,
  .auth-links a,
  .auth-card label {
    font-size: 0.9rem;
  }

  .auth-card input[type="text"],
  .auth-card input[type="email"],
  .auth-card input[type="password"] {
    padding: 10px 11px;
    border-radius: 10px;
  }

  .auth-submit {
    min-height: 44px;
  }

  .auth-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* Mockup Studio Product-Style Refresh */
.studio-pro {
  --studio-surface: #f7f9fc;
  --studio-card: #ffffff;
  --studio-line: #dbe4ef;
  --studio-text: #10233f;
  --studio-muted: #4f647f;
  --studio-accent: #1f66d1;
  --studio-accent-soft: #e8f1ff;
}

.studio-pro .section {
  width: min(1380px, 94%);
}

.studio-pro .studio-hero {
  padding-top: 1.8rem;
  padding-bottom: 0.8rem;
}

.studio-pro .studio-hero .eyebrow,
.studio-pro .studio-hero h1,
.studio-pro .studio-hero .lead {
  color: #eef5ff;
}

.studio-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.studio-hero-meta span {
  border: 1px solid rgba(232, 241, 255, 0.36);
  color: #e8f1ff;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font-size: 0.78rem;
}

.studio-shell-pro {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 330px;
  gap: 1rem;
  align-items: start;
}

.studio-pro .studio-panel,
.studio-pro .studio-canvas {
  border: 1px solid var(--studio-line);
  background: var(--studio-card);
  color: var(--studio-text);
  box-shadow: 0 16px 34px rgba(16, 35, 63, 0.1);
  border-radius: 18px;
}

.studio-pro .studio-panel-head h2,
.studio-pro .studio-canvas-head h2,
.studio-pro .studio-group h3 {
  color: var(--studio-text);
}

.studio-pro .studio-panel-head p,
.studio-pro .studio-canvas-head p,
.studio-pro .studio-hint,
.studio-pro .studio-status,
.studio-pro .catalog-card p {
  color: var(--studio-muted);
}

.studio-pro .studio-group {
  border-top: 1px solid var(--studio-line);
}

.studio-pro .studio-select,
.studio-pro .studio-form input,
.studio-pro .studio-form textarea {
  border: 1px solid #ccd9e8;
  background: #f8fbff;
  color: var(--studio-text);
}

.studio-pro .studio-file {
  border: 1px dashed #94b6e8;
  background: #f4f9ff;
}

.studio-pro .studio-file span {
  color: #0f3268;
}

.studio-pro .studio-canvas-head-pro {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
}

.studio-pro .studio-stage {
  border: 1px solid #d7e3f2;
  border-radius: 14px;
  background: linear-gradient(180deg, #f5f9ff 0%, #edf4fd 100%);
  min-height: 420px;
}

.studio-pro .studio-empty {
  background: radial-gradient(560px 260px at center, rgba(31, 102, 209, 0.14), transparent);
  color: var(--studio-text);
}

.studio-pro .studio-empty p {
  color: var(--studio-muted);
}

.studio-pro .studio-template-card,
.studio-pro .catalog-card {
  border: 1px solid var(--studio-line);
  background: #ffffff;
  color: var(--studio-text);
}

.studio-pro .studio-template-card:hover,
.studio-pro .catalog-card:hover {
  border-color: #8fb0df;
  box-shadow: 0 10px 20px rgba(16, 35, 63, 0.08);
}

.studio-pro .studio-template-card.is-active,
.studio-pro .catalog-card.is-active {
  border-color: var(--studio-accent);
  box-shadow: 0 12px 22px rgba(31, 102, 209, 0.18);
}

.studio-pro .catalog-grid {
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 0.65rem;
  max-height: 36vh;
  overflow: auto;
  padding-right: 0.2rem;
}

.studio-pro .catalog-card img {
  height: 96px;
}

.studio-pro .catalog-tag {
  border: 1px solid #cddbee;
  color: #3d5573;
  background: #f5f9ff;
}

.studio-pro .studio-group-catalog {
  margin-top: 1rem;
}

.studio-pro .btn.btn-ghost {
  border-color: #b8cce7;
  color: #133968;
  background: #f7fbff;
}

.studio-pro .btn.btn-primary {
  border-color: #1f66d1;
  background: #1f66d1;
}

@media (max-width: 1320px) {
  .studio-shell-pro {
    grid-template-columns: 300px minmax(0, 1fr);
    grid-template-areas:
      "controls canvas"
      "controls library";
  }

  .studio-shell-pro .studio-panel-controls { grid-area: controls; }
  .studio-shell-pro .studio-canvas { grid-area: canvas; }
  .studio-shell-pro .studio-panel-right {
    grid-area: library;
    position: static;
  }

  .studio-pro .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }
}




/* Futuristic mobile nav */
.nav-toggle {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 0, 28, 0.55);
  box-shadow: 0 10px 30px rgba(200, 0, 28, 0.14);
}

.nav-toggle:active {
  transform: translateY(0);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(200, 0, 28, 0.8);
  outline-offset: 2px;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease, background 160ms ease;
}

.site-header.is-nav-open .nav-toggle {
  background: rgba(200, 0, 28, 0.12);
  border-color: rgba(200, 0, 28, 0.55);
  box-shadow: 0 0 0 1px rgba(200, 0, 28, 0.12), 0 18px 50px rgba(0, 0, 0, 0.45);
}

.site-header.is-nav-open .nav-toggle-bars {
  background: transparent;
}

.site-header.is-nav-open .nav-toggle-bars::before {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 760px) {
  .nav-toggle {
    color: var(--primary);
    background: rgba(200, 0, 28, 0.08);
    border-color: rgba(200, 0, 28, 0.28);
  }

  .nav-backdrop {
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(6px);
  }

  .site-nav {
    width: min(90vw, 380px);
    padding: calc(86px + env(safe-area-inset-top, 0px)) 14px calc(18px + env(safe-area-inset-bottom, 0px));
    gap: 0.4rem;
    background:
      radial-gradient(800px 480px at 100% 0%, rgba(200, 0, 28, 0.22) 0%, rgba(200, 0, 28, 0) 55%),
      linear-gradient(180deg, rgba(10, 12, 18, 0.94), rgba(9, 10, 12, 0.98));
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.55);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
    overscroll-behavior: contain;
  }

  .site-nav::before {
    content: "Menu";
    display: block;
    margin: 0 0 0.35rem;
    padding: 0.25rem 0.6rem;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
  }

  .site-nav a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    border: 1px solid transparent;
    background: transparent;
    opacity: 0.95;
    letter-spacing: 0.01em;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, opacity 160ms ease;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateX(-2px);
    opacity: 1;
  }

  .site-nav a:active {
    transform: translateX(0);
  }

  .site-nav a:focus-visible {
    outline: 2px solid rgba(200, 0, 28, 0.8);
    outline-offset: 2px;
    opacity: 1;
  }

  .site-nav a.active-link {
    background: linear-gradient(135deg, rgba(200, 0, 28, 0.22), rgba(200, 0, 28, 0.10));
    border-color: rgba(200, 0, 28, 0.45);
    box-shadow: inset 0 0 0 1px rgba(200, 0, 28, 0.18);
    text-decoration: none;
    opacity: 1;
  }

  .site-nav-group {
    width: 100%;
    display: grid;
    gap: 0.35rem;
    padding: 0.15rem 0;
  }

  .site-nav-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-nav-parent::after {
    margin-left: auto;
    opacity: 0.75;
    transform: translateY(1px);
  }

  .site-nav-dropdown {
    display: grid;
    gap: 0.25rem;
    padding: 0.3rem 0 0.1rem 0.85rem;
    border-left: 1px solid rgba(200, 0, 28, 0.3);
    margin-top: 0;
  }

  .site-nav-dropdown a {
    font-size: 0.92rem;
    padding: 0.7rem 0.75rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
  }

  .site-nav-dropdown a:hover {
    background: rgba(200, 0, 28, 0.14);
    border-color: rgba(200, 0, 28, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .nav-backdrop,
  .nav-toggle,
  .site-nav a,
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    transition: none !important;
  }
}

/* Premium image sections */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 24s ease-in-out infinite;
}

.hero-media-layer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-media-layer--one {
  opacity: 1;
  animation-delay: 0s;
}

.hero-media-layer--two {
  animation-delay: 8s;
}

.hero-media-layer--three {
  animation-delay: 16s;
}

@keyframes heroFade {
  0%,
  28% {
    opacity: 1;
  }
  33%,
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 9, 14, 0.86), rgba(7, 9, 14, 0.55) 55%, rgba(7, 9, 14, 0.78)),
    radial-gradient(1000px 600px at 82% 10%, rgba(200, 0, 28, 0.32), transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: min(760px, 88vh);
  align-items: center;
}

.service-card--media {
  overflow: hidden;
  padding: 0;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, border-color 260ms ease;
  display: grid;
  grid-template-rows: auto 1fr;
}

.service-card--media:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 209, 102, 0.48);
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
  filter: saturate(1.06) contrast(1.06);
  transition: transform 600ms ease;
}

.service-card--media:hover .service-card-image {
  transform: scale(1.06);
}

.service-card-body {
  padding: 1.1rem;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.65rem;
}

.service-card-body h3 {
  margin: 0;
  font-size: 1.08rem;
}

.service-card-body p {
  margin: 0;
}

.service-card-body .service-list {
  margin: 0.45rem 0 0.2rem;
}

.service-card-body .btn {
  width: fit-content;
}


.service-card-title {
  margin: 0;
}

.service-title-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(200, 0, 28, 0.22);
  border: 1px solid rgba(200, 0, 28, 0.28);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.service-title-marquee__track {
  display: flex;
  width: max-content;
  gap: 2.2rem;
  padding: 0.55rem 0.85rem;
  animation: marquee 14s linear infinite;
  will-change: transform;
}

.service-title-marquee__text {
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.86rem;
  line-height: 1;
  opacity: 0.92;
}

.service-card--media:hover .service-title-marquee__track {
  animation-play-state: paused;
}

.service-card--media .image-container {
  position: relative;
  background: radial-gradient(800px 420px at 80% 20%, rgba(255, 209, 102, 0.10), transparent 55%), #0a0a0a;
}

.service-card--media .image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0) 40%, rgba(7, 9, 14, 0.38) 100%);
  pointer-events: none;
}

.portfolio-link {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.portfolio-card img {
  transition: transform 600ms ease;
}

.portfolio-card:hover img {
  transform: scale(1.07);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 0.35rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.08), rgba(7, 9, 14, 0.88));
  opacity: 0;
  transition: opacity 260ms ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  margin: 0;
  font-size: 1.1rem;
}

.portfolio-overlay p {
  margin: 0;
  color: rgba(234, 248, 255, 0.82);
  font-size: 0.92rem;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.shop-product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, border-color 260ms ease;
}

.shop-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 209, 102, 0.48);
}

.shop-product-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 600ms ease;
}

.shop-product-card:hover img {
  transform: scale(1.06);
}

.shop-product-body {
  padding: 0.95rem 1rem 1.05rem;
  display: grid;
  gap: 0.6rem;
}

.shop-product-body h3 {
  margin: 0;
  font-size: 1.05rem;
}

.shop-product-body p {
  margin: 0;
  color: var(--muted);
}

.shop-product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 102, 0.45);
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: var(--text);
  background: rgba(200, 0, 28, 0.22);
  width: fit-content;
}

@media (max-width: 1024px) {
  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shop-product-grid {
    grid-template-columns: 1fr;
  }
}


.image-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  overflow: hidden;
}

.image-container--square {
  aspect-ratio: 4 / 3;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.shop-product-card .image-container,
.service-card--media .image-container,
.home-safety-card .image-container {
  border-bottom: 1px solid var(--line);
}


.portfolio-card .image-container {
  aspect-ratio: 4 / 3;
}



/* Mobile polish */
@media (max-width: 760px) {
  .shop-controls {
    gap: 0.85rem;
  }

  .shop-filter-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    gap: 0.55rem;
  }

  .shop-filter-buttons button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .shop-search-wrap input {
    width: 100%;
    min-width: 0;
  }

  .service-card--media .image-container {
    max-height: 220px;
  }

  .portfolio-grid--dense .portfolio-card .image-container {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.6rem 0;
  }

  h1 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .lead {
    font-size: 1.02rem;
  }

  .service-card--media .image-container {
    max-height: 200px;
  }
}


