/* ==========================================================================
   Dream Craft — Premium Landing Page
   Dark theme with metallic gold/silver/steel/blue accents
   Font: Sora
   ========================================================================== */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.6; font-family: 'Sora', system-ui, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* --- Design Tokens --- */
:root {
  --color-bg: #0f0f11;
  --color-bg-alt: #161619;
  --color-bg-card: #1c1c20;
  --color-bg-panel: #1a1a1f;
  --color-gold: #e89530;
  --color-gold-light: #f5a623;
  --color-silver: #c0c0c0;
  --color-steel: #6b8fa3;
  --color-blue: #4a7fb5;
  --color-text: #f2f2f2;
  --color-text-secondary: #a8a8b0;
  --color-text-muted: #6b6b75;
  --color-border: rgba(201, 168, 76, 0.15);
  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --container: 1240px;
  --section-py: clamp(80px, 10vw, 140px);
  --transition: 300ms ease;
}

/* --- Base --- */
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 17px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.15; color: var(--color-text); }
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { color: var(--color-text-secondary); }

.section__title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.section__title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color-gold);
  margin: 16px auto 0;
}
.section__desc {
  text-align: center;
  max-width: 620px;
  margin: -40px auto 60px;
  font-size: 1.02rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --- Sections --- */
.section { padding: var(--section-py) 0; }
.section--dark { background: var(--color-bg-alt); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: #111;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}
.btn--outline {
  border: 1.5px solid var(--color-silver);
  color: var(--color-silver);
}
.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.btn--lg { padding: 18px 44px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* --- Focus --- */
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(15, 15, 17, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: background var(--transition);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo img { height: 72px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav__list { display: flex; gap: 1.75rem; }
.site-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}
.site-nav__link:hover { color: var(--color-gold); }
.site-nav__cta {
  padding: 10px 22px;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.site-nav__cta:hover { background: var(--color-gold); color: #111; }

/* Hamburger */
.nav-toggle { display: none; width: 36px; height: 36px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle__bar { width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
    background: var(--color-bg-alt); flex-direction: column; align-items: flex-start;
    padding: 80px 32px 40px; gap: 2rem;
    transform: translateX(100%); transition: transform var(--transition);
    border-left: 1px solid var(--color-border-subtle);
  }
  .nav-open .site-nav { transform: translateX(0); }
  .site-nav__list { flex-direction: column; gap: 1.25rem; }
  .site-nav__link { font-size: 1.05rem; }
  .site-nav__cta { width: 100%; text-align: center; margin-top: 1rem; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 998; opacity: 0; visibility: hidden; transition: opacity var(--transition); }
  .nav-open .nav-overlay { opacity: 1; visibility: visible; }
}
@media (min-width: 768px) { .nav-overlay { display: none; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 30%, rgba(243, 154, 34, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(31, 111, 209, 0.12) 0%, transparent 40%),
    linear-gradient(135deg, rgba(7, 8, 11, 0.88) 0%, rgba(17, 19, 26, 0.55) 45%, rgba(7, 8, 11, 0.35) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.hero__content { max-width: 600px; }
.hero__brand {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.hero__heading {
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--color-text) 60%, var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtext {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 767px) {
  .hero { min-height: 85vh; }
  .hero__overlay { background: linear-gradient(180deg, rgba(15,15,17,0.95) 0%, rgba(15,15,17,0.7) 100%); }
  .hero__inner { padding: 40px 0; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; }
}

/* ==========================================================================
   PRODUCTS
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  border-color: var(--color-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.08);
}
.product-card__icon {
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.product-card__title {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.product-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

@media (max-width: 1023px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .products-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   APPLICATIONS
   ========================================================================== */
.applications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.applications__text .section__title { text-align: left; margin-bottom: 24px; }
.applications__text .section__title::after { margin: 16px 0 0; }
.applications__intro { font-size: 1.05rem; line-height: 1.8; }
.applications__intro--secondary { margin-top: 16px; color: var(--color-text-muted); font-size: 0.95rem; }
.applications__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.applications__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--color-text);
}
.applications__marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .applications { grid-template-columns: 1fr; gap: 32px; }
  .applications__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 479px) {
  .applications__list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery__item { position: relative; }
.gallery__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-card);
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition), filter var(--transition);
}
.gallery__item:hover .gallery__img {
  transform: scale(1.04);
  filter: brightness(1.1);
}
.gallery__label {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

@media (max-width: 1023px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .gallery { grid-template-columns: 1fr; } }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.process__step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 320px;
}
.process__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  align-self: center;
  margin-top: -20px;
  flex-shrink: 0;
}
.process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: #111;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.process__title { margin-bottom: 10px; }
.process__desc { font-size: 0.9rem; color: var(--color-text-muted); }

@media (max-width: 767px) {
  .process { flex-direction: column; align-items: center; gap: 32px; }
  .process__connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--color-gold), transparent); margin-top: 0; }
  .process__step { max-width: 100%; }
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-section {
  padding: var(--section-py) 0;
  text-align: center;
}
.cta-section__heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}
.cta-section__text {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact__info { padding-top: 20px; }
.contact__promo { margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--color-border-subtle); }
.contact__promo-heading { font-size: 1.35rem; color: var(--color-gold); margin-bottom: 12px; line-height: 1.3; }
.contact__promo-text { font-size: 0.95rem; color: var(--color-text-secondary); line-height: 1.7; margin-bottom: 10px; }
.contact__promo-note { font-size: 0.82rem; color: var(--color-text-muted); font-style: italic; }
.contact__name { font-size: 1.5rem; margin-bottom: 4px; color: var(--color-gold); }
.contact__company { color: var(--color-text-muted); margin-bottom: 20px; }
.contact__address { color: var(--color-text-secondary); margin-bottom: 12px; line-height: 1.8; }
.contact__nip { color: var(--color-text-muted); font-size: 0.88rem; margin-bottom: 28px; }
.contact__links { display: flex; flex-direction: column; gap: 14px; }
.contact__link {
  display: flex; align-items: center; gap: 10px;
  color: var(--color-steel);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact__link:hover { color: var(--color-gold); }
.contact__link svg { flex-shrink: 0; }

.contact__form-panel {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
}

@media (max-width: 899px) {
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .contact__form-panel { padding: 28px; }
}

/* --- Form --- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 599px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group textarea::placeholder { color: var(--color-text-muted); opacity: 0.7; }
.form-group input.is-invalid,
.form-group textarea.is-invalid { border-color: #e53e3e; }

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--color-gold);
}
.form-group--checkbox label {
  flex: 1;
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.form-group--turnstile { margin: 24px 0; }

.form-error {
  display: block;
  font-size: 0.8rem;
  color: #e53e3e;
  margin-top: 6px;
  min-height: 1em;
}

.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-message--success { background: rgba(72, 187, 120, 0.1); color: #48bb78; border: 1px solid rgba(72, 187, 120, 0.2); }
.form-message--error { background: rgba(229, 62, 62, 0.1); color: #fc8181; border: 1px solid rgba(229, 62, 62, 0.2); }

.form-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
}

.rodo-link {
  color: var(--color-steel);
  text-decoration: underline;
  text-decoration-color: rgba(107, 143, 163, 0.4);
  transition: color var(--transition);
}
.rodo-link:hover { color: var(--color-gold); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--color-border-subtle);
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer__brand img { height: 28px; width: auto; opacity: 0.7; }
.site-footer__meta { text-align: center; flex: 1; }
.site-footer__warning { font-size: 0.78rem; color: var(--color-text-muted); margin-bottom: 4px; }
.site-footer__address { font-size: 0.78rem; color: var(--color-text-muted); }
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
}
.site-footer__links a,
.footer-privacy-btn {
  color: var(--color-steel);
  transition: color var(--transition);
  font-size: 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.site-footer__links a:hover,
.footer-privacy-btn:hover { color: var(--color-gold); }

@media (max-width: 767px) {
  .site-footer__inner { flex-direction: column; text-align: center; }
  .site-footer__links { flex-direction: column; gap: 8px; }
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal[aria-hidden="false"] { opacity: 1; visibility: visible; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal__content--sm { width: 90%; max-width: 560px; }
.modal__content--lg { width: 90%; max-width: 820px; }
.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2rem;
  color: var(--color-text-muted);
  line-height: 1;
  transition: color var(--transition);
}
.modal__close:hover { color: var(--color-gold); }
.modal__title {
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-right: 40px;
}
.modal__body { color: var(--color-text-secondary); font-size: 0.92rem; line-height: 1.7; }
.modal__body p { margin-bottom: 14px; }
.modal__body strong { color: var(--color-text); }
.modal__body--scroll { overflow-y: auto; flex: 1; padding-right: 8px; }
.modal__body--scroll::-webkit-scrollbar { width: 6px; }
.modal__body--scroll::-webkit-scrollbar-track { background: transparent; }
.modal__body--scroll::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }

.privacy-list { padding-left: 0; counter-reset: none; }
.privacy-list li { margin-bottom: 24px; }
.privacy-list h3 { font-size: 1rem; color: var(--color-gold); margin-bottom: 6px; }
.privacy-list p { margin: 0 0 8px; }
.privacy-list ul { padding-left: 20px; margin: 8px 0; }
.privacy-list ul li { margin-bottom: 6px; list-style: disc; color: var(--color-text-secondary); font-size: 0.92rem; }
.privacy-intro { margin-bottom: 20px; }

@media (max-width: 599px) {
  .modal__content { padding: 28px 20px; border-radius: var(--radius-md); max-height: 90vh; }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   VISUAL POLISH — Backgrounds, Glows, Decorators
   Brand colors: gold #d9a441, orange #f39a22, blue #1f6fd1, graphite #11131a, steel #7d8797, deep black #07080b
   ========================================================================== */

/* --- 1. Global Body Background --- */
body {
  background:
    radial-gradient(ellipse at 10% 5%, rgba(243, 154, 34, 0.09) 0%, transparent 35%),
    radial-gradient(ellipse at 80% 15%, rgba(31, 111, 209, 0.07) 0%, transparent 35%),
    radial-gradient(ellipse at 50% 60%, rgba(217, 164, 65, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 80%, rgba(31, 111, 209, 0.05) 0%, transparent 35%),
    linear-gradient(180deg, #07080b 0%, #0d0e13 20%, #11131a 50%, #0d0f14 80%, #07080b 100%);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* --- 2. Section Separators — metallic gradient lines --- */
.section,
.cta-section {
  position: relative;
  isolation: isolate;
}
.section::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 2%, rgba(243, 154, 34, 0.2) 25%, rgba(217, 164, 65, 0.15) 45%, rgba(125, 135, 151, 0.1) 55%, rgba(31, 111, 209, 0.18) 75%, transparent 98%);
  pointer-events: none;
}

/* --- 3. Products — technical grid + dual glows --- */
#produkty {
  background:
    radial-gradient(ellipse at 25% 40%, rgba(243, 154, 34, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 75% 60%, rgba(31, 111, 209, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, #0a0b0f 0%, #10111a 50%, #0c0d12 100%);
}
#produkty::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(217, 164, 65, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 111, 209, 0.02) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  z-index: -1;
}

/* Product card enhanced hover */
.product-card:hover {
  background: linear-gradient(135deg, rgba(20, 20, 26, 1) 0%, rgba(30, 26, 18, 1) 100%);
  border-color: rgba(243, 154, 34, 0.25);
  box-shadow: 0 12px 40px rgba(243, 154, 34, 0.1), inset 0 1px 0 rgba(243, 154, 34, 0.15);
}

/* --- 4. Applications — grafit → navy gradient + blue glow --- */
#zastosowania {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(31, 111, 209, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(217, 164, 65, 0.05) 0%, transparent 45%),
    linear-gradient(160deg, #0c0d14 0%, #11131a 35%, #0f1420 70%, #0b0c11 100%);
}
#zastosowania::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(31, 111, 209, 0.02) 1px, transparent 1px),
    linear-gradient(45deg, rgba(31, 111, 209, 0.015) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(135deg, transparent 20%, black 50%, transparent 80%);
  -webkit-mask-image: linear-gradient(135deg, transparent 20%, black 50%, transparent 80%);
  z-index: -1;
}

/* --- 5. Gallery — warm glow + premium borders --- */
#realizacje {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(243, 154, 34, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(31, 111, 209, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, #0a0b10 0%, #0e0f15 40%, #0c0d12 100%);
}
#realizacje::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 70%;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(217, 164, 65, 0.05) 0%, rgba(31, 111, 209, 0.03) 40%, transparent 70%);
  z-index: -1;
}
.gallery__img-wrap {
  border: 1px solid rgba(217, 164, 65, 0.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(31, 111, 209, 0.04);
}
.gallery__item:hover .gallery__img-wrap {
  border-color: rgba(243, 154, 34, 0.3);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5), 0 0 30px rgba(243, 154, 34, 0.08);
}

/* --- 6. Process — glowing path + number halos --- */
#proces {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(217, 164, 65, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, #0c0d14 0%, #11131a 50%, #0c0d14 100%);
}
#proces::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  transform: translateY(-10px);
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(243, 154, 34, 0.25) 20%, rgba(217, 164, 65, 0.15) 50%, rgba(31, 111, 209, 0.12) 80%, transparent 100%);
  z-index: -1;
}
.process__number {
  box-shadow: 0 0 24px rgba(243, 154, 34, 0.35), 0 0 60px rgba(243, 154, 34, 0.12);
}

@media (max-width: 767px) {
  #proces::after {
    top: 5%;
    bottom: 5%;
    left: 50%;
    right: auto;
    width: 2px;
    height: 90%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent 0%, rgba(243, 154, 34, 0.25) 20%, rgba(217, 164, 65, 0.12) 50%, rgba(31, 111, 209, 0.1) 80%, transparent 100%);
  }
}

/* --- 7. CTA — bold gradient with visible brand colors --- */
.cta-section {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(243, 154, 34, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 50%, rgba(31, 111, 209, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(217, 164, 65, 0.05) 0%, transparent 40%),
    linear-gradient(135deg, #0a0b10 0%, #11131a 40%, #0f1320 60%, #0a0b10 100%);
  border-top: 1px solid rgba(243, 154, 34, 0.2);
  border-bottom: 1px solid rgba(31, 111, 209, 0.15);
}
.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(243, 154, 34, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(31, 111, 209, 0.06) 0%, transparent 40%);
  z-index: -1;
}

/* --- 8. Contact — blue glow behind form + gold near info --- */
#kontakt {
  background:
    radial-gradient(ellipse at 25% 40%, rgba(243, 154, 34, 0.07) 0%, transparent 40%),
    radial-gradient(ellipse at 75% 35%, rgba(31, 111, 209, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #0a0b10 0%, #0e1018 50%, #0b0c11 100%);
}
#kontakt::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(125, 135, 151, 0.02) 1px, transparent 1px),
    linear-gradient(45deg, rgba(125, 135, 151, 0.015) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at 70% 50%, black 25%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 25%, transparent 65%);
  z-index: -1;
}
.contact__form-panel {
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4), 0 0 80px rgba(31, 111, 209, 0.04), 0 0 40px rgba(243, 154, 34, 0.03);
}

/* --- 9. Footer --- */
.site-footer {
  background: linear-gradient(180deg, transparent 0%, rgba(7, 8, 11, 0.6) 100%);
}

/* --- Mobile: slightly reduced but still visible --- */
@media (max-width: 767px) {
  body::before { opacity: 0.02; }
  #produkty::after { opacity: 0.5; }
  #zastosowania::after { display: none; }
  #kontakt::after { display: none; }
}
