/* =====================================================
   PHANTOM VISTA — INDUSTRIAL MODERN FLEXBOX DESIGN SYSTEM
   =====================================================
   Brand Colors: #1A232E (primary dark), #47B1A1 (teal), #F6F8F9 (light), #232C38 (midnight black)
   Fonts: Montserrat (display), Open Sans (body)
   All layouts: FLEXBOX ONLY (NO grid/columns)
   Industrial Modern Style: urban, metallic, dark, minimal
   ----------------------------------------------------- */

/* ---------------------------
   0. CSS RESET & NORMALIZE
   -------------------------*/
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #181b20;
  color: #F6F8F9;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: .01em;
  transition: background 0.2s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #47B1A1;
  transition: color 0.2s;
}
a:focus-visible {
  outline: 2px solid #47B1A1;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #F6F8F9;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
strong, b { font-weight: 700; }

@media (max-width: 480px) {
  h1 {font-size: 1.6rem;}
  h2 {font-size: 1.3rem;}
  h3 {font-size: 1.05rem;}
}

/* ----------------------------
   1. SHARED LAYOUT & CONTAINERS
   ------------------------------*/
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(26,35,46,0.98);
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(26,35,46,0.12), 0 1.5px 0 0 #303C47 inset;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* -----------------------------------------
   2. TYPOGRAPHY & INDUSTRIAL URBAN DETAILS
   ------------------------------------------*/
body, .text-section, p, li, span {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #E5ECEB;
}
.section h1, .section h2, .section h3, .hero h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.subheadline {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #47B1A1;
  margin-bottom: 8px;
  letter-spacing: .5px;
}

hr {
  border: none;
  height: 1px;
  background: #2D3841;
  margin-top: 32px;
  margin-bottom: 32px;
}

/* ----------------------------------------------
   3. HEADER & NAVIGATION (with Flexbox patterns)
   -----------------------------------------------*/
header {
  width: 100%;
  background: #1A232E;
  box-shadow: 0 2px 20px 0 rgba(18,23,35,0.10);
  border-bottom: 1.5px solid #232C38;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
.logo-link img {
  height: 42px;
  width: auto;
  filter: grayscale(15%) contrast(1.1);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #E5ECEB;
  letter-spacing: .5px;
  padding: 6px 0 2px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #47B1A1;
  border-bottom: 2.5px solid #47B1A1;
}
.cta-btn {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #232C38 0%, #1A232E 95%);
  color: #F6F8F9;
  border-radius: 26px;
  box-shadow: 0 1.5px 12px 0 rgba(26,35,46,0.12);
  padding: 13px 38px;
  font-weight: 800;
  font-size: 1.01rem;
  letter-spacing: 1.2px;
  border: none;
  cursor: pointer;
  transition: background 0.23s, color 0.18s, box-shadow 0.2s;
  margin-left: 14px;
  text-transform: uppercase;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #47B1A1;
  color: #1A232E;
  box-shadow: 0 3px 24px 0 rgba(71,177,161,.16);
}
.mobile-menu-toggle {
  display: none;
}

/* MOBILE HEADER/NAV */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    background: #232C38;
    color: #47B1A1;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 52;
  }
  .mobile-menu-toggle:focus,
  .mobile-menu-toggle:hover {
    background: #47B1A1;
    color: #1A232E;
  }
}

/* ---------------------
   4. MOBILE MENU DESIGN
   ---------------------*/
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1002;
  inset: 0;
  background: rgba(26,35,46,0.99);
  box-shadow: 0 4px 36px 0 rgba(26,35,46,0.25);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.85,.05,.44,1.38);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 42px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: slideMobileMenuIn 0.36s cubic-bezier(.23,1.05,.47,1.03);
}
@keyframes slideMobileMenuIn {
  0% {transform: translateX(100%); opacity: 0;}
  85% {opacity: 1;}
  100% {transform: translateX(0); opacity: 1;}
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #47B1A1;
  font-size: 2.4rem;
  margin-left: auto;
  margin-bottom: 34px;
  cursor: pointer;
  padding: 0 24px;
  transition: color .18s;
  align-self: flex-end;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #F6F8F9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  color: #F6F8F9;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 16px 0 8px 0;
  border-bottom: 1px solid #232C38;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #47B1A1;
  background: rgba(71,177,161,0.10);
}

@media (min-width:901px) {
  .mobile-menu,
  .mobile-menu.open,
  .mobile-menu-close,
  .mobile-nav {display: none !important;}
}

/* ------------------------------------------
   5. HERO SECTION — urban/industrial impact
   ------------------------------------------*/
.hero {
  background: linear-gradient(140deg, #181b20 80%, #232C38 100%);
  padding: 52px 0 34px 0;
  margin-bottom: 56px;
  border-bottom: 2px solid #2C363C;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}
.hero h1 {
  color: #F6F8F9;
  font-size: 2.7rem;
  text-shadow: 0 2px 18px rgba(26,35,46,0.10);
  margin-bottom: 2px;
}
@media (max-width: 700px) {
  .hero {
    padding: 24px 0 8px 0;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero .content-wrapper {max-width: 100%;}
}

/* -----------------------------------------
   6. SHARED FLEXBOX LAYOUTS & GAPS
   ---------------------------------*/
.features-list,
.service-list,
.collections-descriptions,
.advice-list,
.faq-list,
.card-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.features-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0 0;
}
.features-icons-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #232C38;
  border-radius: 11px;
  padding: 14px 22px;
  min-width: 90px;
  min-height: 80px;
  box-shadow: 0 2px 8px 0 rgba(71,177,161,0.10);
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.01em;
  color: #47B1A1;
  font-weight: 600;
  gap: 10px;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}
.features-icons-row img {
  width: 34px;
  height: 34px;
  filter: brightness(1.24) grayscale(15%) drop-shadow(0 0 2px #222);
}
.features-icons-row span {
  color: #47B1A1;
}

.text-section {
  margin-bottom: 0;
  padding-bottom: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  background: #232C38;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(26,35,46,.14);
  padding: 32px 24px;
  color: #F6F8F9;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .18s, transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 3px 24px 0 rgba(71,177,161,0.12);
  transform: translateY(-6px) scale(1.02);
  border-color: #47B1A1;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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,
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .features-icons-row {gap: 14px;}
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}

/*********************************************
   7. TESTIMONIALS & OPINION CARDS (high contrast)
 *********************************************/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F8F9;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(71,177,161,0.07), 0 1.5px 0 0 #D9DEE0 inset;
  margin-bottom: 22px;
  color: #1A232E;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card p {
  color: #1A232E;
  margin-bottom: 9px;
  font-style: italic;
}
.testimonial-card span {
  color: #47B1A1;
  font-weight: 600;
  font-style: normal;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(26,35,46,.16);
  transform: translateY(-2px) scale(1.01);
}

/*********************************************
   8. CTA SECTION
 *********************************************/
.cta-section {
  margin-bottom: 0 !important;
  padding: 40px 0 50px 0 !important;
  background: linear-gradient(105deg, #1A232E 60%, #232C38 100%);
}
.cta-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section h2 {
  color: #F6F8F9;
  text-align: center;
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 800;
}
.cta-section .cta-btn {
  margin: 0 auto;
}

/*********************************************
   9. FOOTER
 *********************************************/
footer {
  background: #181b20;
  border-top: 2px solid #232C38;
  padding: 36px 0 16px 0;
  margin-top: 40px;
  font-size: 0.98em;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  display: block;
  width: 64px;
  height: auto;
  filter: grayscale(25%) contrast(1.1) drop-shadow(0 2px 3px #232C38);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #B3BBBE;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.9px;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #47B1A1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: .97em;
  color: #C9D0D5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 6px;
  vertical-align: middle;
  filter: grayscale(15%) contrast(1.08);
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-logo img {margin-bottom: 12px;}
}

/********************************************
   10. MISC SECTION STYLES & UTILITIES
 ********************************************/
/* Lists with icons */
.features-list li, .service-list li, .service-features li, .advice-list li, .faq-list li, .collections-descriptions li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: transparent;
  padding: 0 0 2px 0;
  color: #DEE6E6;
  font-size: 1.01em;
  border-left: 3px solid #232C38;
  margin-left: 0;
  min-height: 34px;
}
.features-list img, .service-list img, .service-features img {
  width: 28px;
  height: 28px;
  filter: grayscale(10%) brightness(1.25) drop-shadow(0 0 2px #282f38);
}

/********************************************
   11. FORMS & CONTACT BOXES
 ********************************************/
.contact-info-box {
  background: #232C38;
  border-radius: 12px;
  padding: 22px 20px 17px 20px;
  margin-bottom: 24px;
  box-shadow: 0 1px 6px 0 rgba(71,177,161,.12);
  color: #DEF5F2;
  font-size: 1.05em;
}
.contact-info-box p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #47B1A1;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 7px;
}
.contact-info-box strong {
  font-weight: 900;
  color: #F6F8F9;
  margin-right: 6px;
}

/********************************************
   12. FAQ LISTS
 ********************************************/
.faq-list > li {
  border-radius: 12px;
  background: #232C38;
  color: #E5ECEB;
  margin-bottom: 12px;
  padding: 16px 16px 15px 20px;
  box-shadow: 0 1.5px 10px 0 rgba(26,35,46,.09);
  transition: box-shadow .15s;
}
.faq-list h3 {
  color: #47B1A1;
  font-size: 1.07rem;
  margin-bottom: 9px;
}
.faq-list p {margin-bottom: 0.2em;}

/********************************************
   13. MEDIA QUERIES (responsiveness)
 ********************************************/
@media (max-width: 1020px) {
  .container { max-width: 97vw;
    padding: 0 6vw; }
}
@media (max-width: 700px) {
  .container { padding: 0 2vw; }
  .features-icons-row, .footer-contact, .footer-nav, .content-wrapper {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .section, .cta-section { padding: 18px 1vw !important; margin-bottom: 22px; }
  .testimonial-card { flex-direction: column;
    gap: 6px;
    font-size: 0.98em; }
  .faq-list > li {padding: 12px 7px 12px 12px;}
  .footer-logo img {width: 46px;}
  .hero .container {gap: 10px;}
}

/********************************************
   14. BUTTONS & TRANSITIONS
 ********************************************/
button {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: #232C38;
  color: #47B1A1;
  padding: 11px 28px;
  border-radius: 18px;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s;
}
button:hover, button:focus {
  background: #47B1A1;
  color: #181b20;
}

/********************************************
   15. COOKIE CONSENT BANNER & MODAL
 ********************************************/
.cookie-banner {
  position: fixed;
  z-index: 1100;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #232C38;
  box-shadow: 0 -4px 28px 0 rgba(26,35,46,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 10vw 26px 10vw;
  font-size: 1rem;
  color: #F6F8F9;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  animation: slideCookieIn 0.44s cubic-bezier(.23,1.05,.47,1.03);
}
@keyframes slideCookieIn {
  0% {transform: translateY(55px); opacity: 0;}
  96% {opacity: 1;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner span {
  color: #E5ECEB;
  margin-right: 18px;
}
.cookie-btn {
  min-width: 108px;
  min-height: 42px;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  background: #1A232E;
  color: #47B1A1;
  border-radius: 24px;
  margin-right: 10px;
  padding: 10px 22px;
  border: 1.5px solid #232C38;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0;
  transition: background .20s, color .19s, box-shadow .18s, border .19s;
}
.cookie-btn.accept {
  background: #47B1A1;
  color: #181b20;
  border-color: #47B1A1;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #4dd7bf;
  color: #181b20;
}
.cookie-btn.reject {
  background: #232C38;
  color: #B3BBBE;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #181b20;
  color: #dee6e6;
}
.cookie-btn.settings {
  border: 1.5px solid #47B1A1;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #2D3841;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 13px 8px 13px 8px;
    font-size: 0.95em;
  }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 1110;
  inset: 0;
  background: rgba(26,35,46,0.89);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.19s;
}
@keyframes fadeIn {
  from {opacity:0;} to {opacity: 1;}
}
.cookie-modal {
  background: #1A232E;
  border-radius: 20px;
  padding: 36px 24px 32px 24px;
  max-width: 400px;
  width: 92vw;
  box-shadow: 0 12px 40px 0 rgba(71,177,161,0.17);
  color: #F6F8F9;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: slideCookieModalIn 0.24s;
}
@keyframes slideCookieModalIn {
  from {transform: translateY(50px); opacity: 0;}
  to {transform: none; opacity: 1;}
}
.cookie-modal h2 {
  color: #47B1A1;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  width: 100%;
}
.cookie-category label {
  font-weight: 600;
  color: #F6F8F9;
  flex: 1;
  font-size: 1.01em;
}
.cookie-switch {
  appearance: none;
  outline: none;
  width: 42px;
  height: 22px;
  border-radius: 20px;
  background: #232C38;
  cursor: pointer;
  position: relative;
  transition: background .19s;
}
.cookie-switch:checked {
  background: #47B1A1;
}
.cookie-switch::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F6F8F9;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left .18s;
  box-shadow: 0 1.2px 2px 0 rgba(26,35,46,0.12);
}
.cookie-switch:checked::after {
  left: 22px;
}
.cookie-modal .cookie-btns {
  width: 100%;
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  width: 38%;
  min-width: 98px;
  padding: 9px 1px;
}
.cookie-modal .cookie-btn.settings {
  border-width: 2px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 26px;
  background: transparent;
  color: #47B1A1;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

/******************************************/
/* Industrial Modern Urban Details         */
/******************************************/
.section, .card, .contact-info-box, .faq-list > li, .testimonial-card {
  /* steel panel effect */
  border: 1.5px solid #232C38;
}

/* Industrial metallic accent line for h2 */
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 10px;
  background: #47B1A1;
  border-radius: 2px;
}

/******************************
   Misc selectors & spacing
******************************/
.content-wrapper > *:not(:last-child) {
  margin-bottom: 18px;
}
li > strong, .service-list li > strong, .team-list li > strong {
  color: #47B1A1;
}
.card + .card {
  margin-top: 20px;
}

/*********************************/
/*  ACCENTS / MICRO-INTERACTIONS */
/*********************************/
.cta-btn,
button,
.mobile-menu-toggle,
.mobile-menu-close,
.cookie-btn,
.cookie-btn.settings,
footer a {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.cta-btn:active,
button:active {transform: scale(0.97);}

/*******************************************
     END INDUSTRIAL MODERN DESIGN SYSTEM
********************************************/
