/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #05060a;
  color: #e4e4e4;
  line-height: 1.6;
}

/* Kolory */
:root {
  --bg-main: #05060a;
  --bg-section: #0c0f18;
  --accent: #1e90ff;     /* electric blue [web:26] */
  --accent-soft: #64c2ec; /* jasny niebieski [web:23] */
  --text-muted: #9aa0b5;
}

/* Layout */
.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

/* Nawigacja wspólna */
header {
  background: radial-gradient(circle at top, #101528 0, #05060a 60%);
  border-bottom: 1px solid #151825;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Logo po lewej */
.logo img {
  height: 60px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 60px;
}

.navbar img {
  height: 55px;
}

.navbar .brand-title {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Menu bliżej prawej */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-left: auto;   /* wypycha menu w prawo */
  margin-right: 40px;  /* odstęp od sociali */
}

.nav-links a {
  color: #e4e4e4;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Social media przy samej prawej krawędzi */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  height: 28px;
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.15);
}

/* Hero */
.hero {
  padding: 60px 16px 50px;
  background: radial-gradient(circle at top, #11172f 0, #05060a 55%);
  border-bottom: 1px solid #151825;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 10px 22px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #05060a;
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: #2a3148;
  color: #e4e4e4;
}

.btn-secondary:hover {
  background: #151825;
}

/* Hero grafika placeholder */
.hero-art {
  border-radius: 18px;
  border: 1px solid #1b2138;
  background: radial-gradient(circle at top, #1b2138 0, #05060a 65%);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

/* Sekcje */
section {
  background: var(--bg-section);
  margin: 24px 16px 0;
  border-radius: 18px;
  border: 1px solid #151825;
}

section .section-inner {
  padding: 26px 24px 28px;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

section p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* Kafelki marek / usług */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.card {
  background: #101525;
  border-radius: 12px;
  padding: 16px 14px 18px;
  border: 1px solid #1d2236;
}

.card h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.tag {
  display: inline-block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9aa0b5;
  margin-bottom: 6px;
}

/* Kontakt */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 22px;
  align-items: start;
}

.contact-list p {
  margin-bottom: 6px;
}

.contact-list a {
  color: var(--accent-soft);
  text-decoration: none;
}

form {
  display: grid;
  gap: 10px;
}

label {
  font-size: 0.85rem;
  color: #c1c5d5;
}

input,
textarea {
  background: #05060a;
  border: 1px solid #252a3d;
  border-radius: 8px;
  padding: 8px 10px;
  color: #e4e4e4;
  font: inherit;
}

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

button[type="submit"] {
  justify-self: flex-start;
}

/* Stopka */
footer {
  margin-top: 28px;
  padding: 18px 16px 26px;
  border-top: 1px solid #151825;
  background: #05060a;
}

footer {
  display: flex;
  justify-content: center; 
  align-items: center;    
}

footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  color: #7c8296;
}

footer a {
  color: #9aa0b5;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none; 
  }

  .hero-inner,
  .two-cols,
  .grid-3,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  section {
    margin-inline: 10px;
  }

  .hero {
    padding-inline: 10px;
  }
}