:root {
  color-scheme: light;
  --surface: #f6f7f9;
  --ink: #111827;
  --red: #d71920;
  --gold: #f5b21b;
  --green: #0f8b4c;
  --cyan: #05bce8;
  --magenta: #ff2d8b;
  --yellow: #ffd21f;
  --night: #101828;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
}

.dark {
  color-scheme: dark;
  --surface: #020617;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.dark body,
.dark .dark\:text-white {
  color: #f8fafc;
}

.min-h-screen { min-height: 100vh; }
.sticky { position: sticky; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.w-12 { width: 3rem; }
.min-w-fit { min-width: fit-content; }
.min-w-44 { min-width: 11rem; }
.min-w-\[680px\] { min-width: 680px; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.-mt-1 { margin-top: -.25rem; }
.p-2 { padding: .5rem; }
.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-y-1 > * + * { margin-top: .25rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.rounded { border-radius: .25rem; }
.rounded-md { border-radius: .375rem; }
.border { border: 1px solid var(--slate-200); }
.border-2 { border-width: 2px; border-style: solid; }
.border-dashed { border-style: dashed; }
.border-b { border-bottom: 1px solid var(--slate-200); }
.border-t { border-top: 1px solid var(--slate-200); }
.border-r { border-right: 1px solid var(--slate-200); }
.border-black\/5 { border-color: rgba(0, 0, 0, .05); }
.border-slate-50 { border-color: var(--slate-50); }
.border-slate-100 { border-color: var(--slate-100); }
.border-slate-200 { border-color: var(--slate-200); }
.border-slate-300 { border-color: var(--slate-300); }
.bg-white { background: #fff; }
.bg-white\/95 { background: rgba(255, 255, 255, .95); }
.bg-slate-50 { background: var(--slate-50); }
.bg-slate-100 { background: var(--slate-100); }
.bg-red-50 { background: #fef2f2; }
.bg-green-50 { background: #f0fdf4; }
.bg-ink { background: var(--ink); }
.bg-brand-red { background: var(--red); }
.bg-brand-gold { background: var(--gold); }
.bg-brand-green { background: var(--green); }
.bg-brand-cyan { background: var(--cyan); }
.bg-brand-magenta { background: var(--magenta); }
.bg-brand-yellow { background: var(--yellow); }
.bg-brand-night { background: var(--night); }
.text-white { color: #fff; }
.text-white\/60 { color: rgba(255, 255, 255, .6); }
.text-white\/75 { color: rgba(255, 255, 255, .75); }
.text-white\/90 { color: rgba(255, 255, 255, .9); }
.text-ink { color: var(--ink); }
.text-brand-red { color: var(--red); }
.text-brand-green { color: var(--green); }
.text-brand-gold { color: var(--gold); }
.text-brand-cyan { color: var(--cyan); }
.text-brand-magenta { color: var(--magenta); }
.text-brand-yellow { color: var(--yellow); }
.text-slate-200 { color: var(--slate-200); }
.text-slate-300 { color: var(--slate-300); }
.text-slate-400 { color: var(--slate-400); }
.text-slate-500 { color: var(--slate-500); }
.text-slate-600 { color: var(--slate-600); }
.text-slate-700 { color: var(--slate-700); }
.text-amber-500 { color: #f59e0b; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.leading-6 { line-height: 1.5rem; }
.leading-tight { line-height: 1.1; }
.tracking-normal { letter-spacing: 0; }
.line-through { text-decoration: line-through; }
.shadow-sm { box-shadow: 0 1px 3px rgba(15, 23, 42, .08); }
.shadow-premium { box-shadow: 0 18px 48px rgba(16, 24, 40, .10); }
.ring-1 { box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 1px 3px rgba(15, 23, 42, .08); }
.ring-black\/5 { box-shadow: 0 0 0 1px rgba(0, 0, 0, .05); }
.outline-none { outline: none; }
.backdrop-blur { backdrop-filter: blur(12px); }
.object-cover { object-fit: cover; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.min-h-\[360px\] { min-height: 360px; }
.min-h-12 { min-height: 3rem; }
.min-h-32 { min-height: 8rem; }
.transition { transition: all .2s ease; }
.duration-300 { transition-duration: .3s; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.hover\:bg-slate-100:hover { background: var(--slate-100); }
.hover\:bg-red-50:hover { background: #fef2f2; }
.hover\:bg-brand-red:hover { background: var(--red); }
.hover\:bg-brand-magenta:hover { background: var(--magenta); }
.hover\:text-brand-red:hover { color: var(--red); }
.hover\:text-brand-magenta:hover { color: var(--magenta); }
.hover\:shadow-premium:hover { box-shadow: 0 18px 48px rgba(16, 24, 40, .10); }
.fixed-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
}
.whatsapp-logo {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: .64rem;
  font-weight: 900;
  line-height: 1;
}
.bottom-4 { bottom: 1rem; }
.left-4 { left: 1rem; }
.h-fit { height: fit-content; }
.w-fit { width: fit-content; }
.inline-block { display: inline-block; }
.list-disc { list-style-type: disc; }
.pl-5 { padding-left: 1.25rem; }
.leading-8 { line-height: 2rem; }
.md\:col-span-2 { grid-column: auto; }
.product-hero-image { height: min(560px, 68vh); }
.checkout-thumb {
  width: 112px;
  height: 96px;
  border-radius: .375rem;
}
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.logo-lockup {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.logo-mark {
  width: 54px;
  height: 42px;
  border-radius: .375rem;
  object-fit: cover;
  object-position: left center;
  background: #000;
}
.hero-logo {
  width: min(320px, 72vw);
  height: auto;
  margin-bottom: 1rem;
  border-radius: .5rem;
  box-shadow: 0 18px 48px rgba(0,0,0,.35);
}
.studio-logo {
  width: min(280px, 80vw);
  height: auto;
  margin-bottom: 1.25rem;
  border-radius: .5rem;
  background: #000;
}
.dashboard-logo {
  width: 120px;
  height: auto;
  margin-bottom: .75rem;
  border-radius: .375rem;
  background: #000;
}
.print-service-card {
  border-top: 4px solid var(--cyan);
}
.print-service-card:nth-child(2) { border-top-color: var(--yellow); }
.print-service-card:nth-child(3) { border-top-color: var(--magenta); }
.print-service-card:nth-child(4) { border-top-color: var(--cyan); }
.print-service-card:nth-child(5) { border-top-color: var(--yellow); }
.workflow-card {
  background: linear-gradient(180deg, rgba(5,188,232,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(5,188,232,.18);
}
.machine-band {
  background:
    radial-gradient(circle at 85% 20%, rgba(255,45,139,.35), transparent 26%),
    radial-gradient(circle at 15% 80%, rgba(5,188,232,.30), transparent 28%),
    #050505;
}
.interior-showcase {
  background:
    linear-gradient(135deg, rgba(0,0,0,.88), rgba(0,0,0,.70)),
    url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}
.service-hero {
  min-height: 430px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.service-list-item {
  border-left: 4px solid var(--cyan);
  padding: .75rem 1rem;
  background: var(--slate-50);
  border-radius: .375rem;
}
.gallery-card {
  aspect-ratio: 4 / 3;
  min-height: 220px;
}
.gallery-overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.82));
}
.align-top {
  vertical-align: top;
}
.dark .service-list-item {
  background: var(--slate-950);
}
.quote-panel {
  border: 1px solid rgba(255, 45, 139, .14);
  box-shadow: 0 18px 48px rgba(16, 24, 40, .08);
}
.package-card {
  border-top: 5px solid var(--cyan);
}
.package-magenta { border-top-color: var(--magenta); }
.package-yellow { border-top-color: var(--yellow); }
.package-cyan { border-top-color: var(--cyan); }
.hero-print-bg {
  background-image:
    radial-gradient(circle at 82% 18%, rgba(255,45,139,.45), transparent 28%),
    radial-gradient(circle at 75% 82%, rgba(5,188,232,.45), transparent 32%),
    radial-gradient(circle at 35% 75%, rgba(255,210,31,.40), transparent 28%),
    url("https://images.unsplash.com/photo-1581092334651-ddf26d9a09d0?auto=format&fit=crop&w=1600&q=80");
}
.bg-\[url\(\'https\:\/\/images\.unsplash\.com\/photo-1556742502-ec7c0e9f34b1\?auto\=format\&fit\=crop\&w\=1600\&q\=80\'\)\] {
  background-image: url("https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?auto=format&fit=crop&w=1600&q=80");
}
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-black\/80 { --tw-gradient-from: rgba(0,0,0,.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via, rgba(0,0,0,.45)), var(--tw-gradient-to, transparent); }
.via-black\/45 { --tw-gradient-via: rgba(0,0,0,.45); }
.to-transparent { --tw-gradient-to: transparent; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

select,
input,
textarea {
  color: inherit;
}

table {
  border-collapse: collapse;
}

th,
td {
  padding-left: .5rem;
  padding-right: .5rem;
}

.dark .dark\:bg-slate-950 { background: var(--slate-950); }
.dark .dark\:bg-slate-900 { background: var(--slate-900); }
.dark .dark\:bg-slate-800 { background: var(--slate-800); }
.dark .dark\:bg-brand-magenta { background: var(--magenta); }
.dark .dark\:bg-brand-night\/95 { background: rgba(16, 24, 40, .95); }
.dark .dark\:border-slate-800 { border-color: var(--slate-800); }
.dark .dark\:border-slate-700 { border-color: var(--slate-700); }
.dark .dark\:text-slate-200 { color: var(--slate-200); }
.dark .dark\:text-slate-300 { color: var(--slate-300); }
.dark .dark\:text-slate-400 { color: var(--slate-400); }
.dark .dark\:ring-white\/10 { box-shadow: 0 0 0 1px rgba(255, 255, 255, .1); }
.dark .dark\:hover\:bg-slate-800:hover { background: var(--slate-800); }

@media (min-width: 640px) {
  .sm\:inline { display: inline; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-\[240px_1fr_280px\] { grid-template-columns: 240px 1fr 280px; }
  .lg\:grid-cols-\[260px_1fr\] { grid-template-columns: 260px 1fr; }
  .lg\:grid-cols-\[1fr_420px\] { grid-template-columns: 1fr 420px; }
  .lg\:grid-cols-\[1fr_auto\] { grid-template-columns: 1fr auto; }
  .lg\:grid-cols-\[1fr_380px\] { grid-template-columns: 1fr 380px; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:items-center { align-items: center; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .xl\:grid-cols-\[1fr_360px\] { grid-template-columns: 1fr 360px; }
}
