/* ------------------ CSS RESET & NORMALIZE ------------------ */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  background: #fff;
  color: #141416;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button { cursor: pointer; }

/* ------------------ COLORS & BRAND ------------------ */
:root {
  --primary: #285078;
  --secondary: #63B3ED;
  --accent: #F7FAFC;
  --black: #141416;
  --white: #fff;
  --gray-800: #1a1a1a;
  --gray-700: #232323;
  --gray-600: #36383e;
  --gray-400: #5a5a5a;
  --gray-200: #e4e4e4;
  --gray-100: #f5f7fa;
}

/* ------------------ TYPOGRAPHY ------------------ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  color: var(--black);
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  letter-spacing: -0.01em;
  font-weight: 700;
}
h1 { font-size: 2.6rem; line-height: 1.15; margin-bottom: 28px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 22px; }
h3 { font-size: 1.28rem; line-height: 1.22; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.1rem; }
}

p, ul, ol, table, .faq-item { margin-bottom: 16px; color: var(--gray-600); font-size: 1rem; }
strong { font-weight: bold; color: var(--black); }

/* ------------------ GLOBAL SPACING ------------------ */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 10px;
  }
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* ------------------ HEADER ------------------ */
header {
  background: var(--white);
  border-bottom: 1.5px solid var(--gray-100);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 60;
}
header .container {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  position: relative;
}
.logo { display: flex; align-items: center; height: 42px; margin-right: 24px; }
.logo img { height: 38px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
  margin-left: 16px;
}
.main-nav a {
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--gray-600);
  font-size: 1rem;
  font-weight: 500;
  padding: 2px 0 2px 0;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--primary);
}
.cta-btn {
  padding: 12px 30px;
  background: var(--black);
  color: var(--white);
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 14px rgba(40, 80, 120, 0.10);
  border: 2px solid var(--black);
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  margin-left: 28px;
  letter-spacing: 0.01em;
  outline: none;
}
.cta-btn.secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--gray-600);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(40,80,120,.14);
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}

.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.7rem;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: background 0.18s, color 0.18s;
  z-index: 101;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--black);
}

@media (max-width: 991px) {
  .main-nav,.cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ---- Mobile slide menu ---- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(20, 20, 22, 0.96);
  transform: translateX(-110%);
  z-index: 102;
  transition: transform 0.34s cubic-bezier(.7,.3,.3,1);
  padding-top: 0;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 28px;
  margin-left: 26px;
  background: transparent;
  color: var(--white);
  font-size: 2.15rem;
  align-self: flex-start;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
  margin-left: 28px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  padding: 12px 0;
  border-radius: 8px;
  width: max-content;
  box-sizing: border-box;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--primary);
  color: var(--white);
  outline: none;
}

/* ------------------ HERO/KICKER ------------------ */
.hero {
  background: var(--white);
  min-height: 360px;
  padding: 64px 0 46px 0;
  border-bottom: 1.5px solid var(--gray-100);
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}
.hero h1, .hero h2 {
  color: var(--black);
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.09rem;
  color: var(--gray-600);
  max-width: 670px;
}
.hero .cta-btn {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .hero {
    padding: 38px 0 28px 0;
    min-height: 180px;
  }
  .hero .container { gap: 22px; }
}

/* ------------------ FEATURES FLEX ------------------ */
.features {
  background: var(--accent);
  border-bottom: 1.5px solid var(--gray-100);
}
.features .content-wrapper { width: 100%; }
.features h2 {
  color: var(--black);
  text-align: left;
  margin-bottom: 22px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 10px;
}
.features ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 210px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(40,80,120,.03);
  padding: 28px 22px;
  min-width: 202px;
  min-height: 220px;
  gap: 15px;
  transition: box-shadow 0.2s, border 0.2s;
  border: 1.5px solid var(--gray-200);
  margin-bottom: 20px;
}
.features ul li:hover,
.features ul li:focus-within {
  box-shadow: 0 4px 28px rgba(40,80,120,.08);
  border-color: var(--primary);
}
.features h3 {
  margin-top: 8px;
  font-size: 1.11rem;
}
.features img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  filter: grayscale(0.75);
}
.features p {
  color: var(--gray-400);
  font-size: 0.99rem;
}

@media (max-width: 900px) {
  .features ul { flex-direction: column; }
}

/* ------------------ SERVICE CARDS & OFFER ------------------ */
.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.services .service-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(40,80,120,.04);
  border: 1.5px solid var(--gray-200);
  padding: 26px 18px;
  margin-bottom: 20px;
  min-width: 210px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.18s, border 0.18s;
}
.services .service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(40,80,120,.10);
  z-index: 3;
}
.services .service-card h3 {
  font-size: 1.14rem;
  margin-bottom: 10px;
}
.services .service-card p { color: var(--gray-600); margin-bottom: 13px; }
.price { color: var(--primary); font-weight: 700; font-size: 1.05rem; }

@media (max-width: 900px) {
  .services .service-cards { flex-direction: column; gap: 20px; }
}

.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.services ul > li {
  flex: 1 1 280px;
  min-width: 220px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 2px 14px rgba(20,20,22,.02);
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid var(--gray-200);
  gap: 13px;
  transition: box-shadow 0.18s, border 0.18s;
}
.services ul > li:hover { border-color: var(--primary); box-shadow: 0 4px 14px rgba(40,80,120,.09); }
.services ul ul {
  gap: 12px;
  margin-top: 10px;
}
.services ul ul li {
  background: none;
  color: var(--gray-400);
  padding: 0;
  border: none;
  font-size: 0.97rem;
  box-shadow: none;
  margin-bottom: 2px;
}

@media (max-width:900px) { .services ul { flex-direction: column; gap: 18px; } }

/* ------------------ CASE STUDIES (WDROZENIA) ------------------ */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  width: 100%;
}
.case-study {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(40,80,120,.03);
  border: 1.5px solid var(--gray-200);
  padding: 24px 18px;
  margin-bottom: 20px;
  flex: 1 1 310px;
  min-width: 200px;
  transition: box-shadow 0.18s, border 0.18s;
}
.case-study:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(40,80,120,.10);
}

@media (max-width: 900px) {
  .case-study-list { flex-direction: column; gap: 18px; }
}

/* ------------------ BLOG LIST ------------------ */
.blog-list .post-preview {
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(40,80,120,.04);
  padding: 20px 18px 18px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
  border-left: 5px solid var(--gray-600);
}
.blog-list .post-preview h3 {
  margin-bottom: 9px;
  color: var(--black);
  font-size: 1.15rem;
}
.blog-list .post-preview a {
  color: var(--primary);
  font-weight: 500;
  display: inline-block;
  border-bottom: 1.5px solid var(--gray-200);
  transition: border 0.16s, color 0.16s;
  padding-bottom: 2px;
  margin-top: 9px;
}
.blog-list .post-preview a:hover {
  color: var(--black);
  border-bottom-color: var(--primary);
}

/* ------------------ NEWSLETTER ------------------ */
.newsletter {
  background: var(--gray-100);
  border-radius: 16px;
  margin-top: 38px;
}

/* ------------------ TESTIMONIALS ------------------ */
.testimonials {
  background: var(--white);
}
.testimonials .content-wrapper > h2 {
  margin-bottom: 32px;
  color: var(--black);
  text-align: left;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--accent);
  color: var(--black);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(40,80,120,.05);
  padding: 20px 22px 18px 22px;
  margin-bottom: 20px;
  border: 1.5px solid var(--gray-200);
  max-width: 700px;
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(40,80,120,.10);
}
.testimonial-card p {
  color: var(--black);
  font-size: 1.04rem;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--gray-400);
  font-size: 0.98rem;
  margin-top: 6px;
}

/* ------------------ PRICING ------------------ */
.pricing {
  background: var(--accent);
  border-radius: 16px;
}
.price-table, .features-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 10px;
}
.price-table th, .features-compare-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 14px 10px;
  border-bottom: 2px solid var(--gray-200);
  text-align: left;
}
.price-table td, .features-compare-table td {
  font-size: 1rem;
  color: var(--gray-600);
  padding: 14px 10px;
  border-bottom: 1.5px solid var(--gray-200);
}
.price-table tr:last-child td, .features-compare-table tr:last-child td {
  border-bottom: none;
}
.features-compare-table td {
  text-align: center;
}

@media (max-width: 768px) {
  .price-table,.features-compare-table {
    font-size: 0.95rem;
    display: block;
    overflow-x: auto;
  }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 7px;
  padding: 12px 16px;
  color: var(--gray-600);
  font-size: 1rem;
}

/* ------------------ CTA SECTION ------------------ */
.cta {
  background: var(--primary);
  color: var(--white);
  border-radius: 18px;
  margin: 48px 0 34px 0;
}
.cta .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 110px;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.cta h2 {
  margin-bottom: 4px;
  color: var(--white);
  text-align: center;
}
.cta p { color: var(--accent); font-size:1.07rem; text-align: center; }
.cta .cta-btn {background: var(--white); color: var(--primary); border: 2px solid var(--white); }
.cta .cta-btn:hover, .cta .cta-btn:focus { background: var(--secondary); color: var(--black); border:2px solid var(--secondary); }

@media (max-width: 900px) {
  .cta .container {padding: 0 8px;}
}

/* ------------------ ABOUT/TEAM/TEXT-IMAGE ------------------ */
.text-section {
  margin: 0 0 30px 0;
}
.text-section ul {
  list-style: disc inside;
  margin: 8px 0 12px 18px;
}
.text-section ul li { margin-bottom: 4px; }

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; }
}

/* ------------------ LEGAL AND SIMPLE SECTIONS ------------------ */
.legal { background: var(--white); }
.legal .content-wrapper { max-width: 900px; margin: 0 auto; }
.legal h1, .legal h2 { color: var(--black); }
.legal .text-section {
  background: var(--gray-100);
  border-radius: 9px;
  padding: 24px 18px 10px 18px;
  margin-bottom: 32px;
  color: var(--gray-400);
}
.legal ul { margin-left: 17px; margin-bottom: 12px; }
.legal ul li { margin-bottom: 7px; }

/* ------------------ FOOTER ------------------ */
footer {
  background: var(--gray-800);
  color: var(--white);
  border-top: 1.5px solid var(--gray-700);
  font-size: 1rem;
  padding: 42px 0 12px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo {
  margin-right: 38px;
}
.footer-logo img { height: 40px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 180px;
}
.footer-nav a {
  color: var(--gray-200);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.footer-contact { color: var(--gray-400); font-size: 0.98rem; margin-right: auto; }
.footer-contact a { color: var(--accent); border-bottom: 1px dotted var(--secondary);}
.footer-contact a:hover { color: var(--white); }
.footer-copy { color: var(--gray-200); font-size: 0.93rem; margin-top: 24px; width: 100%; text-align: right; letter-spacing: 0.04em; }
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-copy { text-align: left; margin-top: 12px; }
}

/* ------------------ COOKIE CONSENT BANNER ------------------ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--gray-700);
  color: var(--white);
  padding: 22px 32px 22px 32px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 22px rgba(20,20,22,.26);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 96vw;
  min-width: 260px;
  animation: cookieIn .7s cubic-bezier(.7,.3,.3,1);
}
@keyframes cookieIn {
  from { transform: translateX(-50%) translateY(80px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--white);
  font-size: 0.99rem;
  margin-bottom: 16px;
}
.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 7px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  margin-right: 4px;
  transition: background .19s, color .19s, border .19s;
  font-size: 1rem;
  margin-bottom: 2px;
}
.cookie-btn.secondary { background: var(--white); color: var(--primary); border:2px solid var(--primary);}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.cookie-btn.reject {
  background: var(--gray-400);
  color: var(--white);
  border:2px solid var(--gray-400);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--black); color: var(--white); border-color: var(--black);
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 10000;
  background: var(--white);
  color: var(--black);
  border-radius: 14px;
  box-shadow: 0 8px 60px rgba(40,80,120,0.19);
  min-width: 320px;
  max-width: 92vw;
  padding: 36px 24px 32px 24px;
  opacity: 1;
  transition: opacity 0.3s;
  animation: fadeInModal .4s cubic-bezier(.7,.3,.3,1);
}
@keyframes fadeInModal {
  from {transform: translate(-50%,-50%) scale(0.82); opacity: 0;}
  to {transform: translate(-50%,-50%) scale(1); opacity: 1;}
}
.cookie-modal h2 { margin-bottom: 20px; font-size:1.23rem; color:var(--primary); }
.cookie-modal ul {
  margin-bottom: 19px;
  padding-left: 15px;
  display: flex; flex-direction: column; gap: 12px;
}
.cookie-modal li {
  font-size: 1rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: flex-start;
}
.cookie-modal label {
  font-weight: 500;
  color: var(--black);
}
.cookie-modal input[type=checkbox] { margin-right:7px; accent-color: var(--primary); }
.cookie-modal .cookie-modal-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
}
.cookie-modal .close-modal {
  background: none;
  color: var(--gray-400);
  position: absolute;
  top: 15px; right: 18px;
  font-size: 1.4rem;
  border:none;
  cursor:pointer;
}
.cookie-modal .close-modal:hover { color: var(--black); }

@media (max-width: 600px) {
  .cookie-banner { padding: 18px 6vw; }
  .cookie-modal { padding: 18px 5vw 18px 5vw; min-width: 0;}
}

/* ------------------ FLEXBOXS for LAYOUTS ------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------------ RESPONSIVE ----------- */
@media (max-width: 768px) {
  .container { padding: 0 7vw; }
  .footer-logo img, .logo img { height: 34px; }
  .cta { margin:28px 0 18px 0; }
  .content-wrapper, .legal .content-wrapper {
    padding: 0;
  }
  .case-study-list,.card-container,.services .service-cards { gap: 12px; }
}
@media (max-width: 500px) {
  .footer-logo img, .logo img { height: 27px; }
  .container { max-width: 98vw; padding: 0 3vw; }
  .hero { padding: 24px 0; }
}

/* ------------------ MICRO-INTERACTIONS & TRANSITIONS ------------------ */
a, button, .cta-btn, .main-nav a, .footer-nav a, .post-preview a, .mobile-nav a {
  transition: color 0.17s, background 0.19s, border 0.18s, box-shadow 0.20s;
}
input, select, textarea {
  transition: border 0.17s, box-shadow 0.16s;
}
.card, .service-card, .features ul li, .testimonial-card, .case-study {
  transition: box-shadow 0.18s, border 0.18s, background 0.17s;
}

/* ------------------ ACCESSIBILITY / FOCUS ------------------ */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible, .mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ------------------ UTILITY ------------------ */
.hide { display: none !important; }

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