/* --- CSS RESET & NORMALIZE --- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F7F7F8;
  color: #1C2938;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* -- BRAND COLORS (CSS Custom Properties w/ fallback for wide support) -- */
:root {
  --primary: #1C2938;
  --secondary: #F7F7F8;
  --accent: #DF4700;
  --accent-hover: #EB5C28;
  --white: #FFFFFF;
  --black: #15181C;
  --text: #1C2938;
  --grey1: #E6E8EC;
  --grey2: #CED3DB;
  --shadow: 0 4px 24px 0 rgba(28, 41, 56, 0.07);
  --radius-lg: 20px;
  --radius: 12px;
  --radius-sm: 7px;
}

/* -- FONTS -- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 32px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 28px;
  line-height: 1.17;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
p, ul li, ol li, table td, table th {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text);
}
p {
  margin-bottom: 18px;
}
strong, b {
  font-weight: 700;
  color: var(--primary);
}

/* -- CONTAINER -- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* -- HEADER -- */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 30;
  position: sticky;
  top: 0;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 80px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
header .cta.primary {
  margin-left: 16px;
}
header img[alt="Vivora Pulse"] {
  height: 46px;
  width: auto;
  margin-right: 16px;
}

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 120;
  background: var(--accent);
  color: #FFF;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: var(--shadow);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--accent-hover);
  outline: none;
}

/* -- MAIN SECTION SPACING -- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}

.content-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: none;
}

.text-section {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 32px;
  margin-bottom: 24px;
}

.text-section h1, .text-section h2 {
  margin-top: 0;
}

/* --- HERO SECTION --- */
.section-hero {
  margin-bottom: 60px;
  padding: 0 0 40px 0;
  background: var(--primary);
  color: var(--white);
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.section-hero .container {
  min-height: 320px;
  justify-content: center;
}
.section-hero .content-wrapper {
  color: var(--white);
}
.section-hero h1, .section-hero h2, .section-hero p {
  color: var(--white);
}
.section-hero h1 {
  font-size: 3rem;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: -1.5px;
}
.section-hero p {
  font-size: 1.25rem;
  opacity: .94;
  margin-bottom: 28px;
  font-weight: 600;
}
.section-hero .cta.primary {
  background: var(--accent);
  color: var(--white);
}

/* --- FLEX LAYOUT PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 24px;
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--grey1);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px 0 rgba(28,41,56,0.06);
  margin-bottom: 20px;
  font-size: 1.08rem;
  color: var(--text);
  flex-direction: column;
  transition: box-shadow 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 28px 0 rgba(223,71,0,0.11);
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: var(--accent);
  font-size: 0.97rem;
  font-weight: 700;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.rating-overview {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

/* --- LIST STYLES --- */
ul {
  margin-bottom: 18px;
  padding-left: 0;
}
ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
}
ul li img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 8px;
  flex-shrink: 0;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 1px 6px 0 rgba(28,41,56,0.08);
}

footer .footer-contact ul li img {
  background: none;
  box-shadow: none;
  width: 23px;
  height: 23px;
}

/* --- SERVICE TILE --- */
.service-tile {
  background: var(--grey1);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 10px 0 rgba(28,41,56,0.07);
  padding: 28px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-tile h2 {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 1.48rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.quality-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.quality-guarantee img {
  width: 32px;
  height: 32px;
}

/* --- PAGE TABLE (CENNIK) --- */
table {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(28,41,56,.08);
}
table th {
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 16px 12px;
}
table td {
  font-size: 1rem;
  padding: 14px 12px;
  border-bottom: 1px solid var(--grey1);
}
table tr:last-child td {
  border-bottom: none;
}

/* --- CTA BUTTONS --- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.17rem;
  padding: 16px 34px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px 0 rgba(223,71,0,0.09);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.15s, color 0.16s, transform 0.14s, box-shadow 0.14s;
  margin-top: 5px;
  margin-bottom: 8px;
  outline: none;
}
.cta.primary {
  background: var(--accent);
  color: var(--white);
}
.cta:hover, .cta:focus {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 22px 0 rgba(223,71,0,0.17);
}

/* --- CONTACT SHORT --- */
.contact-short ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.contact-short ul li {
  background: var(--grey1);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-weight: 600;
  align-items: center;
}
.contact-short ul li img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 -2px 12px 0 rgba(28,41,56,0.08);
  padding: 30px 0 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 170px;
}
.footer-brand img {
  width: 54px;
  height: 54px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 170px;
}
.footer-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1rem;
  opacity: 0.95;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
  padding: 3px 0;
}
.footer-nav a:hover {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.footer-contact {
  min-width: 210px;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact ul li {
  color: var(--white);
  font-size: 0.95rem;
  opacity: .98;
  gap: 7px;
  font-weight: 500;
  align-items: center;
}
footer p {
  font-size: 0.92rem;
  color: #CAD1DE;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(28,41,56,0.97);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.7,0.1,0.9,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  border: none;
  margin: 28px 28px 0 0;
  align-self: flex-end;
  cursor: pointer;
  outline: none;
  z-index: 1101;
  transition: color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 68px 0 0 54px;
}
.mobile-nav a {
  color: var(--white);
  text-transform: uppercase;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.07);
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background 0.13s, color 0.14s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--white);
}
.mobile-menu {
  overflow-y: auto;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 -2px 24px 0 rgba(28,41,56,0.18);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2000;
  padding: 20px 12px 22px 12px;
  gap: 30px;
  flex-direction: row;
  animation: cookieBannerIn 0.43s cubic-bezier(0.45,0.6,0.4,1) 0s 1;
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--white);
  margin-right: 14px;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(28,41,56,0.09);
  margin-right: 3px;
  margin-top: 0;
  margin-bottom: 0;
  transition: background 0.17s, color 0.16s, box-shadow 0.14s;
}
.cookie-banner button.accept {
  background: var(--accent);
  color: var(--white);
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: var(--accent-hover);
}
.cookie-banner button.reject {
  background: var(--grey1);
  color: var(--primary);
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: var(--accent-hover);
  color: var(--white);
}
.cookie-settings-btn {
  background: transparent;
  color: var(--white);
  text-decoration: underline;
  padding: 0 10px;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  color: var(--accent);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,41,56,0.77);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: fadeInModal 0.32s;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius-lg);
  min-width: 330px;
  max-width: 98vw;
  box-shadow: 0 8px 32px 0 rgba(28,41,56,0.23);
  padding: 36px 30px 30px 30px;
  z-index: 2101;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popInModal 0.29s cubic-bezier(0.67,0.2,0.36,1.11);
}
@keyframes popInModal {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 10px;
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.59rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 13px;
  font-size: 1rem;
}
.cookie-toggle {
  margin-left: auto;
  appearance: none;
  width: 42px;
  height: 22px;
  background: var(--grey2);
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-toggle:checked {
  background: var(--accent);
}
.cookie-toggle::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.19s;
}
.cookie-toggle:checked::before {
  transform: translateX(20px);
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  align-items: center;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 22px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-actions .accept {
  background: var(--accent);
  color: var(--white);
}
.cookie-modal-actions .reject {
  background: var(--grey1);
  color: var(--primary);
}
.cookie-modal-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.44rem;
  background: transparent;
  color: var(--primary);
  border: none;
  cursor: pointer;
  z-index: 2102;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--accent);
}

/* --- MEDIA QUERIES: RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .container {
    max-width: 970px;
  }
  .footer-brand, .footer-contact, .footer-nav {
    min-width: 140px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 760px;
    padding-left: 14px;
    padding-right: 14px;
  }
  header .container {
    min-height: 66px;
    gap: 18px;
  }
  .footer-brand, .footer-contact, .footer-nav {
    min-width: 90px;
  }
  .text-section {
    padding: 28px 10px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 99vw;
    padding: 0 8px;
  }
  .text-section, .section-hero .content-wrapper, .content-wrapper {
    padding: 18px 6px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
  }
  section, .section {
    margin-bottom: 30px;
    padding: 28px 0 22px 0;
  }
  h1 { font-size: 1.62rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
  .section-hero {
    min-height: unset;
    padding: 18px 0;
  }
  .section-hero .container {
    min-height: unset;
  }
  .section-hero h1 {
    font-size: 1.44rem;
    margin-bottom: 10px;
  }
  .section-hero p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  header nav {
    display: none !important;
  }
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .card-container, .content-grid, .feature-list {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .card {
    padding: 16px 10px;
    gap: 8px;
    font-size: 0.96rem;
  }
  .service-tile, .quality-guarantee {
    padding: 13px 7px;
    border-radius: var(--radius-sm);
  }
  .footer-brand, .footer-contact, .footer-nav {
    min-width: unset;
  }
  footer .container {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 8px;
    padding-right: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
    padding: 14px 6px 16px 6px;
  }
  .mobile-menu {
    padding-top: 0;
  }
  .mobile-nav {
    padding: 60px 0 24px 20px;
    gap: 17px;
  }
}
@media (max-width: 520px) {
  .container { padding: 0 2px; }
  .footer-brand img { width: 43px; height: 43px; }
  .cookie-modal {
    min-width: 94vw;
    padding: 20px 5vw 16px 5vw;
  }
  .cookie-modal h2 {
    font-size: 1.18rem;
  }
}

/* --- UTILITY CLASSES (SPACINGS, VISUAL HIERARCHY, HELPER) --- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center !important; }
.w-100 { width: 100%; }
.d-flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }

/* --- FOCUS STATES & ACCESSIBILITY --- */
a:focus, button:focus, .cta:focus, .cookie-modal-close:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- ANIMATIONS & TRANSITIONS --- */
.cta, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.15s;
}

/* --- SCROLLBAR (MODERN BOLD) --- */
::-webkit-scrollbar {
  width: 9px;
  background: var(--grey1);
  border-radius: 11px;
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

/* --- BRAND GEOMETRIC DECORATIVE SHAPES (INDICATIVE, non-overlapping) --- */
/* Optional decorative accents to support "modern_bold" geometric style, not critical for layout */

/* --- END OF CSS FILE --- */
