/* === 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #232834;
  color: #E3E6EC;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

/* ===== Custom Font Imports ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* ===== Brand Color Variables (with fallback) ===== */
:root {
  --primary: #2D3C55;
  --secondary: #FFFFFF;
  --accent: #F3B33A;
  --dark: #232834;
  --metal-dark: #414759;
  --metal-light: #8c929e;
  --body: #E3E6EC;
  --shadow: rgba(44,48,56,.25);
  --border: #363D4B;
  --testimonial-bg: #fff;
  --testimonial-text: #232834;
}

/* ===== Layout Containers (Flexbox Only) ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* === Typography & Hierarchy === */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.14);
}
@media (max-width: 600px) {
  h1, .hero h1 { font-size: 2rem; }
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  h2 { font-size: 1.375rem; }
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 700;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
}
p, li, span, ul, ol, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--body);
  line-height: 1.7;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  color: var(--metal-light);
}
strong {
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.01em;
}

/* =============== HEADER NAVIGATION =============== */
header {
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(44,48,56,0.14);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 70px;
}
.logo img {
  height: 48px;
  width: auto;
  filter: brightness(1.2) drop-shadow(0 0 8px #20263850);
  transition: filter .18s;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background .17s, color .17s;
}
nav a:hover, nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
nav .cta-primary {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  padding: 10px 22px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-left: 8px;
  transition: background .18s, color .18s, box-shadow .18s;
}
nav .cta-primary:hover, nav .cta-primary:focus {
  background: var(--metal-dark);
  color: var(--accent);
  box-shadow: 0 2px 20px var(--accent), 0 3px 12px var(--shadow);
}

/* Hamburger menu for mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  cursor: pointer;
  z-index: 35;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background .17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--metal-dark);
  color: var(--secondary);
}
@media (max-width: 1000px) {
  nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform .30s cubic-bezier(.67,.13,.31,1.06);
  box-shadow: -2px 0 20px rgba(20,22,28,.33);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.1rem;
  margin: 24px 24px 0 0;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--metal-dark);
  color: var(--secondary);
}
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 48px 40px;
  gap: 22px;
  box-sizing: border-box;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--secondary);
  padding: 10px 0;
  width: 100%;
  background: none;
  border-radius: 0;
  margin: 0;
  transition: color .17s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: none;
}

@media (max-width: 600px) {
  .mobile-nav { padding: 38px 18px; }
  .mobile-menu-close { margin-right: 12px; }
}

/* =============== HERO SECTION =============== */
.hero {
  background: linear-gradient(90deg, #232834 60%, #2D3C55 100%);
  padding-top: 56px;
  padding-bottom: 56px;
  min-height: 430px;
  position: relative;
  z-index: 0;
  box-shadow: 0 3px 40px rgba(44,48,56,0.12);
}
.hero .container, .hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.hero .content-wrapper p {
  font-size: 1.20rem;
  color: #B5BEDD;
  max-width: 530px;
  margin-bottom: 10px;
}
.hero .cta-primary {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .hero { min-height: 280px; padding-top: 24px; padding-bottom: 32px; }
}

/* =============== BUTTONS =============== */
.cta-primary, .cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  padding: 14px 34px;
  cursor: pointer;
  text-align: center;
  margin-top: 10px;
  box-shadow: 0 2px 6px var(--shadow);
  transition: background .20s, color .20s, box-shadow .18s, transform .18s;
  outline: none;
  letter-spacing: 0.01em;
  position: relative;
}
.cta-primary {
  color: var(--primary);
  background: var(--accent);
  text-shadow: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--metal-dark);
  color: var(--accent);
  box-shadow: 0 4px 28px var(--accent), 0 1px 16px var(--shadow);
  transform: translateY(-2px) scale(1.025);
}
.cta-secondary {
  background: none;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px var(--shadow);
  margin-left: 0;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* =============== CARDS & FLEXBOX GRIDS =============== */
.card-container, .card-grid, .feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.card, .service-grid li {
  position: relative;
  margin-bottom: 20px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(44,48,56,.13);
  padding: 34px 28px 24px 28px;
  border: 1.5px solid var(--border);
  transition: transform .15s, box-shadow .16s, border-color .18s;
  min-width: 260px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}
.card:hover, .service-grid li:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 32px var(--accent), 0 2px 16px var(--shadow);
  transform: translateY(-2px) scale(1.015);
}

/* For testimonials and review sections (light background for contrast) */
.testimonial-card {
  color: var(--testimonial-text);
  border-radius: 13px;
  box-shadow: 0 4px 22px rgba(44,48,56,0.10);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  min-width: 250px;
  max-width: 370px;
  margin-bottom: 20px;
}
.testimonial-card .stars {
  color: var(--accent);
  font-size: 1.25em;
  letter-spacing: 3px;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
@media (max-width: 660px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}

/* Service List On Home */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 22px 0;
}
.service-list li {
  background: var(--primary);
  color: var(--secondary);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 10px var(--shadow);
  transition: border-color .18s, box-shadow .16s;
}
.service-list li:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 24px var(--accent), 0 2px 12px var(--shadow);
}
.service-list span {
  color: var(--accent);
  font-weight: 700;
  margin-left: 10px;
}

/* Feature Grid/List */
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0;
}
.feature-grid li, .feature-list li {
  background: var(--metal-dark);
  border-radius: 10px;
  padding: 22px 18px 18px 18px;
  color: var(--secondary);
  box-shadow: 0 1px 10px var(--shadow);
  min-width: 210px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: background .17s, border .17s;
}
.feature-grid li:hover, .feature-list li:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.feature-grid img, .feature-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  filter: grayscale(30%) contrast(1.1);
}

/* Pricing */
.pricing {
  background: var(--dark);
  color: var(--accent);
  display: inline-block;
  padding: 3px 13px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: .95rem;
  margin-top: 12px;
  box-shadow: 0 1px 8px var(--shadow);
}

/* Tip List (Porady) */
.tip-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0;
}
.tip-list li {
  background: var(--primary);
  color: var(--secondary);
  border-radius: 11px;
  padding: 16px 20px;
  box-shadow: 0 1px 10px var(--shadow);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* FAQ style in Porady page */
.tip-list ul {
  margin-top: 11px;
  padding-left: 17px;
}
.tip-list strong {
  color: var(--accent);
  font-weight: 700;
}

/* =============== FLEXBOX LAYOUTS (MANDATORY) =============== */
.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;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* =============== ABOUT/REALIZACJE TEXT SECTIONS =============== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 8px;
  font-size: 1.06rem;
}
.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.project-highlights .text-section {
  flex: 1 1 320px;
  background: var(--metal-dark);
  border-radius: 12px;
  padding: 24px 22px;
  color: var(--secondary);
  box-shadow: 0 1px 10px var(--shadow);
  min-width: 220px;
  margin-bottom: 20px;
}
.project-highlights blockquote {
  margin: 12px 0 2px 0;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  background: transparent;
  font-size: 1.08em;
}
.project-highlights span {
  font-size: 1em;
  color: var(--metal-light);
}

/* =============== FOOTER =============== */
footer {
  background: var(--primary);
  color: var(--metal-light);
  padding: 38px 0 24px 0;
  box-shadow: 0 -2px 22px rgba(44,48,56,0.12);
  border-top: 1.5px solid var(--border);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
}
.footer-menu a {
  color: var(--metal-light);
  transition: color .15s;
}
.footer-menu a:hover {
  color: var(--accent);
}
.contact-info {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: .96rem;
}
.contact-info a {
  color: var(--accent);
  text-decoration: underline;
}
.social-media-links {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 6px;
}
.social-media-links img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.82;
  transition: filter .15s, opacity .13s;
}
.social-media-links a:hover img {
  filter: none;
  opacity: 1;
}
@media (max-width: 880px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
  .social-media-links { margin-top: 12px; }
}

/* =============== MISCELLANEOUS SPACING =============== */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
li {
  margin-bottom: 7px;
}
.section ul, .section ol {
  margin-bottom: 0;
}
.next-steps {
  margin: 16px 0 0 0;
  color: var(--metal-light);
  font-size: 1.08em;
}

/* =============== FORM (CONTACT) =============== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: #222631;
  color: var(--body);
  transition: border-color .17s, box-shadow .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 8px var(--accent);
}
button, [type='submit'] {
  cursor: pointer;
  font-family: inherit;
}

/* =============== COOKIES BANNER =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--secondary);
  z-index: 2100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 20px;
  box-shadow: 0 -5px 32px var(--shadow);
  border-top: 2px solid var(--accent);
  font-size: 1rem;
  animation: cookies-slide-in .53s cubic-bezier(.47,.74,.34,1.15);
}
@keyframes cookies-slide-in {
  from { transform: translateY(150px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner.hidden {
  display: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: 0;
  border-radius: 8px;
  padding: 9px 18px;
  font-weight: 700;
  transition: background .15s, color .15s, box-shadow .14s;
  box-shadow: 0 1px 6px var(--shadow);
}
.cookie-banner .accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .accept:hover { background: var(--metal-dark); color: var(--accent); }
.cookie-banner .reject {
  background: #363D4B;
  color: var(--metal-light);
}
.cookie-banner .reject:hover { background: var(--accent); color: var(--primary); }
.cookie-banner .settings {
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
}
.cookie-banner .settings:hover {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 8px;
    font-size: .95rem;
  }
  .cookie-banner .cookie-btns {
    gap: 10px;
  }
}

/* === Cookie Modal Popup === */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 2200;
  background: rgba(36, 41, 54, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transition: opacity .25s;
}
.cookie-modal .cookie-modal-content {
  background: var(--primary);
  color: var(--secondary);
  border-radius: 16px;
  box-shadow: 0 6px 42px var(--shadow);
  max-width: 410px;
  width: 92vw;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookies-modal-in .4s;
}
@keyframes cookies-modal-in {
  from { transform: translateY(-60px) scale(.96); opacity: 0.5; }
  to { transform: none; opacity: 1; }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: transparent;
  border: 0;
  color: var(--accent);
  font-size: 1.7rem;
  cursor: pointer;
}
.cookie-modal h3 {
  color: var(--accent);
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 5px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--metal-dark);
  border-radius: 7px;
  padding: 13px 11px;
}
.cookie-category label {
  flex: 1;
  color: var(--secondary);
}
.cookie-category input[type='checkbox'] {
  width: 23px;
  height: 23px;
  accent-color: var(--accent);
}
/* Essential always enabled */
.cookie-category input[disabled] {
  opacity: 0.65;
  pointer-events: none;
}

.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 18px;
}
.cookie-modal .cookie-modal-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: 0;
  border-radius: 8px;
  padding: 9px 18px;
  font-weight: 700;
  box-shadow: 0 1px 6px var(--shadow);
  transition: background .15s, color .15s;
}
.cookie-modal .cookie-modal-btns .accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal .cookie-modal-btns .save {
  background: #363D4B;
  color: var(--metal-light);
}
.cookie-modal .cookie-modal-btns .save:hover {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal .cookie-modal-btns .reject {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-modal .cookie-modal-btns .reject:hover {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 480px) {
  .cookie-modal .cookie-modal-content { padding: 18px 6vw; }
  .cookie-modal .cookie-modal-btns { flex-direction: column; gap: 6px; }
  .cookie-modal .cookie-modal-close { right: 9px; top: 12px; }
}

/* =============== Animations & Hover Effects =============== */
.card, .service-grid li, .feature-grid li, .testimonial-card, .faq-card, .tip-list li, .project-highlights .text-section {
  transition: box-shadow .19s, transform .15s, border-color .15s, background .13s, color .13s;
}
button, .cta-primary, .cta-secondary, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .16s, color .16s, box-shadow .15s, transform .13s;
}

/* =============== SCROLLBAR & SELECTION =============== */
::-webkit-scrollbar {
  width: 9px;
  background: var(--metal-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 6px;
  border: 2px solid var(--metal-dark);
}
::selection {
  background: var(--accent);
  color: var(--primary);
}

/* =============== ACCESSIBILITY IMPROVEMENTS =============== */
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
}

/* ===== Responsive utilities ===== */
@media (max-width: 1100px) {
  .card, .service-grid li, .feature-grid li {
    min-width: 220px;
    flex: 1 1 260px;
  }
}
@media (max-width: 920px) {
  .card-container, .card-grid, .feature-grid, .service-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card, .service-grid li, .feature-grid li {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 24px 7px;
    margin-bottom: 36px;
  }
}

/* ============ VISUALLY HIDE (for JS etc.) ============ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
