/*
Theme Name: JM Art Creative Studio
Theme URI: https://jm-art.eu/
Author: JM Art + Codex
Description: Dwujęzyczny motyw WordPress dla JM Art Creative Studio PL/DE.
Version: 1.0.0
Text Domain: jm-art
*/
:root {
  --ink: #f8f4ea;
  --paper: #07111d;
  --charcoal: #101116;
  --graphite: #20232b;
  --night: #07111d;
  --teal: #0af2e3;
  --rose: #b80165;
  --sapphire: #18a7e0;
  --champagne: #dfe7ef;
  --clay: #7d5cff;
  --mist: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.18);
  --dark-line: rgba(16, 17, 22, 0.14);
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  line-height: 1.5;
}

body::selection {
  background: var(--champagne);
  color: var(--charcoal);
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 17, 29, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid transparent;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 17, 29, 0.72), rgba(7, 17, 29, 0.72)) padding-box,
    linear-gradient(135deg, rgba(10, 242, 227, 0.8), rgba(223, 231, 239, 0.42), rgba(184, 1, 101, 0.82)) border-box;
  border-radius: var(--radius);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 18px rgba(10, 242, 227, 0.14),
    0 10px 30px rgba(0, 0, 0, 0.24);
  color: transparent;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 13px;
}

.brand-text span {
  color: rgba(248, 244, 234, 0.66);
  font-size: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(248, 244, 234, 0.8);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--rose), var(--champagne));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.lang-switch a {
  border-radius: 999px;
  padding: 6px 9px;
  color: rgba(248, 244, 234, 0.76);
  font-size: 12px;
  line-height: 1;
}

.lang-switch a[aria-current="page"] {
  background: var(--ink);
  color: var(--charcoal);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  margin: auto;
}

.hero {
  position: relative;
  min-height: 96svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.94;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(7, 17, 29, 0.99) 0%, rgba(7, 17, 29, 0.86) 34%, rgba(7, 17, 29, 0.12) 78%),
    linear-gradient(180deg, rgba(7, 17, 29, 0.12) 0%, var(--night) 100%);
  background-position: center;
  background-size: cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 34%;
  background: linear-gradient(180deg, transparent, var(--night));
  content: "";
}

.hero-inner {
  display: grid;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  margin: 0 auto;
  padding: 124px 0 96px;
}

.hero-copy {
  width: min(760px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: rgba(248, 244, 234, 0.76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--rose), var(--champagne));
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  font-size: clamp(48px, 8vw, 98px);
}

.accent-line {
  display: block;
  margin-top: 0.08em;
  background: linear-gradient(92deg, var(--teal), #dfe7ef 42%, var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.52em;
  font-style: italic;
  font-weight: 700;
  line-height: 1.12;
  text-shadow: 0 0 34px rgba(10, 242, 227, 0.18);
}

.gradient-word {
  background: linear-gradient(92deg, var(--teal), #dfe7ef 43%, var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 34px rgba(10, 242, 227, 0.18);
}

h2 {
  font-size: clamp(34px, 5vw, 66px);
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(248, 244, 234, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 12px;
  background:
    linear-gradient(rgba(7, 17, 29, 0.72), rgba(7, 17, 29, 0.72)) padding-box,
    linear-gradient(120deg, rgba(10, 242, 227, 0.72), rgba(184, 1, 101, 0.72)) border-box;
  color: rgba(248, 244, 234, 0.78);
  font-size: 13px;
  box-shadow: 0 10px 28px rgba(10, 242, 227, 0.08);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  gap: 18px;
  min-height: 62px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  padding: 8px 56px 8px 12px;
  background:
    radial-gradient(circle at 18% 50%, rgba(10, 242, 227, 0.18), transparent 34%) padding-box,
    radial-gradient(circle at 90% 50%, rgba(184, 1, 101, 0.24), transparent 36%) padding-box,
    linear-gradient(100deg, rgba(5, 15, 29, 0.96), rgba(14, 22, 39, 0.92) 52%, rgba(44, 8, 43, 0.92)) padding-box,
    linear-gradient(100deg, var(--teal), rgba(223, 231, 239, 0.82) 48%, var(--rose)) border-box;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 0 18px rgba(248, 244, 234, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -18px 34px rgba(6, 16, 27, 0.35),
    0 0 0 1px rgba(10, 242, 227, 0.12),
    0 0 28px rgba(10, 242, 227, 0.2),
    0 0 32px rgba(184, 1, 101, 0.22),
    0 18px 54px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button::before {
  position: absolute;
  right: 26px;
  top: 50%;
  z-index: 1;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.92);
  content: "";
  font-size: 18px;
  line-height: 1;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.92),
    0 0 18px rgba(184, 1, 101, 0.85);
  transform: translateY(-50%);
}

.button::after {
  position: absolute;
  top: -70%;
  left: -30%;
  z-index: 0;
  width: 62%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  content: "";
  transform: rotate(22deg) translateX(-150%);
  transition: transform 480ms ease;
}

.button-symbol {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.72), transparent 30%) padding-box,
    linear-gradient(135deg, var(--teal), rgba(223, 231, 239, 0.68), var(--rose)) border-box,
    linear-gradient(135deg, rgba(10, 242, 227, 0.42), rgba(184, 1, 101, 0.32));
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.14),
    0 0 20px rgba(10, 242, 227, 0.36),
    0 0 24px rgba(184, 1, 101, 0.26);
}

.button-symbol::after {
  position: absolute;
  right: -18px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(223, 231, 239, 0.62), transparent);
  content: "";
}

.button-symbol svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  filter: drop-shadow(0 0 8px rgba(10, 242, 227, 0.72));
}

.button-copy {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    0 0 0 1px rgba(10, 242, 227, 0.28),
    0 18px 60px rgba(10, 242, 227, 0.28),
    0 18px 70px rgba(184, 1, 101, 0.26);
}

.button:hover::after,
.button:focus-visible::after {
  transform: rotate(22deg) translateX(320%);
}

.button.primary {
  color: var(--ink);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 -18px 34px rgba(6, 16, 27, 0.35),
    0 0 30px rgba(10, 242, 227, 0.28),
    0 0 42px rgba(184, 1, 101, 0.32),
    0 18px 62px rgba(0, 0, 0, 0.34);
}

.button.secondary {
  background:
    radial-gradient(circle at 18% 50%, rgba(10, 242, 227, 0.13), transparent 34%) padding-box,
    radial-gradient(circle at 90% 50%, rgba(184, 1, 101, 0.18), transparent 36%) padding-box,
    linear-gradient(100deg, rgba(5, 15, 29, 0.94), rgba(14, 22, 39, 0.9) 52%, rgba(36, 14, 43, 0.88)) padding-box,
    linear-gradient(100deg, rgba(10, 242, 227, 0.82), rgba(223, 231, 239, 0.5), rgba(184, 1, 101, 0.82)) border-box;
  color: var(--ink);
}

.hero-scroll {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 36px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.section {
  padding: 92px 0;
}

.section.alt {
  background:
    radial-gradient(circle at 16% 22%, rgba(10, 242, 227, 0.16), transparent 26%),
    radial-gradient(circle at 86% 24%, rgba(184, 1, 101, 0.12), transparent 30%),
    linear-gradient(135deg, #07111d 0%, #0a1322 58%, #090817 100%);
  color: var(--ink);
}

.section.soft {
  background:
    radial-gradient(circle at 14% 28%, rgba(10, 242, 227, 0.14), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(184, 1, 101, 0.13), transparent 32%),
    linear-gradient(135deg, #07111d, #101827 72%, #0b0712);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head p {
  margin: 0;
  color: rgba(248, 244, 234, 0.7);
  font-size: 18px;
}

.alt .section-head p {
  color: rgba(248, 244, 234, 0.7);
}

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

.proof {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 22px;
  background:
    radial-gradient(circle at 18% 14%, rgba(10, 242, 227, 0.17), transparent 36%),
    radial-gradient(circle at 92% 86%, rgba(184, 1, 101, 0.17), transparent 42%),
    linear-gradient(135deg, rgba(13, 42, 51, 0.42), rgba(18, 24, 39, 0.82) 54%, rgba(39, 13, 44, 0.42));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.16);
}

.proof::after {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.09), transparent 40%, rgba(184, 1, 101, 0.06));
  content: "";
  pointer-events: none;
}

.proof-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid transparent;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.74), transparent 30%) padding-box,
    linear-gradient(135deg, rgba(10, 242, 227, 0.88), rgba(223, 231, 239, 0.7), rgba(184, 1, 101, 0.88)) border-box,
    linear-gradient(135deg, rgba(10, 242, 227, 0.34), rgba(184, 1, 101, 0.32));
  color: #f8f4ea;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 0 28px rgba(10, 242, 227, 0.24),
    0 0 28px rgba(184, 1, 101, 0.2);
}

.proof-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.proof strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.proof > span:last-child {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: rgba(248, 244, 234, 0.68);
  font-size: 14px;
}

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

.service-card,
.case-card,
.package-card,
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 8%, rgba(10, 242, 227, 0.1), transparent 34%),
    radial-gradient(circle at 92% 92%, rgba(184, 1, 101, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(17, 38, 52, 0.64), rgba(18, 24, 39, 0.82) 58%, rgba(42, 15, 48, 0.48));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.service-card {
  min-height: 520px;
  overflow: hidden;
  padding: 0;
}

.service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.card-kicker {
  display: block;
  margin: 22px 24px 0;
  color: var(--champagne);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card h3,
.case-card h3,
.package-card h3 {
  margin: 18px 24px 0;
}

.package-card h3 {
  margin-right: 0;
  margin-left: 0;
}

.service-card p,
.case-card p,
.package-card p {
  margin-right: 24px;
  margin-left: 24px;
  color: rgba(248, 244, 234, 0.72);
}

.package-card p {
  margin-right: 0;
  margin-left: 0;
}

.service-card ul,
.package-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 24px 26px;
  padding: 0;
  list-style: none;
}

.package-card ul {
  margin-right: 0;
  margin-left: 0;
}

.service-card li,
.package-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(248, 244, 234, 0.76);
}

.service-card li::before,
.package-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

.lab {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
}

.lab-panel {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(7, 17, 29, 0.74), rgba(7, 17, 29, 0.22)),
    url("ai-content-lab-graphic.png?v=20260607f") center / cover;
  box-shadow: var(--shadow);
}

.lab-panel::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(10, 242, 227, 0.13), transparent 26%),
    radial-gradient(circle at 18% 90%, rgba(184, 1, 101, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(7, 17, 29, 0.84), rgba(7, 17, 29, 0.18)),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(255, 255, 255, 0.035) 31px);
  content: "";
}

.signal {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(280px, 76%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(10, 242, 227, 0.09), rgba(184, 1, 101, 0.08)),
    rgba(7, 17, 29, 0.74);
  backdrop-filter: blur(16px);
}

.signal strong {
  color: var(--ink);
}

.signal span {
  color: rgba(248, 244, 234, 0.68);
  font-size: 13px;
}

.signal.one {
  top: 34px;
  left: 34px;
}

.signal.two {
  right: 34px;
  bottom: 34px;
}

.signal.three {
  top: 52%;
  left: 28%;
  width: min(230px, 62%);
}

.alt h2,
.alt h3 {
  color: var(--ink);
}

.alt .eyebrow {
  color: rgba(248, 244, 234, 0.68);
}

.alt .eyebrow::before {
  background: linear-gradient(90deg, var(--clay), var(--rose), var(--teal));
}

.alt .button.secondary {
  color: var(--ink);
}

.alt-copy p {
  color: rgba(248, 244, 234, 0.72);
  font-size: 18px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.showcase-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(110deg, rgba(10, 242, 227, 0.1), transparent 34%),
    linear-gradient(260deg, rgba(184, 1, 101, 0.16), transparent 44%),
    rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.showcase-copy p {
  color: rgba(248, 244, 234, 0.72);
}

.slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 34%);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding-bottom: 10px;
}

.slider img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.case-card {
  overflow: hidden;
}

.case-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.case-body {
  padding: 24px;
}

.case-body .card-kicker,
.case-body h3,
.case-body p {
  margin-right: 0;
  margin-left: 0;
}

.case-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 34px 8px 14px;
  background:
    radial-gradient(circle at 16% 50%, rgba(10, 242, 227, 0.13), transparent 34%) padding-box,
    radial-gradient(circle at 88% 50%, rgba(184, 1, 101, 0.18), transparent 38%) padding-box,
    linear-gradient(100deg, rgba(5, 15, 29, 0.92), rgba(15, 23, 39, 0.9), rgba(37, 12, 40, 0.9)) padding-box,
    linear-gradient(100deg, rgba(10, 242, 227, 0.78), rgba(223, 231, 239, 0.46), rgba(184, 1, 101, 0.82)) border-box;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 22px rgba(10, 242, 227, 0.12),
    0 0 22px rgba(184, 1, 101, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.case-link::after {
  position: absolute;
  right: 14px;
  top: 50%;
  content: "";
  color: var(--ink);
  font-size: 12px;
  text-shadow: 0 0 12px rgba(184, 1, 101, 0.8);
  transform: translateY(-50%);
}

.case-link:hover,
.case-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(10, 242, 227, 0.18), 0 16px 48px rgba(184, 1, 101, 0.15);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.step {
  position: relative;
  padding: 28px 22px 0 0;
  border-right: 1px solid var(--line);
}

.step:not(:last-child)::after {
  display: none;
  content: none;
}

.step:last-child {
  border-right: 0;
}

.step span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.72), transparent 30%) padding-box,
    linear-gradient(135deg, rgba(10, 242, 227, 0.9), rgba(223, 231, 239, 0.72), rgba(184, 1, 101, 0.9)) border-box,
    linear-gradient(145deg, #101c31, #20283d 52%, #370b2d);
  color: var(--ink);
  font-weight: 800;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.24),
    0 0 26px rgba(10, 242, 227, 0.36),
    0 0 34px rgba(184, 1, 101, 0.32);
}

.step span::after {
  position: absolute;
  top: 3px;
  right: 4px;
  display: none;
  content: none;
  color: var(--ink);
  font-size: 13px;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.9),
    0 0 16px rgba(184, 1, 101, 0.85);
}

.step h3 {
  margin-top: 20px;
}

.step p {
  color: rgba(248, 244, 234, 0.68);
}

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

.package-card {
  padding: 28px;
}

.package-card.featured {
  border-color: rgba(10, 242, 227, 0.38);
  background:
    linear-gradient(145deg, rgba(10, 242, 227, 0.14), rgba(184, 1, 101, 0.12)),
    rgba(255, 255, 255, 0.06);
}

.price {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

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

.faq-item {
  min-height: 196px;
  padding: 18px;
  background:
    radial-gradient(circle at 10% 8%, rgba(10, 242, 227, 0.13), transparent 32%),
    radial-gradient(circle at 92% 92%, rgba(184, 1, 101, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(15, 44, 52, 0.5), rgba(19, 25, 39, 0.76) 56%, rgba(42, 15, 48, 0.5));
}

.faq-item h3 {
  font-size: 17px;
  line-height: 1.18;
}

.faq-item p {
  color: rgba(248, 244, 234, 0.68);
  font-size: 14px;
  line-height: 1.46;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-line {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 58px;
  padding: 7px 46px 7px 7px;
  background:
    radial-gradient(circle at 18% 50%, rgba(10, 242, 227, 0.16), transparent 34%) padding-box,
    radial-gradient(circle at 90% 50%, rgba(184, 1, 101, 0.22), transparent 38%) padding-box,
    linear-gradient(100deg, rgba(5, 15, 29, 0.94), rgba(14, 22, 39, 0.9) 52%, rgba(42, 14, 42, 0.9)) padding-box,
    linear-gradient(120deg, rgba(10, 242, 227, 0.8), rgba(223, 231, 239, 0.48), rgba(184, 1, 101, 0.82)) border-box;
  color: var(--ink);
  font-weight: 800;
  text-shadow: 0 0 16px rgba(248, 244, 234, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 24px rgba(10, 242, 227, 0.16),
    0 0 28px rgba(184, 1, 101, 0.18);
  transition: color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-line::after {
  position: absolute;
  right: 20px;
  top: 50%;
  content: "";
  font-size: 14px;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.92),
    0 0 18px rgba(184, 1, 101, 0.85);
  transform: translateY(-50%);
}

.contact-line span {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.78), transparent 32%) padding-box,
    linear-gradient(135deg, var(--teal), rgba(223, 231, 239, 0.68), var(--rose)) border-box,
    linear-gradient(135deg, #23324a, #4d5270 42%, var(--rose));
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.14),
    0 0 20px rgba(10, 242, 227, 0.32),
    0 0 24px rgba(184, 1, 101, 0.24);
}

.contact-line span::after {
  position: absolute;
  right: -16px;
  top: 7px;
  bottom: 7px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(223, 231, 239, 0.58), transparent);
  content: "";
}

.contact-line:hover,
.contact-line:focus-visible {
  color: var(--ink);
  transform: translateX(3px);
  box-shadow:
    0 0 0 1px rgba(10, 242, 227, 0.22),
    0 18px 48px rgba(10, 242, 227, 0.2),
    0 18px 52px rgba(184, 1, 101, 0.2);
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  background:
    radial-gradient(circle at 16% 14%, rgba(10, 242, 227, 0.1), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(184, 1, 101, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.052);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: rgba(248, 244, 234, 0.72);
  font-size: 13px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(7, 17, 29, 0.76);
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px 0;
  background:
    linear-gradient(90deg, rgba(10, 242, 227, 0.05), transparent 30%, rgba(184, 1, 101, 0.08)),
    #070b12;
  color: rgba(248, 244, 234, 0.62);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  gap: 20px;
  font-size: 14px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 18px 6px 6px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 34%) padding-box,
    linear-gradient(100deg, rgba(9, 20, 35, 0.9), rgba(20, 27, 45, 0.86), rgba(42, 14, 42, 0.9)) padding-box,
    linear-gradient(120deg, rgba(10, 242, 227, 0.82), rgba(223, 231, 239, 0.44), rgba(184, 1, 101, 0.82)) border-box;
  color: rgba(248, 244, 234, 0.76);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(10, 242, 227, 0.22), 0 16px 46px rgba(10, 242, 227, 0.2), 0 16px 52px rgba(184, 1, 101, 0.2);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.82), transparent 32%),
    linear-gradient(135deg, #26344e, #5d6480 42%, var(--rose));
  color: var(--ink);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.28),
    0 0 0 1px rgba(10, 242, 227, 0.42),
    0 0 22px rgba(10, 242, 227, 0.22),
    0 0 26px rgba(184, 1, 101, 0.2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.social-logo {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: currentColor;
}

.button::before,
.case-link::after,
.step span::after,
.contact-line::after,
.socials a::after {
  content: "";
  width: 18px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 32'%3E%3Cpath d='M20.4 2.8C14.3 3.9 8.6 7.9 5.2 13.8c-1.9 3.4-2.3 6.7-1 8.1 1.4 1.3 4.7.9 8.1-1 5.9-3.4 9.9-9.1 11-15.2.2-1.4-1.5-3.1-2.9-2.9Z' fill='none' stroke='%23f8f4ea' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 25.5c4.8-5.2 8.7-9.5 13.8-16.2M8.1 19.8l-2.6.2M11.6 16.3l-4.3.1M15 12.4l-4.7.1M17.9 8.7l-3.2.1' fill='none' stroke='%230af2e3' stroke-width='1.25' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
  filter:
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.55))
    drop-shadow(0 0 12px rgba(10, 242, 227, 0.55))
    drop-shadow(0 0 14px rgba(184, 1, 101, 0.42));
}

.button::before {
  right: 24px;
}

.case-link::after {
  width: 13px;
  height: 18px;
  right: 14px;
}

.step span::after {
  width: 14px;
  height: 19px;
  top: 2px;
  right: 2px;
}

.contact-line::after,
.socials a::after {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.socials a {
  position: relative;
  gap: 20px;
  min-height: 58px;
  padding: 7px 46px 7px 7px;
  background:
    radial-gradient(circle at 18% 50%, rgba(10, 242, 227, 0.16), transparent 34%) padding-box,
    radial-gradient(circle at 90% 50%, rgba(184, 1, 101, 0.24), transparent 38%) padding-box,
    linear-gradient(100deg, rgba(5, 15, 29, 0.94), rgba(14, 22, 39, 0.9) 52%, rgba(42, 14, 42, 0.92)) padding-box,
    linear-gradient(120deg, rgba(10, 242, 227, 0.82), rgba(223, 231, 239, 0.44), rgba(184, 1, 101, 0.82)) border-box;
  color: var(--ink);
  text-shadow: 0 0 16px rgba(248, 244, 234, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 24px rgba(10, 242, 227, 0.16),
    0 0 28px rgba(184, 1, 101, 0.18);
}

.social-icon {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.82), transparent 32%) padding-box,
    linear-gradient(135deg, var(--teal), rgba(223, 231, 239, 0.68), var(--rose)) border-box,
    linear-gradient(135deg, #26344e, #5d6480 42%, var(--rose));
}

.social-icon::after {
  position: absolute;
  right: -16px;
  top: 7px;
  bottom: 7px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(223, 231, 239, 0.58), transparent);
  content: "";
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms ease, filter 760ms ease;
}

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

.reveal.is-visible > * {
  animation: revealChild 720ms ease both;
}

.reveal.is-visible > *:nth-child(2) {
  animation-delay: 70ms;
}

.reveal.is-visible > *:nth-child(3) {
  animation-delay: 140ms;
}

.reveal.is-visible > *:nth-child(4) {
  animation-delay: 210ms;
}

.service-card.reveal.is-visible,
.case-card.reveal.is-visible,
.package-card.reveal.is-visible,
.faq-item.reveal.is-visible {
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

@keyframes revealChild {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .nav-links {
    position: absolute;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    padding: 10px;
    background: rgba(7, 17, 29, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 10px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .section-head,
  .lab,
  .contact {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .service-grid,
  .case-grid,
  .process,
  .package-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof:nth-child(2),
  .step:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .brand-text span {
    display: none;
  }

  .hero-inner,
  .wrap,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(7, 17, 29, 0.9) 0%, rgba(7, 17, 29, 0.76) 54%, rgba(7, 17, 29, 0.96) 100%);
    background-position: center right;
  }

  .hero-art {
    opacity: 0.78;
    object-position: center right;
  }

  .showcase-strip {
    grid-template-columns: 1fr;
  }

  .slider {
    grid-auto-columns: minmax(190px, 72%);
  }

  .hero-inner {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .lead {
    font-size: 17px;
  }

  .section {
    padding: 68px 0;
  }

  .proof-grid,
  .service-grid,
  .case-grid,
  .process,
  .package-grid,
  .faq-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .proof,
  .step {
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .proof {
    border-bottom-color: var(--line);
  }

  .step {
    border-bottom-color: var(--line);
    padding-right: 0;
    padding-bottom: 26px;
  }

  .proof:last-child,
  .step:last-child {
    border-bottom: 0;
  }

  .lab-panel {
    min-height: 520px;
  }

  .signal.one,
  .signal.two,
  .signal.three {
    right: 18px;
    left: 18px;
    width: auto;
  }

  .signal.one {
    top: 20px;
  }

  .signal.three {
    top: 198px;
  }

  .signal.two {
    bottom: 20px;
  }

  .hero-scroll {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.form-status {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(10, 242, 227, 0.38);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10, 242, 227, 0.14), rgba(184, 1, 101, 0.12));
  color: var(--ink);
  font-weight: 800;
}

.form-status.is-error {
  border-color: rgba(184, 1, 101, 0.48);
}

.whatsapp-line span {
  font-size: 0.68rem;
}
.showreel-section {
  position: relative;
  padding: 18px 0 68px;
  background:
    radial-gradient(circle at 14% 18%, rgba(10, 242, 227, 0.12), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(184, 1, 101, 0.16), transparent 34%),
    linear-gradient(180deg, #07111d 0%, #091421 56%, #07111d 100%);
}

.showreel-wrap {
  position: relative;
  overflow: hidden;
  width: min(1040px, calc(100% - 40px));
  padding: clamp(16px, 2.4vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(10, 242, 227, 0.09), rgba(18, 24, 39, 0.84) 48%, rgba(184, 1, 101, 0.12)),
    rgba(7, 17, 29, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.showreel-wrap::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 242, 227, 0.22), transparent 32%, rgba(184, 1, 101, 0.2)),
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.16), transparent 18%);
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

.showreel-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 16px;
}

.showreel-copy h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 0.98;
}

.showreel-copy p:last-child {
  max-width: 690px;
  margin: 0;
  color: rgba(248, 244, 234, 0.72);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.65;
}

.showreel-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 430px;
  border: 1px solid rgba(10, 242, 227, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 14% 18%, rgba(10, 242, 227, 0.18), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(184, 1, 101, 0.2), transparent 30%),
    #050b15;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 36px rgba(10, 242, 227, 0.12),
    0 28px 72px rgba(0, 0, 0, 0.42);
}

.showreel-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #030711;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 720px) {
  .showreel-section {
    padding: 18px 0 64px;
  }

  .showreel-wrap {
    width: min(100% - 24px, 1040px);
    padding: 18px;
    border-radius: 18px;
  }

  .showreel-frame {
    aspect-ratio: 16 / 10;
    max-height: 46vh;
  }
}
