:root {
  --g-primary: #222222;
  --g-secondary: #ffffff;
  --g-text: #0c1713;
  --g-accent: #7769b4;
  --g-accent-dark: #5f519d;
  --g-accent-soft: #eeeafd;
  --g-surface: #fffffd;
  --g-lime: #b4fe32;
  --g-lime-soft: #e9ffc2;
  --g-muted: #65706c;
  --g-line: rgba(12, 23, 19, 0.12);
  --g-container: 1240px;
  --g-section-space: 104px;
  --g-radius: 28px;
  --g-bunny-size: 112px;
  --g-shadow-sm: 0 12px 30px rgba(28, 23, 45, 0.08);
  --g-shadow-lg: 0 30px 80px rgba(34, 26, 66, 0.15);
  --g-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--g-surface);
  color: var(--g-text);
  font-family: var(--g-font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--g-accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--g-lime);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.55em;
  color: var(--g-primary);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 { font-size: clamp(2.75rem, 6vw, 5.9rem); }
h2 { font-size: clamp(2.1rem, 4vw, 4.1rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -0.025em; }

p {
  margin: 0 0 1.25em;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: #fff;
  color: #111;
  font-weight: 700;
}

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

.grafela-section {
  position: relative;
  padding-block: var(--g-section-space);
}

.grafela-icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

.grafela-kicker,
.grafela-eyebrow {
  margin: 0 0 18px;
  color: var(--g-accent);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.grafela-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(119, 105, 180, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
  letter-spacing: 0.08em;
}

.grafela-eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g-lime);
  box-shadow: 0 0 0 5px rgba(180, 254, 50, 0.22);
}

.grafela-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 48px;
}

.grafela-section-heading h2 {
  max-width: 780px;
  margin: 0;
}

.grafela-section-heading > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: var(--g-muted);
  font-size: 1.05rem;
}

.grafela-section-heading.is-centered {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.grafela-section-heading.is-centered > p {
  margin: 18px auto 0;
}

.grafela-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.grafela-button:hover {
  transform: translateY(-3px);
}

.grafela-button .grafela-icon {
  transition: transform 0.25s ease;
}

.grafela-button:hover .grafela-icon {
  transform: translateX(4px);
}

.grafela-button-primary {
  background: var(--g-accent);
  box-shadow: 0 16px 32px rgba(119, 105, 180, 0.25);
  color: #fff;
}

.grafela-button-primary:hover {
  background: var(--g-accent-dark);
  color: #fff;
  box-shadow: 0 20px 40px rgba(119, 105, 180, 0.34);
}

.grafela-button-secondary {
  border-color: var(--g-line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--g-text);
}

.grafela-button-secondary:hover {
  border-color: rgba(119, 105, 180, 0.35);
  background: #fff;
  color: var(--g-accent);
  box-shadow: var(--g-shadow-sm);
}

.grafela-button-lime {
  background: var(--g-lime);
  color: var(--g-primary);
  box-shadow: 0 16px 30px rgba(117, 172, 23, 0.2);
}

.grafela-button-lime:hover {
  color: var(--g-primary);
  box-shadow: 0 20px 38px rgba(117, 172, 23, 0.28);
}

.grafela-text-link,
.grafela-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--g-accent);
  font-weight: 800;
  text-decoration: none;
}

.grafela-text-link .grafela-icon,
.grafela-card-link .grafela-icon {
  transition: transform 0.2s ease;
}

.grafela-text-link:hover .grafela-icon,
.grafela-card-link:hover .grafela-icon {
  transform: translateX(5px);
}

/* Pasek i nagłówek */
.grafela-announcement {
  position: relative;
  z-index: 100;
  background: var(--g-primary);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 650;
}

.grafela-announcement-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.grafela-announcement a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--g-lime);
  font-weight: 800;
  text-decoration: none;
}

.grafela-announcement .grafela-icon {
  width: 1em;
  height: 1em;
}

.grafela-header {
  position: relative;
  z-index: 90;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 253, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.grafela-has-sticky-header .grafela-header {
  position: sticky;
  top: 0;
}

.admin-bar.grafela-has-sticky-header .grafela-header {
  top: 32px;
}

.grafela-header.is-scrolled {
  border-color: var(--g-line);
  box-shadow: 0 10px 35px rgba(25, 20, 44, 0.08);
}

.grafela-header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 30px;
}

.grafela-brand {
  flex: 0 0 auto;
}

.custom-logo-link {
  display: block;
}

.custom-logo {
  width: auto;
  max-width: 210px;
  max-height: 58px;
}

.grafela-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--g-primary);
  text-decoration: none;
}

.grafela-wordmark-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transform: rotate(-7deg);
  border-radius: 12px 18px 13px 20px;
  background: var(--g-accent);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset -5px -6px 0 rgba(0, 0, 0, 0.08);
}

.grafela-wordmark strong,
.grafela-wordmark small {
  display: block;
}

.grafela-wordmark strong {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.grafela-wordmark small {
  margin-top: 4px;
  color: var(--g-muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grafela-navigation {
  margin-left: auto;
}

.grafela-menu,
.grafela-navigation ul {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.grafela-menu li {
  position: relative;
}

.grafela-menu a {
  position: relative;
  display: block;
  padding: 12px 0;
  color: var(--g-text);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.grafela-menu a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 4px;
  background: var(--g-accent);
  content: "";
  transition: transform 0.22s ease;
}

.grafela-menu a:hover::after,
.grafela-menu .current-menu-item > a::after,
.grafela-menu .current_page_item > a::after {
  transform: scaleX(1);
}

.grafela-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 15px;
  background: var(--g-accent-soft);
  color: var(--g-text);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.grafela-header-cta:hover {
  transform: translateY(-2px);
  background: var(--g-lime-soft);
}

.grafela-header-cta > .grafela-icon {
  width: 22px;
  height: 22px;
  color: var(--g-accent);
}

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

.grafela-header-cta span {
  color: var(--g-muted);
  font-size: 0.62rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.grafela-header-cta strong {
  margin-top: 2px;
  color: var(--g-text);
  font-size: 0.78rem;
  white-space: nowrap;
}

.grafela-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--g-accent-soft);
  color: var(--g-accent);
  cursor: pointer;
}

.grafela-menu-toggle .grafela-icon {
  width: 24px;
  height: 24px;
}

.grafela-close-icon {
  display: none;
}

/* Hero */
.grafela-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    linear-gradient(rgba(119, 105, 180, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 105, 180, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(180, 254, 50, 0.08), transparent 35%),
    var(--g-surface);
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.grafela-hero::after {
  position: absolute;
  right: -10%;
  bottom: -33%;
  width: 60%;
  height: 70%;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(119, 105, 180, 0.12), rgba(180, 254, 50, 0.08));
  content: "";
  filter: blur(2px);
}

.grafela-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding-block: 82px 90px;
}

.grafela-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 24px;
}

.grafela-hero-copy h1::first-line {
  color: var(--g-accent);
}

.grafela-hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--g-muted);
  font-size: clamp(1.06rem, 1.5vw, 1.27rem);
}

.grafela-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.grafela-hero-proof {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
}

.grafela-proof-faces {
  display: flex;
}

.grafela-proof-faces span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-left: -8px;
  border: 3px solid var(--g-surface);
  border-radius: 50%;
  background: var(--g-accent-soft);
  color: var(--g-accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.grafela-proof-faces span:first-child {
  margin-left: 0;
  background: var(--g-accent);
  color: #fff;
}

.grafela-proof-faces span:last-child {
  background: var(--g-lime);
  color: var(--g-primary);
}

.grafela-hero-proof p,
.grafela-hero-proof strong,
.grafela-hero-proof small {
  display: block;
  margin: 0;
}

.grafela-hero-proof strong {
  font-size: 0.88rem;
}

.grafela-hero-proof small {
  color: var(--g-muted);
  font-size: 0.75rem;
}

.grafela-hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.grafela-hero-glow-one {
  top: 18%;
  right: 6%;
  width: 320px;
  height: 320px;
  background: rgba(119, 105, 180, 0.16);
}

.grafela-hero-glow-two {
  right: 29%;
  bottom: 9%;
  width: 200px;
  height: 200px;
  background: rgba(180, 254, 50, 0.18);
}

.grafela-hero-visual {
  position: relative;
  min-height: 540px;
  perspective: 1300px;
}

.grafela-visual-board {
  position: absolute;
  inset: 3% 2% 3% 4%;
  transform: rotateY(-6deg) rotateX(2deg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 44px;
  background:
    radial-gradient(circle at 70% 10%, rgba(180, 254, 50, 0.22), transparent 28%),
    linear-gradient(145deg, #fbfaff, #e8e2fa);
  box-shadow: var(--g-shadow-lg), inset 0 0 0 1px rgba(119, 105, 180, 0.08);
}

.grafela-visual-board::before,
.grafela-visual-board::after {
  position: absolute;
  border-radius: 999px;
  content: "";
}

.grafela-visual-board::before {
  top: 7%;
  left: 7%;
  width: 54px;
  height: 12px;
  background: var(--g-accent);
  box-shadow: 66px 0 0 rgba(119, 105, 180, 0.18);
}

.grafela-visual-board::after {
  right: -10px;
  bottom: 70px;
  width: 90px;
  height: 90px;
  border: 16px solid var(--g-lime);
  opacity: 0.58;
}

.grafela-camera-card {
  position: absolute;
  top: 18%;
  left: 10%;
  width: 52%;
  height: 50%;
  transform: rotate(-6deg);
  border-radius: 30px;
  background: var(--g-primary);
  box-shadow: 0 26px 44px rgba(17, 15, 24, 0.24);
}

.grafela-camera-card::before {
  position: absolute;
  top: -24px;
  left: 38px;
  width: 80px;
  height: 38px;
  border-radius: 12px 12px 0 0;
  background: var(--g-primary);
  content: "";
}

.grafela-camera-card::after {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--g-lime);
  box-shadow: 0 0 0 7px rgba(180, 254, 50, 0.12);
  content: "";
}

.grafela-camera-lens {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 134px;
  height: 134px;
  place-items: center;
  transform: translate(-50%, -48%);
  border: 15px solid #4c4756;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #bcb2e9 0 6%, #504775 18%, #201d2b 50%, #0f0e13 74%);
  box-shadow: 0 0 0 9px #17161d, inset 10px 12px 18px rgba(255, 255, 255, 0.09);
}

.grafela-camera-lens span {
  width: 22px;
  height: 22px;
  transform: translate(-12px, -16px);
  border-radius: 50%;
  background: rgba(180, 254, 50, 0.7);
  filter: blur(2px);
}

.grafela-camera-card small {
  position: absolute;
  bottom: 16px;
  left: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.grafela-design-card {
  position: absolute;
  top: 14%;
  right: 6%;
  width: 38%;
  height: 42%;
  padding: 28px 23px;
  transform: rotate(7deg);
  border: 8px solid #fff;
  border-radius: 12px;
  background: var(--g-accent);
  box-shadow: 0 20px 36px rgba(59, 46, 107, 0.24);
  color: #fff;
}

.grafela-design-card::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  content: "";
}

.grafela-design-card strong,
.grafela-design-card em {
  position: relative;
  z-index: 1;
  display: block;
}

.grafela-design-card strong {
  margin-top: 25px;
  font-size: clamp(1rem, 1.7vw, 1.42rem);
  line-height: 1.05;
}

.grafela-design-card em {
  color: var(--g-lime);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}

.grafela-design-dot {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--g-lime);
}

.grafela-design-lines {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 5px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 0 rgba(255, 255, 255, 0.28);
}

.grafela-photo-strip {
  position: absolute;
  right: 9%;
  bottom: 8%;
  display: flex;
  width: 53%;
  height: 31%;
  gap: 8px;
  padding: 10px;
  transform: rotate(-3deg);
  background: #fff;
  box-shadow: 0 20px 40px rgba(46, 37, 77, 0.18);
}

.grafela-photo-strip span {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: linear-gradient(150deg, #e6dffc, #b8abe9);
}

.grafela-photo-strip span::before {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 42%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #7c6db7;
  content: "";
}

.grafela-photo-strip span::after {
  position: absolute;
  right: 10%;
  bottom: -10%;
  left: 10%;
  height: 50%;
  border-radius: 50% 50% 0 0;
  background: #5a4b93;
  content: "";
}

.grafela-photo-strip span:nth-child(2) {
  background: linear-gradient(150deg, #efffda, #d6ff90);
}

.grafela-photo-strip span:nth-child(2)::before { background: #8b77c9; }
.grafela-photo-strip span:nth-child(2)::after { background: #6b5bad; }
.grafela-photo-strip span:nth-child(3) { background: linear-gradient(150deg, #f2eefb, #d8d0ee); }

.grafela-visual-badge {
  position: absolute;
  bottom: 15%;
  left: 4%;
  display: flex;
  width: 132px;
  height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(8deg);
  border: 8px solid #fff;
  border-radius: 50%;
  background: var(--g-lime);
  box-shadow: 0 18px 34px rgba(75, 104, 26, 0.24);
  color: var(--g-primary);
  text-align: center;
}

.grafela-visual-badge strong {
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
}

.grafela-visual-badge span {
  max-width: 90px;
  margin-top: 5px;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Pasek korzyści */
.grafela-trust-bar {
  border-block: 1px solid var(--g-line);
  background: #fff;
}

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

.grafela-trust-grid span {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px;
  border-right: 1px solid var(--g-line);
  color: var(--g-text);
  font-size: 0.82rem;
  font-weight: 750;
  text-align: center;
}

.grafela-trust-grid span:first-child { border-left: 1px solid var(--g-line); }
.grafela-trust-grid .grafela-icon { color: var(--g-accent); }

/* Usługi */
.grafela-services-section {
  background:
    radial-gradient(circle at 4% 10%, rgba(119, 105, 180, 0.09), transparent 22%),
    var(--g-surface);
}

.grafela-service-filters {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  margin-bottom: 26px;
  border: 1px solid var(--g-line);
  border-radius: 999px;
  background: #fff;
}

.grafela-service-filters button {
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--g-muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.grafela-service-filters button.is-active {
  background: var(--g-accent);
  color: #fff;
}

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

.grafela-service-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(35, 29, 54, 0.04);
  transition: opacity 0.25s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.grafela-service-card::after {
  position: absolute;
  top: -45px;
  right: -45px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--g-accent-soft);
  content: "";
  transition: transform 0.4s ease, background 0.4s ease;
}

.grafela-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(119, 105, 180, 0.3);
  box-shadow: var(--g-shadow-lg);
}

.grafela-service-card:hover::after {
  transform: scale(1.3);
  background: var(--g-lime-soft);
}

.grafela-service-card.is-filtered-out {
  display: none;
}

.grafela-service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: auto;
  border-radius: 18px;
  background: var(--g-accent-soft);
  color: var(--g-accent);
}

.grafela-service-card:nth-child(2n) .grafela-service-icon {
  background: var(--g-lime-soft);
  color: #527b11;
}

.grafela-service-icon .grafela-icon {
  width: 29px;
  height: 29px;
}

.grafela-service-card h3 {
  margin: 34px 0 12px;
}

.grafela-service-card p {
  margin-bottom: 22px;
  color: var(--g-muted);
  font-size: 0.91rem;
}

.grafela-card-link {
  margin-top: auto;
  font-size: 0.82rem;
}

/* Zdjęcia dokumentowe */
.grafela-docs-section {
  padding-top: 32px;
}

.grafela-docs-card {
  display: grid;
  min-height: 600px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  overflow: hidden;
  border-radius: calc(var(--g-radius) + 12px);
  background: var(--g-primary);
  box-shadow: var(--g-shadow-lg);
  color: #fff;
}

.grafela-docs-art {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 42%, rgba(180, 254, 50, 0.22), transparent 28%),
    linear-gradient(145deg, #6d60ac, #8d7dc7);
}

.grafela-docs-art::before {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 70%;
  height: 80%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.grafela-id-photo {
  position: absolute;
  top: 17%;
  left: 17%;
  width: 48%;
  aspect-ratio: 3 / 4;
  transform: rotate(-6deg);
  overflow: hidden;
  border: 12px solid #fff;
  background: linear-gradient(#eeeafa, #d7d0f2);
  box-shadow: 0 30px 50px rgba(37, 26, 77, 0.3);
}

.grafela-id-head {
  position: absolute;
  z-index: 2;
  top: 18%;
  left: 50%;
  width: 38%;
  aspect-ratio: 0.86;
  transform: translateX(-50%);
  border-radius: 48% 48% 45% 45%;
  background: #8b7dc1;
}

.grafela-id-head::before {
  position: absolute;
  top: -8%;
  left: -5%;
  width: 110%;
  height: 45%;
  border-radius: 50% 50% 26% 26%;
  background: #453b68;
  content: "";
}

.grafela-id-body {
  position: absolute;
  right: 10%;
  bottom: -12%;
  left: 10%;
  height: 58%;
  border-radius: 50% 50% 0 0;
  background: var(--g-accent);
}

.grafela-id-sheet {
  position: absolute;
  right: 10%;
  bottom: 12%;
  display: grid;
  width: 47%;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px;
  transform: rotate(8deg);
  background: #fff;
  box-shadow: 0 26px 46px rgba(37, 26, 77, 0.26);
}

.grafela-id-sheet span {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(#f2effa, #ddd6f1);
}

.grafela-id-sheet span::before {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 38%;
  aspect-ratio: 0.9;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #8c7dc4;
  content: "";
}

.grafela-id-sheet span::after {
  position: absolute;
  right: 14%;
  bottom: -8%;
  left: 14%;
  height: 48%;
  border-radius: 50% 50% 0 0;
  background: #7464b0;
  content: "";
}

.grafela-docs-timer {
  position: absolute;
  top: 12%;
  right: 9%;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  transform: rotate(8deg);
  border: 7px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--g-lime);
  box-shadow: 0 16px 30px rgba(59, 75, 21, 0.2);
  color: var(--g-primary);
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.8;
}

.grafela-docs-timer small {
  position: absolute;
  right: 19px;
  bottom: 22px;
  font-size: 0.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.grafela-docs-copy {
  padding: clamp(42px, 6vw, 86px);
}

.grafela-docs-copy .grafela-kicker {
  color: var(--g-lime);
}

.grafela-docs-copy h2 {
  color: #fff;
}

.grafela-docs-copy > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.grafela-docs-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 34px;
  list-style: none;
}

.grafela-docs-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.grafela-docs-copy li .grafela-icon {
  padding: 3px;
  border-radius: 50%;
  background: rgba(180, 254, 50, 0.14);
  color: var(--g-lime);
}

/* Proces */
.grafela-process-section {
  overflow: hidden;
  background: #f7f5fc;
}

.grafela-process-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(90%, 1040px);
  height: 100%;
  transform: translateX(-50%);
  background-image: radial-gradient(rgba(119, 105, 180, 0.16) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.grafela-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grafela-process-grid::before {
  position: absolute;
  z-index: 0;
  top: 54px;
  right: 16%;
  left: 16%;
  border-top: 2px dashed rgba(119, 105, 180, 0.28);
  content: "";
}

.grafela-process-card {
  position: relative;
  z-index: 1;
  padding: 30px;
  border: 1px solid rgba(119, 105, 180, 0.14);
  border-radius: var(--g-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--g-shadow-sm);
  text-align: center;
}

.grafela-process-card > span {
  position: absolute;
  top: 19px;
  right: 22px;
  color: rgba(119, 105, 180, 0.25);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.grafela-process-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 0 auto 27px;
  border: 8px solid #f7f5fc;
  border-radius: 24px;
  background: var(--g-accent);
  box-shadow: 0 14px 25px rgba(119, 105, 180, 0.23);
  color: #fff;
}

.grafela-process-card:nth-child(2) .grafela-process-icon {
  background: var(--g-lime);
  color: var(--g-primary);
}

.grafela-process-icon .grafela-icon {
  width: 30px;
  height: 30px;
}

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

.grafela-process-card p {
  margin: 0;
  color: var(--g-muted);
  font-size: 0.92rem;
}

/* Portfolio */
.grafela-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 290px;
  gap: 15px;
}

.grafela-portfolio-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--g-radius);
  background: var(--g-accent-soft);
  color: #fff;
  text-decoration: none;
}

.grafela-portfolio-item:nth-child(1),
.grafela-portfolio-item:nth-child(5) {
  grid-column: span 5;
}

.grafela-portfolio-item:nth-child(2),
.grafela-portfolio-item:nth-child(6) {
  grid-column: span 7;
}

.grafela-portfolio-item img,
.grafela-portfolio-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grafela-portfolio-item:hover img,
.grafela-portfolio-item:hover .grafela-portfolio-art {
  transform: scale(1.06);
}

.grafela-portfolio-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, transparent 52%, rgba(255, 255, 255, 0.22) 52% 56%, transparent 56%),
    radial-gradient(circle at 25% 28%, var(--g-lime) 0 8%, transparent 8.4%),
    linear-gradient(140deg, #5f519f, #9b8bd5);
}

.grafela-portfolio-art::before {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 42%;
  height: 58%;
  transform: rotate(8deg);
  border: 9px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: -70px 30px 0 rgba(34, 34, 34, 0.65);
  content: "";
}

.grafela-portfolio-item[data-portfolio-index="2"] .grafela-portfolio-art,
.grafela-portfolio-item[data-portfolio-index="5"] .grafela-portfolio-art {
  background: radial-gradient(circle at 78% 25%, var(--g-accent) 0 9%, transparent 9.4%), linear-gradient(145deg, #c7ff68, #83b92b);
}

.grafela-portfolio-item[data-portfolio-index="3"] .grafela-portfolio-art,
.grafela-portfolio-item[data-portfolio-index="6"] .grafela-portfolio-art {
  background: linear-gradient(145deg, #28242e, #5a506b);
}

.grafela-portfolio-item[data-portfolio-index="4"] .grafela-portfolio-art {
  background: linear-gradient(145deg, #f0ecfa, #c8bdea);
}

.grafela-portfolio-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 60px 24px 22px;
  background: linear-gradient(transparent, rgba(19, 16, 28, 0.82));
}

.grafela-portfolio-overlay strong,
.grafela-portfolio-overlay small {
  display: block;
}

.grafela-portfolio-overlay strong {
  color: #fff;
  font-size: 1.08rem;
}

.grafela-portfolio-overlay small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  white-space: nowrap;
}

/* Opinie */
.grafela-testimonial-section {
  background: var(--g-accent);
  color: #fff;
}

.grafela-testimonial-section::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(180, 254, 50, 0.15), transparent 26%), radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08), transparent 28%);
  content: "";
}

.grafela-testimonial-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.grafela-testimonial-intro .grafela-kicker {
  color: var(--g-lime);
}

.grafela-testimonial-intro h2 {
  color: #fff;
}

.grafela-testimonial-intro > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.grafela-testimonial-intro .grafela-text-link {
  color: var(--g-lime);
}

.grafela-testimonial-card {
  padding: 40px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: calc(var(--g-radius) + 5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(44, 33, 87, 0.3);
  backdrop-filter: blur(18px);
}

.grafela-testimonial-card > .grafela-icon {
  width: 40px;
  height: 40px;
  color: var(--g-lime);
}

.grafela-testimonial-card > p {
  margin: 26px 0 30px;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.45;
}

.grafela-testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.grafela-testimonial-card footer > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--g-lime);
  color: var(--g-primary);
  font-weight: 900;
}

.grafela-testimonial-card footer strong,
.grafela-testimonial-card footer small {
  display: block;
}

.grafela-testimonial-card footer small {
  color: rgba(255, 255, 255, 0.62);
}

/* FAQ */
.grafela-faq-section {
  background: #f7f5fc;
}

.grafela-faq-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.grafela-faq-intro {
  position: sticky;
  top: 140px;
}

.grafela-faq-intro > p:not(.grafela-kicker) {
  color: var(--g-muted);
}

.grafela-faq {
  display: grid;
  gap: 10px;
}

.grafela-faq-item {
  overflow: hidden;
  border: 1px solid rgba(119, 105, 180, 0.13);
  border-radius: 20px;
  background: #fff;
}

.grafela-faq-item h3 {
  margin: 0;
}

.grafela-faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--g-text);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.grafela-faq-item button:hover {
  color: var(--g-accent);
}

.grafela-faq-plus {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--g-accent-soft);
}

.grafela-faq-plus::before,
.grafela-faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background: var(--g-accent);
  content: "";
  transition: transform 0.2s ease;
}

.grafela-faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.grafela-faq-item button[aria-expanded="true"] .grafela-faq-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.grafela-faq-answer p {
  padding: 0 70px 24px 26px;
  margin: 0;
  color: var(--g-muted);
}

/* Kontakt */
.grafela-contact-section {
  background: var(--g-surface);
}

.grafela-contact-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border: 1px solid var(--g-line);
  border-radius: calc(var(--g-radius) + 12px);
  background: #fff;
  box-shadow: var(--g-shadow-lg);
}

.grafela-contact-info {
  position: relative;
  padding: clamp(38px, 6vw, 72px);
  overflow: hidden;
  background: var(--g-primary);
  color: #fff;
}

.grafela-contact-info::before {
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 45px solid rgba(180, 254, 50, 0.16);
  border-radius: 50%;
  content: "";
}

.grafela-contact-info .grafela-kicker { color: var(--g-lime); }
.grafela-contact-info h2 { color: #fff; }
.grafela-contact-info > p:not(.grafela-kicker) { color: rgba(255, 255, 255, 0.68); }

.grafela-contact-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-top: 32px;
}

.grafela-contact-list > a,
.grafela-contact-list > div {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
}

.grafela-contact-list > a > span,
.grafela-contact-list > div > span {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--g-lime);
}

.grafela-contact-list small,
.grafela-contact-list strong {
  display: block;
}

.grafela-contact-list small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.grafela-contact-list strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.grafela-whatsapp-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--g-lime);
  font-weight: 800;
  text-decoration: none;
}

.grafela-whatsapp-link > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--g-lime);
  color: var(--g-primary);
  font-size: 0.62rem;
}

.grafela-contact-form-wrap {
  padding: clamp(38px, 6vw, 72px);
}

.grafela-contact-form-wrap > p {
  color: var(--g-muted);
}

.grafela-contact-form {
  margin-top: 30px;
}

.grafela-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.grafela-contact-form label > span:not(.wpcf7-list-item-label) {
  display: block;
  margin-bottom: 7px;
  color: var(--g-text);
  font-size: 0.77rem;
  font-weight: 800;
}

.grafela-contact-form input:not([type="checkbox"]),
.grafela-contact-form select,
.grafela-contact-form textarea,
.grafela-contact-form-wrap .wpcf7 input:not([type="checkbox"]):not([type="submit"]),
.grafela-contact-form-wrap .wpcf7 select,
.grafela-contact-form-wrap .wpcf7 textarea {
  width: 100%;
  border: 1px solid var(--g-line);
  border-radius: 13px;
  background: #faf9fc;
  color: var(--g-text);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.grafela-contact-form input:not([type="checkbox"]),
.grafela-contact-form select,
.grafela-contact-form-wrap .wpcf7 input:not([type="checkbox"]):not([type="submit"]),
.grafela-contact-form-wrap .wpcf7 select {
  height: 50px;
  padding: 0 14px;
}

.grafela-contact-form textarea,
.grafela-contact-form-wrap .wpcf7 textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.grafela-contact-form input:focus,
.grafela-contact-form select:focus,
.grafela-contact-form textarea:focus,
.grafela-contact-form-wrap .wpcf7 input:focus,
.grafela-contact-form-wrap .wpcf7 select:focus,
.grafela-contact-form-wrap .wpcf7 textarea:focus {
  border-color: var(--g-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(119, 105, 180, 0.1);
}

.grafela-form-full {
  display: block;
  margin-top: 16px;
}

.grafela-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 17px 0;
}

.grafela-form-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--g-accent);
}

.grafela-form-consent span {
  margin: 0 !important;
  color: var(--g-muted) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
}

.grafela-honeypot {
  position: absolute;
  left: -9999px;
}

.grafela-form-message {
  padding: 12px 15px;
  margin: 18px 0;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.grafela-form-message.is-success {
  background: var(--g-lime-soft);
  color: #3d6400;
}

.grafela-form-message.is-error {
  background: #ffebee;
  color: #9a2537;
}

/* Stopka */
.grafela-footer {
  padding: 80px 0 26px;
  background: #18171c;
  color: rgba(255, 255, 255, 0.68);
}

.grafela-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.65fr 1fr;
  gap: 60px;
}

.grafela-wordmark.is-footer {
  color: #fff;
}

.grafela-wordmark.is-footer small {
  color: rgba(255, 255, 255, 0.48);
}

.grafela-footer-brand > p {
  max-width: 360px;
  margin: 24px 0;
}

.grafela-socials {
  display: flex;
  gap: 9px;
}

.grafela-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

.grafela-socials a:hover {
  border-color: var(--g-lime);
  background: var(--g-lime);
  color: var(--g-primary);
}

.grafela-footer h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.grafela-footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.grafela-footer a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
}

.grafela-footer a:hover {
  color: var(--g-lime);
}

.grafela-footer-contact {
  display: grid;
  align-content: start;
  gap: 13px;
}

.grafela-footer-contact h3 {
  margin-bottom: 7px;
}

.grafela-footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.grafela-footer-contact .grafela-icon {
  margin-top: 3px;
  color: var(--g-lime);
}

.grafela-footer-widgets {
  grid-column: 1 / -1;
}

.grafela-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.74rem;
}

/* Królik */
.grafela-bunny {
  position: fixed;
  z-index: 999;
  right: 18px;
  bottom: 14px;
  width: var(--g-bunny-size);
  pointer-events: none;
}

.grafela-mascot-left .grafela-bunny {
  right: auto;
  left: 18px;
}

.grafela-bunny-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 12px 18px rgba(48, 38, 84, 0.14));
  pointer-events: auto;
}

.grafela-bunny-svg {
  width: 100%;
  overflow: visible;
}

.grafela-bunny .bunny-body {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: grafela-bunny-bob 3.6s ease-in-out infinite;
}

.grafela-bunny .bunny-ear {
  transform-box: fill-box;
  transform-origin: center bottom;
}

.grafela-bunny .bunny-ear-left {
  animation: grafela-ear-left 5s ease-in-out infinite;
}

.grafela-bunny .bunny-ear-right {
  animation: grafela-ear-right 5s 0.25s ease-in-out infinite;
}

.grafela-bunny .bunny-pupil {
  transform: translate(var(--bunny-eye-x, 0), var(--bunny-eye-y, 0));
  transition: transform 0.12s ease-out;
}

.grafela-bunny .bunny-eyelid {
  opacity: 0;
  transition: opacity 0.08s ease;
}

.grafela-bunny.is-blinking .bunny-eyelid {
  opacity: 1;
}

.grafela-bunny.is-blinking .bunny-eye {
  opacity: 0;
}

.grafela-bunny.is-happy .bunny-mouth {
  stroke: var(--g-lime);
  stroke-width: 3.6;
}

.grafela-bunny.is-happy .bunny-paw-left {
  animation: grafela-wave-left 0.45s ease-in-out 2;
}

.grafela-bunny.is-happy .bunny-paw-right {
  animation: grafela-wave-right 0.45s ease-in-out 2;
}

.grafela-bunny .bunny-sparkles {
  transform-origin: center;
  animation: grafela-sparkle 2.4s ease-in-out infinite;
}

.grafela-bunny-notification {
  position: absolute;
  top: 22%;
  right: 2%;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--g-lime);
  color: var(--g-primary);
  font-size: 0.65rem;
  font-weight: 900;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.grafela-bunny.is-open .grafela-bunny-notification {
  opacity: 0;
  transform: scale(0);
}

.grafela-bunny-bubble {
  position: absolute;
  right: 8px;
  bottom: calc(100% - 16px);
  width: 230px;
  padding: 14px 16px;
  transform: translateY(10px) scale(0.95);
  transform-origin: right bottom;
  visibility: hidden;
  border: 1px solid rgba(119, 105, 180, 0.18);
  border-radius: 18px 18px 4px 18px;
  opacity: 0;
  background: #fff;
  box-shadow: 0 16px 40px rgba(33, 27, 53, 0.17);
  color: var(--g-text);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.grafela-mascot-left .grafela-bunny-bubble {
  right: auto;
  left: 8px;
  transform-origin: left bottom;
  border-radius: 18px 18px 18px 4px;
}

.grafela-bunny-bubble span,
.grafela-bunny-bubble a {
  display: block;
}

.grafela-bunny-bubble a {
  margin-top: 7px;
  color: var(--g-accent);
  font-size: 0.73rem;
  font-weight: 900;
  text-decoration: none;
}

.grafela-bunny.is-open .grafela-bunny-bubble {
  transform: translateY(0) scale(1);
  visibility: visible;
  opacity: 1;
}

@keyframes grafela-bunny-bob {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-5px) rotate(0.6deg); }
}

@keyframes grafela-ear-left {
  0%, 75%, 100% { transform: rotate(0); }
  82% { transform: rotate(-8deg); }
  90% { transform: rotate(3deg); }
}

@keyframes grafela-ear-right {
  0%, 70%, 100% { transform: rotate(0); }
  79% { transform: rotate(7deg); }
  88% { transform: rotate(-2deg); }
}

@keyframes grafela-wave-left {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(-5px, -7px) rotate(-14deg); }
}

@keyframes grafela-wave-right {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(5px, -7px) rotate(14deg); }
}

@keyframes grafela-sparkle {
  0%, 100% { opacity: 0.45; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1.06); }
}

/* Treść, podstrony i blog */
.grafela-content-area {
  padding-bottom: var(--g-section-space);
}

.grafela-page-header,
.grafela-page-hero,
.grafela-single-header {
  padding: 95px 0 68px;
  margin-bottom: 55px;
  background: linear-gradient(145deg, #f7f5fc, #f0ecfa);
}

.grafela-page-header {
  padding-inline: 5%;
  border-radius: 0 0 40px 40px;
}

.grafela-page-header h1,
.grafela-page-hero h1,
.grafela-single-header h1 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.grafela-single-header-inner {
  max-width: 940px;
}

.grafela-single-header .grafela-kicker a {
  color: var(--g-accent);
  text-decoration: none;
}

.grafela-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--g-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.grafela-single-header .grafela-post-meta {
  margin-top: 22px;
}

.grafela-prose {
  max-width: 860px;
}

.grafela-prose > * + * {
  margin-top: 1.4em;
}

.grafela-prose p,
.grafela-prose li {
  color: #38413e;
  font-size: 1.05rem;
}

.grafela-prose h2,
.grafela-prose h3,
.grafela-prose h4 {
  margin-top: 1.5em;
}

.grafela-prose blockquote {
  padding: 26px 30px;
  margin-inline: 0;
  border-left: 5px solid var(--g-lime);
  border-radius: 0 var(--g-radius) var(--g-radius) 0;
  background: var(--g-accent-soft);
}

.grafela-page-thumbnail,
.grafela-single-thumbnail {
  overflow: hidden;
  border-radius: var(--g-radius);
}

.grafela-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grafela-post-card {
  overflow: hidden;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius);
  background: #fff;
  box-shadow: var(--g-shadow-sm);
}

.grafela-post-thumbnail {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--g-accent-soft);
}

.grafela-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.grafela-post-card:hover .grafela-post-thumbnail img {
  transform: scale(1.05);
}

.grafela-post-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: linear-gradient(145deg, var(--g-accent-soft), var(--g-lime-soft));
  color: var(--g-accent);
}

.grafela-post-placeholder .grafela-icon {
  width: 64px;
  height: 64px;
}

.grafela-post-card-content {
  padding: 25px;
}

.grafela-post-card h2 {
  margin: 12px 0;
  font-size: 1.45rem;
}

.grafela-post-card h2 a {
  color: var(--g-text);
  text-decoration: none;
}

.grafela-post-card p {
  color: var(--g-muted);
  font-size: 0.9rem;
}

.grafela-post-card .grafela-text-link {
  font-size: 0.8rem;
}

.navigation.pagination {
  margin-top: 45px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: grid;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  border: 1px solid var(--g-line);
  border-radius: 11px;
  color: var(--g-text);
  font-weight: 700;
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--g-accent);
  background: var(--g-accent);
  color: #fff;
}

.grafela-single-footer,
.grafela-comments {
  max-width: 860px;
  margin-top: 55px;
}

.grafela-tags a {
  display: inline-block;
  padding: 7px 11px;
  margin: 0 4px 4px 0;
  border-radius: 999px;
  background: var(--g-accent-soft);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.post-navigation {
  margin-top: 35px;
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.post-navigation a {
  display: block;
  padding: 20px;
  border: 1px solid var(--g-line);
  border-radius: 16px;
  color: var(--g-text);
  text-decoration: none;
}

.post-navigation span,
.post-navigation strong {
  display: block;
}

.post-navigation span {
  color: var(--g-accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.grafela-comments .comment-list {
  padding-left: 0;
  list-style: none;
}

.grafela-comments .comment-body {
  padding: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--g-line);
  border-radius: 16px;
}

.grafela-empty,
.grafela-404 {
  padding: 100px 20px;
  text-align: center;
}

.grafela-search-form {
  display: flex;
  max-width: 620px;
  gap: 10px;
  margin: 24px auto 0;
}

.grafela-search-form label {
  flex: 1;
}

.grafela-search-form .search-field {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--g-line);
  border-radius: 999px;
  background: #fff;
}

.grafela-search-form .grafela-button {
  width: auto;
}

.grafela-404 > span {
  display: block;
  color: var(--g-accent-soft);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 900;
  line-height: 0.8;
}

.grafela-404 p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--g-muted);
}

/* WooCommerce */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
  border-radius: 999px;
  background: var(--g-accent);
  color: #fff;
}

.grafela-woocommerce {
  padding-top: 70px;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
  background: var(--g-accent-dark);
  color: #fff;
}

/* Elementor i szerokości */
.elementor-page .grafela-content-area,
.grafela-full-width {
  padding: 0;
}

.grafela-canvas {
  margin: 0;
}

.alignwide {
  width: min(calc(100vw - 40px), var(--g-container));
  max-width: var(--g-container);
  margin-inline: 50%;
  transform: translateX(-50%);
}

.alignfull {
  width: 100vw;
  max-width: none;
  margin-inline: 50%;
  transform: translateX(-50%);
}

/* Wejścia elementów */
.grafela-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

/* Responsywność */
@media (max-width: 1180px) {
  .grafela-header-inner { gap: 20px; }
  .grafela-menu, .grafela-navigation ul { gap: 18px; }
  .grafela-header-cta { display: none; }
  .grafela-hero-grid { grid-template-columns: 1fr 0.9fr; gap: 40px; }
  .grafela-services-grid { grid-template-columns: repeat(2, 1fr); }
  .grafela-service-card { min-height: 300px; }
}

@media (max-width: 960px) {
  :root { --g-section-space: 82px; }
  .grafela-header-inner { min-height: 74px; }
  .grafela-menu-toggle { display: inline-flex; margin-left: auto; }
  .grafela-navigation {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(88vw, 390px);
    align-items: center;
    padding: 86px 36px 36px;
    transform: translateX(105%);
    background: #fff;
    box-shadow: -20px 0 60px rgba(28, 23, 45, 0.18);
    transition: transform 0.28s ease;
  }
  .grafela-navigation::before {
    position: absolute;
    top: 30px;
    left: 36px;
    color: var(--g-accent);
    content: "GRAFELA";
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.14em;
  }
  .grafela-navigation.is-open { transform: translateX(0); }
  .grafela-menu, .grafela-navigation ul { width: 100%; flex-direction: column; align-items: stretch; gap: 0; }
  .grafela-menu a { padding: 15px 0; border-bottom: 1px solid var(--g-line); font-size: 1.1rem; }
  .grafela-menu a::after { display: none; }
  .grafela-menu-toggle[aria-expanded="true"] { position: fixed; z-index: 110; top: 13px; right: 20px; }
  .admin-bar .grafela-menu-toggle[aria-expanded="true"] { top: 45px; }
  .grafela-menu-toggle[aria-expanded="true"] .grafela-menu-icon { display: none; }
  .grafela-menu-toggle[aria-expanded="true"] .grafela-close-icon { display: block; }
  .grafela-hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 70px; }
  .grafela-hero-copy { max-width: 760px; }
  .grafela-hero-visual { min-height: 560px; max-width: 680px; width: 100%; margin: 0 auto; }
  .grafela-trust-grid { grid-template-columns: 1fr 1fr; }
  .grafela-trust-grid span:nth-child(2) { border-right: 0; }
  .grafela-trust-grid span:nth-child(-n+2) { border-bottom: 1px solid var(--g-line); }
  .grafela-section-heading { grid-template-columns: 1fr; gap: 18px; }
  .grafela-docs-card { min-height: auto; grid-template-columns: 1fr; }
  .grafela-docs-art { min-height: 520px; }
  .grafela-process-grid { gap: 12px; }
  .grafela-process-card { padding: 24px 18px; }
  .grafela-portfolio-grid { grid-auto-rows: 250px; }
  .grafela-testimonial-grid { grid-template-columns: 1fr; gap: 50px; }
  .grafela-faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .grafela-faq-intro { position: static; }
  .grafela-contact-shell { grid-template-columns: 1fr; }
  .grafela-footer-grid { grid-template-columns: 1fr 1fr; }
  .grafela-footer-brand { grid-column: 1 / -1; }
  .grafela-post-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 782px) {
  .admin-bar.grafela-has-sticky-header .grafela-header { top: 46px; }
}

@media (max-width: 680px) {
  :root { --g-section-space: 68px; --g-radius: 22px; }
  html { scroll-padding-top: 90px; }
  .grafela-container { width: min(calc(100% - 28px), var(--g-container)); }
  .grafela-announcement-inner { min-height: 34px; font-size: 0.7rem; }
  .grafela-announcement a .grafela-icon { display: none; }
  .grafela-wordmark-mark { width: 40px; height: 40px; }
  .grafela-wordmark small { display: none; }
  .grafela-hero { min-height: 0; }
  .grafela-hero-grid { padding-block: 52px 64px; }
  .grafela-hero-copy h1 { font-size: clamp(2.6rem, 13vw, 4.1rem); }
  .grafela-eyebrow { align-items: flex-start; font-size: 0.67rem; }
  .grafela-eyebrow > span { margin-top: 1px; flex: 0 0 auto; }
  .grafela-hero-actions { display: grid; grid-template-columns: 1fr; }
  .grafela-button { width: 100%; }
  .grafela-hero-visual { min-height: 420px; }
  .grafela-visual-board { inset: 2%; border-radius: 30px; }
  .grafela-camera-card { top: 22%; left: 7%; width: 58%; height: 46%; }
  .grafela-camera-lens { width: 90px; height: 90px; border-width: 10px; }
  .grafela-design-card { top: 12%; right: 4%; width: 40%; height: 40%; padding: 18px 14px; }
  .grafela-design-card strong { margin-top: 22px; font-size: 0.9rem; }
  .grafela-design-card em { font-size: 0.66rem; }
  .grafela-photo-strip { right: 6%; bottom: 8%; width: 57%; height: 28%; }
  .grafela-visual-badge { bottom: 12%; left: 2%; width: 92px; height: 92px; border-width: 5px; }
  .grafela-visual-badge strong { font-size: 1.3rem; }
  .grafela-visual-badge span { font-size: 0.46rem; }
  .grafela-trust-grid { grid-template-columns: 1fr; }
  .grafela-trust-grid span { min-height: 58px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--g-line); text-align: left; }
  .grafela-trust-grid span:first-child { border-left: 0; }
  .grafela-trust-grid span:last-child { border-bottom: 0; }
  .grafela-section-heading { margin-bottom: 34px; }
  .grafela-service-filters { display: flex; width: 100%; overflow-x: auto; border-radius: 15px; }
  .grafela-service-filters button { flex: 0 0 auto; }
  .grafela-services-grid { grid-template-columns: 1fr; }
  .grafela-service-card { min-height: 280px; }
  .grafela-docs-section { padding-top: 10px; }
  .grafela-docs-art { min-height: 390px; }
  .grafela-id-photo { top: 16%; left: 10%; width: 53%; border-width: 8px; }
  .grafela-id-sheet { right: 6%; bottom: 11%; width: 49%; }
  .grafela-docs-timer { top: 9%; right: 5%; width: 82px; height: 82px; border-width: 5px; font-size: 2rem; }
  .grafela-docs-timer small { right: 13px; bottom: 15px; font-size: 0.52rem; }
  .grafela-docs-copy { padding: 38px 24px 42px; }
  .grafela-process-grid { grid-template-columns: 1fr; }
  .grafela-process-grid::before { display: none; }
  .grafela-portfolio-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .grafela-portfolio-item,
  .grafela-portfolio-item:nth-child(n) { grid-column: 1; }
  .grafela-testimonial-card { padding: 28px; }
  .grafela-faq-item button { padding: 20px; }
  .grafela-faq-answer p { padding: 0 52px 20px 20px; }
  .grafela-contact-info,
  .grafela-contact-form-wrap { padding: 34px 22px; }
  .grafela-form-grid { grid-template-columns: 1fr; }
  .grafela-contact-list strong { font-size: 0.82rem; }
  .grafela-footer { padding-top: 60px; }
  .grafela-footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .grafela-footer-brand { grid-column: auto; }
  .grafela-footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; margin-top: 45px; }
  .grafela-bunny { right: 8px; bottom: 6px; width: min(var(--g-bunny-size), 86px); }
  .grafela-mascot-left .grafela-bunny { right: auto; left: 8px; }
  .grafela-bunny-bubble { right: 2px; width: 210px; bottom: calc(100% - 10px); }
  .grafela-mascot-left .grafela-bunny-bubble { right: auto; left: 2px; }
  .grafela-page-header,
  .grafela-page-hero,
  .grafela-single-header { padding: 65px 0 48px; margin-bottom: 42px; }
  .grafela-page-header { padding-inline: 0; }
  .grafela-post-grid { grid-template-columns: 1fr; }
  .grafela-search-form { flex-direction: column; }
  .grafela-search-form .grafela-button { width: 100%; }
  .post-navigation .nav-links { grid-template-columns: 1fr; }
}

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

@media print {
  .grafela-announcement,
  .grafela-header,
  .grafela-footer,
  .grafela-bunny,
  .grafela-button { display: none !important; }
  body { background: #fff; color: #000; }
  .grafela-section { padding-block: 30px; }
}
