@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #ffffff;
  background-color: #000000;
}

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

/* OGÓLNE */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.section-header p {
  margin: 0;
  color: #d1d5db;
}

/* HEADER / NAV */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  font-size: 0.9rem;
}

.nav a {
  color: #e5e7eb;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.nav a:hover {
  color: #ffffff;
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
}

/* PRZYCISKI — NOWY STYL */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 3rem;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.08s ease;
}

.btn:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-1px);
}

/* warianty — takie same jak bazowy */

.btn-primary,
.btn-secondary,
.btn-outline {
  background-color: transparent !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* HERO */

.hero {
  padding: 5rem 0 4.5rem;
}

.hero-gac {
  background: radial-gradient(circle at top left, #1f2937, #000000);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0 0 0.75rem;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-lead {
  margin: 0 0 1.8rem;
  color: #e5e7eb;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image img {
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

/* ABOUT */

.section-about {
  background-color: #000000;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-text p {
  margin: 0 0 1.1rem;
  color: #e5e7eb;
}

.about-highlight {
  background: radial-gradient(circle at top, #111827, #000000);
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 1.7rem 1.6rem;
}

.about-highlight h3 {
  margin: 0 0 0.9rem;
  font-size: 1.1rem;
}

.about-highlight ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #e5e7eb;
}

.about-highlight li + li {
  margin-top: 0.6rem;
}

/* MODELE */

.section-models {
  background: #000000;
}

.cards-models {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.card-model {
  background: radial-gradient(circle at top left, #111827, #000000);
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
}

.card-body p {
  margin: 0 0 1.3rem;
  color: #e5e7eb;
}

.card-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.spec-list dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.spec-list dd {
  margin: 0.15rem 0 0;
  font-weight: 600;
}

/* SEKCJE SPLIT */

.section-split {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.section-split .split-media,
.section-split .split-content {
  flex: 1;
}

.split-media img {
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.split-content h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
}

.split-content p {
  margin: 0 0 1rem;
  color: #e5e7eb;
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-tech,
.section-service {
  background-color: #000000;
}

.section-test-drive {
  background: radial-gradient(circle at top, #0b1120, #000000);
}

.section-split-reverse {
  flex-direction: row-reverse;
}

/* FEATURES */

.section-features {
  background: #000000;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.feature {
  background: radial-gradient(circle at top left, #111827, #000000);
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 1.6rem 1.5rem 1.7rem;
}

.feature h3 {
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
}

.feature p {
  margin: 0;
  color: #e5e7eb;
}

/* MINI SECTION */

.section-mini {
  background-color: #000000;
  padding-top: 0;
}

.section-mini-inner {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding-top: 3.5rem;
}

.section-mini h2 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
}

.section-mini p {
  margin: 0 0 1rem;
  color: #e5e7eb;
}

.section-mini .mini-model {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* KONTAKT */

.section-contact {
  background: radial-gradient(circle at top, #0b1120, #000000);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-data h2 {
  margin: 0 0 0.75rem;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: #9ca3af;
  margin: 0 0 1.2rem;
}

.contact-data p {
  color: #e5e7eb;
  margin: 0 0 1rem;
}

.contact-data a {
  color: #e5e7eb;
  text-decoration: none;
}

.contact-data a:hover {
  text-decoration: underline;
}

.contact-form-wrapper h2 {
  margin: 0 0 1.5rem;
}

.offer-form {
  background-color: #000000;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 1.7rem 1.6rem 1.9rem;
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: #e5e7eb;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #4b5563;
  background-color: #000000;
  color: #f9fafb;
  font-family: inherit;
  font-size: 0.9rem;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #6b7280;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid #f97316;
  outline-offset: 1px;
  border-color: #f97316;
}

.form-row textarea {
  resize: vertical;
}

.form-row-checkbox {
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
}

.checkbox-label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: #d1d5db;
}

.checkbox-label input {
  margin-top: 0.15rem;
}

.form-actions {
  text-align: right;
}

/* STOPKA */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  background-color: #000000;
  padding: 1.5rem 0 1.7rem;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.85rem;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 960px) {
  .hero-inner,
  .about-grid,
  .cards-models,
  .section-split,
  .contact-layout,
  .features-grid {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }

  .hero-inner {
    gap: 2.2rem;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  .spec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* LOGO */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.logo a {
  display: flex;
  align-items: center;
}

@media (max-width: 720px) {
  .header-inner {
    justify-content: space-between;
  }

  .nav {
    gap: 1rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .offer-form {
    padding: 1.4rem 1.2rem 1.5rem;
  }
}

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

  .section {
    padding: 3.3rem 0;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }
}

/* BANER AION 699 */
.section-aion-banner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: #000000;
}

.aion-banner-inner {}

.aion-banner-img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  display: block;
}