/* ==========================================================================
   kamizelkiasekuracyjne.pl - Główny arkusz stylów
   Stylistyka: Dark Marine Luxury, Yachting, Water Sports & Safety
   Kolory: Deep Navy (#061325), Safety Orange (#ff6b00), Cyan (#00d2ff, #38bdf8), White
   ========================================================================== */

:root {
  --bg-primary: #061325;
  --bg-secondary: #0a1c36;
  --bg-card: rgba(10, 28, 54, 0.72);
  --bg-card-hover: rgba(14, 38, 75, 0.88);
  --border-color: rgba(56, 189, 248, 0.2);
  --border-glow: rgba(0, 210, 255, 0.45);
  
  --orange-primary: #ff6b00;
  --orange-hover: #ff8533;
  --orange-glow: rgba(255, 107, 0, 0.4);

  --cyan-primary: #00d2ff;
  --cyan-hover: #38e1ff;
  --cyan-glow: rgba(0, 210, 255, 0.35);
  
  --blue-accent: #0284c7;
  --blue-dark: #032b5f;
  
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-inverse: #061325;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script: 'Caveat', cursive, sans-serif;

  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

/* Reset & Bazowe */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 210, 255, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 100% 40%, rgba(255, 107, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 0% 80%, rgba(2, 132, 199, 0.06) 0%, transparent 60%);
  min-height: 100vh;
}

/* Kontenery */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Typografia wspólna */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.cyan-text {
  color: var(--cyan-primary);
  text-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

.orange-text {
  color: var(--orange-primary);
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.45);
}

/* Przyciski */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-sans);
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  text-transform: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--orange-glow);
}

.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 6px 28px rgba(255, 107, 0, 0.6);
  transform: translateY(-2px);
}

.btn-cyan {
  background: var(--cyan-primary);
  color: var(--text-inverse);
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn-cyan:hover {
  background: var(--cyan-hover);
  box-shadow: 0 6px 28px rgba(0, 210, 255, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(8, 25, 49, 0.85);
  color: var(--text-main);
  border: 1px solid rgba(56, 189, 248, 0.35);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--cyan-primary);
  color: var(--cyan-primary);
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.25);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   Nawigacja / Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 19, 37, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(6, 19, 37, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(56, 189, 248, 0.25);
}

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

.logo-link {
  display: flex;
  align-items: center;
  height: 48px;
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: 290px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-primary);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

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

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: rgba(14, 38, 75, 0.6);
  border: 1px solid rgba(0, 210, 255, 0.4);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.header-badge:hover {
  background: rgba(0, 210, 255, 0.15);
  border-color: var(--cyan-primary);
  box-shadow: 0 0 22px rgba(0, 210, 255, 0.35);
  transform: translateY(-1px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.03);
  transition: transform 12s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 19, 37, 0.85) 0%,
    rgba(6, 19, 37, 0.65) 40%,
    rgba(6, 19, 37, 0.82) 75%,
    rgba(6, 19, 37, 1) 100%
  );
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(56, 189, 248, 0.1) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4.5rem;
}

.hero-text-col {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cyan-primary);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-lead {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 2.4rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-side-quote {
  text-align: right;
  max-width: 320px;
  position: relative;
  padding-right: 1.2rem;
}

.quote-script {
  display: block;
  font-family: var(--font-script);
  font-size: 2.3rem;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  transform: rotate(-3deg);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.quote-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange-primary);
  text-transform: uppercase;
}

/* Dolny pasek piktogramów w Hero */
.hero-features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.6rem 2rem;
  background: rgba(10, 28, 54, 0.65);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-primary);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
}

.hero-feature-item span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e2e8f0;
  text-transform: uppercase;
}

/* ==========================================================================
   Sekcja Wartości ("Domena, która od razu mówi czym się zajmujesz")
   ========================================================================== */
.section-values {
  padding: 7rem 0 5rem;
  position: relative;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan-primary), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.value-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 210, 255, 0.15);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-primary);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
  transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.35);
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ==========================================================================
   Sekcja Branżowa ("Gotowa na Twój biznes")
   ========================================================================== */
.section-industries {
  padding: 5rem 0 6rem;
  position: relative;
}

.section-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  padding-bottom: 1.8rem;
}

.split-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.4;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  border-color: var(--orange-primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 20px rgba(255, 107, 0, 0.2);
}

.industry-img-box {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
}

.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-img {
  transform: scale(1.08);
}

.industry-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.industry-title-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.industry-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-primary);
  flex-shrink: 0;
}

.industry-title-row h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.industry-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ==========================================================================
   Sekcja Oferty / CTA ("kamizelkiasekuracyjne.pl może być Twoja")
   ========================================================================== */
.section-offer {
  padding: 4rem 0 6rem;
  position: relative;
}

.offer-card-wrapper {
  background: linear-gradient(135deg, rgba(10, 28, 54, 0.9) 0%, rgba(6, 19, 37, 0.95) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 210, 255, 0.1);
}

.offer-img-box {
  position: relative;
  min-height: 380px;
}

.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(6, 19, 37, 0.9) 100%);
}

.offer-content {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.offer-compass-badge {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cyan-primary);
  opacity: 0.8;
}

.offer-compass-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

.offer-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.offer-lead {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  max-width: 480px;
}

.offer-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Sekcja Formularza Bezpośredniego ("Napisz bezpośrednio")
   ========================================================================== */
.section-contact {
  padding: 4rem 0 7rem;
  position: relative;
}

.contact-box-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  background: rgba(10, 28, 54, 0.65);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 4rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-info-col h2 {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.contact-info-col p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.contact-email-card {
  background: rgba(6, 19, 37, 0.8);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.08);
}

.contact-email-card span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.contact-email-card a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cyan-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-email-card a:hover {
  color: var(--cyan-hover);
  text-decoration: underline;
}

.contact-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.contact-benefits-list li svg {
  color: var(--cyan-primary);
  flex-shrink: 0;
}

/* Pola formularza */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(6, 19, 37, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--cyan-primary);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
  background: rgba(6, 19, 37, 0.95);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* Price Input Flex & Currency Tag (jak na parasailing.pl) */
.price-input-flex {
  display: flex;
  gap: 0.6rem;
}

.price-input-flex input {
  flex: 1;
}

.currency-tag {
  background: rgba(6, 19, 37, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-sm);
  color: var(--cyan-primary);
  font-weight: 700;
  font-family: var(--font-sans);
  padding: 0 1.2rem;
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
}

.currency-tag:focus {
  border-color: var(--cyan-primary);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.currency-tag option {
  background: #061325;
  color: #ffffff;
}

/* Checkbox zgody RODO */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.form-consent input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--orange-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-consent label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  cursor: pointer;
}

.form-consent a {
  color: var(--cyan-primary);
  text-decoration: underline;
}

.form-consent a:hover {
  color: var(--cyan-hover);
}

/* Komunikaty statusu formularza */
.form-status {
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.5;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* ==========================================================================
   Stopka (Footer)
   ========================================================================== */
.footer {
  background: #030c18;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  padding: 4.5rem 0 2.5rem;
  color: var(--text-muted);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-brand-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange-primary);
}

.footer-contact-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  background: rgba(10, 28, 54, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-pill);
}

.footer-contact-col a:hover {
  border-color: var(--cyan-primary);
  color: var(--cyan-primary);
}

.footer-keywords-col {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-dim);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Modal Formularza Ofertowego (Quick Modal)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 10, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: linear-gradient(135deg, rgba(10, 28, 54, 0.96) 0%, rgba(6, 19, 37, 0.98) 100%);
  border: 1px solid rgba(0, 210, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 210, 255, 0.18);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: var(--transition-smooth);
}

.modal-backdrop.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: #ffffff;
  transform: scale(1.1);
}

/* ==========================================================================
   Modal Potwierdzenia Sukcesu (jak na parasailing.pl)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box-confirm {
  background: linear-gradient(135deg, rgba(10, 28, 54, 0.98) 0%, rgba(6, 19, 37, 0.98) 100%);
  border: 1px solid var(--border-glow);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 210, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: modalPop 0.25s ease-out;
}

@keyframes modalPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-icon-ok {
  width: 68px;
  height: 68px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
}

.modal-box-confirm h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.modal-box-confirm p {
  font-size: 0.98rem;
  color: #cbd5e1;
  margin-bottom: 26px;
  line-height: 1.6;
}

.btn-modal-close {
  background: var(--orange-primary);
  color: #ffffff;
  border: none;
  padding: 12px 36px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px var(--orange-glow);
  transition: var(--transition-smooth);
}

.btn-modal-close:hover {
  background: var(--orange-hover);
  box-shadow: 0 6px 28px rgba(255, 107, 0, 0.6);
  transform: translateY(-2px);
}

/* Toast Powiadomienia */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(6, 19, 37, 0.95);
  border: 1px solid var(--cyan-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 210, 255, 0.25);
  color: #ffffff;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1000;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.toast-notice.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Strona Polityki Prywatności
   ========================================================================== */
.privacy-page {
  padding-top: 130px;
  padding-bottom: 6rem;
}

.privacy-content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.privacy-content-card h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.privacy-content-card h2 {
  font-size: 1.4rem;
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  color: var(--cyan-primary);
}

.privacy-content-card p, .privacy-content-card ul {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.privacy-content-card ul {
  padding-left: 1.5rem;
}

.privacy-content-card li {
  margin-bottom: 0.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan-primary);
  font-weight: 600;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.back-link:hover {
  transform: translateX(-4px);
  color: var(--cyan-hover);
}

/* ==========================================================================
   Responsywność (Media Queries)
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-main-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .hero-side-quote {
    text-align: left;
    padding-right: 0;
  }

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

  .offer-card-wrapper {
    grid-template-columns: 1fr;
  }

  .offer-img-box {
    min-height: 260px;
  }

  .contact-box-grid {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }

  .nav-desktop {
    display: none;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

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

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

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

  .offer-content {
    padding: 2.5rem 1.8rem;
  }

  .offer-compass-badge {
    top: 1.5rem;
    right: 1.5rem;
  }

  .contact-box-grid {
    padding: 2rem 1.5rem;
  }

  .privacy-content-card {
    padding: 2rem 1.5rem;
  }

  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-keywords-col {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
}
