:root {
  --bg: #050816;
  --bg-alt: #070a1c;
  --accent-blue: #00e5ff;
  --accent-pink: #ff00ff;
  --accent-violet: #9b5cff;
  --text-main: #f5f7ff;
  --text-muted: #9aa3c7;
  --card-bg: rgba(10, 14, 40, 0.9);
  --border-glow: rgba(0, 229, 255, 0.25);
  --shadow-neon: 0 0 25px rgba(0, 229, 255, 0.35),
    0 0 40px rgba(255, 0, 255, 0.3);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-fast: 0.2s ease-out;
  --transition: 0.35s ease-out;
  --nav-height: 80px;
}

/* Reset / base */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111536 0, #050816 55%) fixed;
  color: var(--text-main);
  scroll-behavior: smooth;
  padding-top: var(--nav-height);
}

/* Utility */

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* Effects */

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px
  );
  background-size: 100% 3px;
  mix-blend-mode: soft-light;
  opacity: 0.4;
  z-index: -1;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 229, 255, 0.08) 0, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.08) 0, transparent 55%);
  z-index: -2;
}

/* Layout */

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

section {
  padding: 80px 0;
  position: relative;
  /* odstaw dla kotwic, żeby nagłówek nie wjeżdżał pod menu */
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--accent-blue);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 15px;
}

/* Header / nav */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to right,
    rgba(5, 8, 22, 0.98),
    rgba(7, 10, 28, 0.92)
  );
  border-bottom: 1px solid rgba(90, 105, 180, 0.4);
}

.nav-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* === LOGO W HEADERZE === */
/* Zewnętrzny okrąg ma zawsze 42×42 – nie rośnie */
/* Powiększamy tylko grafikę ośmiornicy w środku */

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 55%,
    #000 35%,
    transparent 70%
  );
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 150%;           /* tu sterujesz wielkością ośmiornicy w logo */
  height: auto;
  transform: translateY(4px); /* lekkie opuszczenie – bardziej w centrum */
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.logo-text span:last-child {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  font-size: 14px;
}

.nav-link {
  position: relative;
  padding: 6px 0;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn,
.btn-outline {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(0, 229, 255, 0.6);
  white-space: nowrap;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.btn {
  background: radial-gradient(
    circle at 0 0,
    rgba(0, 229, 255, 0.3),
    rgba(255, 0, 255, 0.6)
  );
  color: #020308;
  box-shadow: var(--shadow-neon);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(154, 163, 199, 0.6);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.35);
}

.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-main);
}

/* Hero */

.hero {
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero-gradient {
  background: linear-gradient(90deg, #00e5ff, #ff00ff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 26px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.35);
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.15),
    rgba(255, 0, 255, 0.08)
  );
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-footnote {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-footnote i {
  color: var(--accent-blue);
}

.hero-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  font-size: 12px;
}

.hero-icon-item {
  min-width: 110px;
}

.hero-icon-number {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

.hero-icon-label {
  color: var(--text-muted);
}

/* Hero visual */

.hero-visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === HERO ORB — idealne koło, tło jak iluminator === */

.hero-orb {
  width: min(340px, 80vw);
  height: min(340px, 80vw);
  border-radius: 50%;
  overflow: hidden; /* koło przycina ośmiornicę, samo nie rośnie */

  background:
    radial-gradient(
      circle at 30% 0,
      rgba(0, 229, 255, 0.32) 0,
      rgba(0, 229, 255, 0) 55%
    ),
    radial-gradient(
      circle at 75% 100%,
      rgba(255, 0, 255, 0.32) 0,
      rgba(255, 0, 255, 0) 60%
    ),
    #050816;

  box-shadow: var(--shadow-neon);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb::after {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.3);
  filter: blur(1px);
  opacity: 0.7;
}

/* === OŚMIORNICA W HERO — powiększamy tylko ją === */

.hero-squid {
  position: relative;
  width: 135%;        /* tu sterujesz wielkością ośmiornicy w HERO */
  max-width: none;
  height: auto;
  transform: translateY(6px); /* lekko w dół – bliżej środka koła */
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.hero-grid {
  position: absolute;
  inset: auto 50% -70px auto;
  transform: translateX(50%);
  width: 220px;
  height: 120px;
  background-image:
    linear-gradient(
      to right,
      rgba(0, 229, 255, 0.7) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(0, 229, 255, 0.7) 1px,
      transparent 1px
    );
  background-size: 16px 16px;
  opacity: 0.12;
}

/* Pudełko "Więcej niż zwykła sala gier" – wyłączone */

.hero-stat {
  display: none;
}

.hero-tag-vertical {
  position: absolute;
  right: 6px;
  top: 48%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.45);
}

/* Zones / strefy */

.zones-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.zone-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, #232a66, #080a20);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 18px 18px 16px;
  font-size: 13px;
  color: var(--text-muted);
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.35);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.6);
  border-color: rgba(0, 229, 255, 0.7);
}

.zone-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-blue);
}

.zone-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
}

.zone-text {
  font-size: 13px;
}

.zone-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  color: var(--text-muted);
}

.zone-meta i {
  margin-right: 4px;
}

.zone-more {
  margin-top: 4px;
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.5);
  background: transparent;
  color: var(--text-main);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.zone-more:hover {
  background: radial-gradient(
    circle at 0 0,
    rgba(0, 229, 255, 0.25),
    rgba(255, 0, 255, 0.2)
  );
  border-color: var(--accent-blue);
  transform: translateY(-1px);
}

/* Steps / how it works */

.how .steps-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  background: radial-gradient(circle at top left, #141a47, #080b21);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.35);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 0 0,
    rgba(0, 229, 255, 0.2),
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.35);
  border-color: rgba(0, 229, 255, 0.7);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-blue);
  margin-bottom: 6px;
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-text {
  font-size: 13px;
  color: var(--text-muted);
}

.safety-box {
  margin-top: 24px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, #1a234d, #080b1f);
  border: 1px solid var(--border-glow);
  padding: 18px;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.35);
}

.safety-box h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

/* Events */

.events-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.event-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #232a66, #080a20);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 16px 16px 14px;
  font-size: 13px;
  color: var(--text-muted);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.35);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
  border-color: rgba(0, 229, 255, 0.7);
}

.event-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-blue);
  margin-bottom: 4px;
}

.event-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.event-list {
  margin-top: 8px;
  list-style: none;
  font-size: 12px;
}

.event-list li::before {
  content: "– ";
}

/* Schools */

.schools-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.schools-card {
  border-radius: var(--radius-xl);
  background: rgba(7, 10, 28, 0.9);
  border: 1px solid rgba(90, 105, 180, 0.6);
  padding: 18px 18px 16px;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.35);
  font-size: 14px;
}

.schools-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.schools-list {
  list-style: none;
  font-size: 13px;
  color: var(--text-muted);
}

.schools-list li::before {
  content: "• ";
  margin-right: 4px;
}

.schools-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ */

.faq-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 20px;
  align-items: flex-start;
}

.faq-item {
  border-radius: 18px;
  background: rgba(7, 10, 28, 0.9);
  border: 1px solid rgba(90, 105, 180, 0.6);
  padding: 10px 12px;
  margin-bottom: 10px;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.faq-item.open {
  border-color: rgba(0, 229, 255, 0.7);
  background: radial-gradient(circle at 0 0, #171f4b, #050816);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  background: none;
  border: none;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height var(--transition),
    opacity var(--transition-fast);
}

.faq-item.open .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-side-box {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, #1a234d, #050816);
  border: 1px solid rgba(0, 229, 255, 0.4);
  padding: 18px 18px 16px;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.35);
  font-size: 14px;
}

/* Contact */

.contact-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: flex-start;
}

.contact-form-wrap {
  border-radius: var(--radius-xl);
  background: rgba(7, 10, 28, 0.9);
  border: 1px solid rgba(90, 105, 180, 0.6);
  padding: 18px 18px 16px;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.35);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-field {
  margin-bottom: 10px;
}

label {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
}

input,
textarea,
select {
  width: 100%;
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(90, 105, 180, 0.7);
  background: rgba(5, 8, 28, 0.9);
  color: var(--text-main);
  font-size: 13px;
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

textarea {
  border-radius: 18px;
  min-height: 90px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(0, 229, 255, 0.8);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.45);
  background: rgba(7, 10, 32, 1);
}

.form-submit {
  margin-top: 8px;
}

.contact-info {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, #171f4b, #050816);
  border: 1px solid rgba(0, 229, 255, 0.4);
  padding: 18px 18px 16px;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.35);
  font-size: 14px;
  color: var(--text-muted);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 13px;
}

.contact-row i {
  color: var(--accent-blue);
}

.contact-note {
  margin-top: 10px;
  font-size: 12px;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(90, 105, 180, 0.5);
  padding: 18px 0 22px;
  background: #050816;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(90, 105, 180, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--accent-blue);
  background: radial-gradient(
    circle at 0 0,
    rgba(0, 229, 255, 0.2),
    rgba(255, 0, 255, 0.2)
  );
  transform: translateY(-1px);
}

/* Modale */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal-dialog {
  position: relative;
  max-width: 420px;
  margin: 80px auto;
  padding: 18px 18px 16px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, #171f4b, #050816);
  border: 1px solid rgba(0, 229, 255, 0.5);
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.7);
  font-size: 14px;
}

.modal-dialog h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.modal-dialog p {
  font-size: 14px;
  color: var(--text-muted);
}

.modal-list {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
  list-style: none;
}

.modal-list li::before {
  content: "• ";
  margin-right: 4px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.6);
  background: rgba(5, 8, 28, 0.95);
  color: var(--text-main);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.modal-close:hover {
  background: radial-gradient(
    circle at 0 0,
    rgba(0, 229, 255, 0.3),
    rgba(255, 0, 255, 0.4)
  );
  border-color: var(--accent-blue);
  transform: translateY(-1px);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner,
  .how .steps-grid,
  .events-grid,
  .schools-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 64px;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 880px) {
  .main-nav ul {
    position: fixed;
    inset: var(--nav-height) 0 auto 0;
    background: rgba(5, 8, 28, 0.98);
    flex-direction: column;
    padding: 16px 18px 20px;
    display: none;
    border-bottom: 1px solid rgba(90, 105, 180, 0.5);
    z-index: 40;
  }

  .main-nav ul.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .zones-grid,
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .zones-grid,
  .events-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .how .steps-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .modal-dialog {
    margin: 60px 16px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 32px;
  }

  .logo-text span:first-child {
    font-size: 16px;
  }

  section {
    padding: 70px 0;
  }
}

/* Ukrywamy pionowy napis obok ośmiornicy w sekcji HERO */
.hero-tag-vertical {
  display: none;
}
/* Centrowanie i opuszczenie ośmiornicy w HERO */
.hero-squid {
  position: relative;
  width: 92%;
  max-width: 290px;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));

  /* 👉 Опускаем осьминога вниз */
  transform: translateY(16px);
}
