/* =======================================================================
   Industrial Modern CSS for Pomirjen Lok
   Author: Senior CSS/UI Designer
   -----------------------------------------------------------------------
   - Dark, urban industrial aesthetic with metallic accents
   - Flexbox layouts only (NO grid/columns)
   - Responsive, high-contrast, professional, accessible
   - Brand Colors: #346E7D (primary), #2A3C44 (secondary), #F2EFEA (accent)
   - Brand Fonts: 'Montserrat' for display, 'Roboto' for body
   - All interactive elements styled
   - Cookie banner & Mobile menu fully styled with transitions
   ======================================================================= */

/* --------------------
   1. CSS RESET + BASE
--------------------- */
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,
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;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #191c1e;
  color: #F2EFEA;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; border-radius: 6px; }
a { color: #6cc3d5; text-decoration: none; transition: color .2s; word-break: break-word; }
a:hover { color: #F2EFEA; text-decoration: underline; }

/* Custom scrollbars for modern feel */
body, .mobile-menu nav {
  scrollbar-color: #346E7D #232629;
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 8px; background: #232629; }
::-webkit-scrollbar-thumb { background: #346E7D; border-radius: 4px; }

/* --------------------------
   2. TYPOGRAPHY HIERARCHY
-------------------------- */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #F2EFEA;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #F2EFEA;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #F2EFEA;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}
h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #F2EFEA;
  margin-bottom: 8px;
}
.subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: #b2bac1;
  margin-bottom: 24px;
  line-height: 1.48;
}
strong { font-weight: 600; }
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 10px;
  color: #e1e5e6;
  font-size: 1rem;
}

/* --------------------
   3. COLOR VARIABLES
--------------------- */
:root {
  --color-primary: #346E7D;
  --color-secondary: #2A3C44;
  --color-accent: #F2EFEA;
  --color-metal: #5e727f;
  --color-bg-dark: #191c1e;
  --color-bg-mid: #232629;
  --color-bg-light: #353a3f;
  --color-border: #393f43;
  --color-shadow: rgba(36,42,47,0.13);
  --radius-base: 10px;
}

/* ---------------------------
   4. CONTAINER & SECTIONS
---------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper, .text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 16px;
}
@media (min-width: 900px) {
  .content-wrapper, .text-section {
    gap: 24px;
  }
}

/* -------------------------------
   5. HEADER, NAV & HERO LAYOUT
-------------------------------- */
header {
  background: #232629;
  border-bottom: 2px solid #393f43;
  box-shadow: 0 4px 18px -4px rgba(36,42,47,0.06);
  position: relative;
  z-index: 15;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
.logo-link {
  margin-right: 22px;
  display: flex;
  align-items: center;
}
.logo-link img { height: 50px; width: auto; display: block; }
nav.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .5px;
  color: #F2EFEA;
  padding: 4px 2px;
  border-bottom: 2.5px solid transparent;
  transition: border-color .2s, color .2s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: var(--color-primary);
  border-bottom: 2.5px solid var(--color-primary);
  outline: none;
}
.cta-primary {
  background: linear-gradient(90deg, #346E7D 50%, #20333b 100%);
  color: var(--color-accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 18px -4px var(--color-shadow);
  margin-left: 18px;
  letter-spacing: 0.5px;
  transition: background 0.25s, box-shadow 0.25s, color 0.2s, transform 0.11s;
  cursor: pointer;
  outline: none;
  display: inline-block;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: #5e727f;
  color: #fff;
  box-shadow: 0 4px 28px -4px #346E7D33;
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary {
  background: transparent;
  color: #F2EFEA;
  border: 2px solid #5e727f;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 28px;
  padding: 12px 28px;
  margin-top: 14px;
  margin-bottom: 0;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #346E7D;
  border-color: #346E7D;
  color: #F2EFEA;
}

/* ----------------------
   6. MOBILE NAVIGATION
----------------------- */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: #F2EFEA;
  cursor: pointer;
  margin-left: 18px;
  z-index: 101;
  display: flex;
  align-items: center;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; height: 100vh; width: 100vw;
  background: rgba(42,60,68,0.98);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.38s cubic-bezier(.7,.1,.82,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #F2EFEA;
  font-size: 2.2rem;
  margin: 28px 0 16px 22px;
  cursor: pointer;
  align-self: flex-start;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 18px 32px;
}
.mobile-nav a {
  color: #F2EFEA;
  font-size: 1.23rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 10px 0;
  transition: color 0.19s, background 0.18s;
  border-bottom: 1px solid #393f43;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #346E7D;
  color: #fff;
  border-radius: 10px;
  outline: none;
}

/* Hide desktop nav & CTA on mobile */
@media (max-width: 900px) {
  nav.main-nav, .cta-primary {
    display: none !important;
  }
  .logo-link { margin-right: 0; }
  .mobile-menu-toggle { display: flex !important; }
}
@media (min-width: 901px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* --------------------
   7. HERO SECTIONS
--------------------- */
section {
  background: transparent;
  padding: 40px 0;
}
section:first-of-type {
  background: #232629;
  border-bottom: 1px solid #393f43;
  box-shadow: 0 6px 32px -8px var(--color-shadow);
}
section .container { justify-content: center; }

/* --------------------
   8. CARD & GRID LAYOUTS
--------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232629;
  padding: 32px 24px;
  border-radius: var(--radius-base);
  box-shadow: 0 2px 14px 0 var(--color-shadow);
  border: 1.5px solid #393f43;
  transition: box-shadow .23s, transform .18s;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 32px 0 #346E7D44;
  transform: translateY(-2px) scale(1.015);
  border-color: #346E7D;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* Blog List Cards */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post-card {
  background: #232629;
  border: 1.5px solid #393f43;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 var(--color-shadow);
  padding: 24px 22px;
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 360px;
  transition: box-shadow .22s, border .17s;
  margin-bottom: 20px;
}
.blog-post-card:hover, .blog-post-card:focus-within {
  box-shadow: 0 6px 28px -6px #346E7D44;
  border-color: #346E7D;
}
.blog-meta {
  color: #b2bac1;
  font-size: .97rem;
  margin-top: 10px;
}

/* Blog input */
.blog-search {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-search label {
  color: #b2bac1;
  font-weight: 500;
  margin-right: 2px;
}
.blog-search input {
  background: #191c1e;
  border: 1px solid #393f43;
  border-radius: 6px;
  color: #F2EFEA;
  padding: 8px 16px;
  font-family: 'Roboto',sans-serif;
  font-size: 1rem;
  outline: none;
}
.blog-search input:focus {
  border-color: #346E7D;
  background: #232629;
}

/* -------------------------------
   9. TESTIMONIALS + LIST LAYOUTS
-------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F2EFEA;
  color: #232629;
  padding: 20px 28px;
  border-radius: 13px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  position: relative;
  border-left: 4px solid #346E7D;
  transition: box-shadow .14s, border-left-color .15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 28px -4px #346E7D40;
  border-left-color: #2a3c44;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #5e727f;
  font-family: "Montserrat",sans-serif;
  font-weight: 600;
}

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

/* Services, steps, and icon lists */
.content-wrapper ul, .text-section ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 18px;
  margin-bottom: 20px;
}
.content-wrapper ul li, .text-section ul li {
  list-style: disc inside;
  margin-bottom: 0;
  color: #e1e5e6;
  position: relative;
}
/* Services with icons */
.content-wrapper ul li img, .text-section ul li img {
  height: 28px; width: 28px; margin-right: 10px; vertical-align: middle;
}

/* ----------------------
   10. FOOTER & CONTACT
----------------------- */
footer {
  background: #232629;
  border-top: 2px solid #393f43;
  margin-top: 48px;
  padding: 32px 0 0 0;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-navigation {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-navigation a {
  color: #b2bac1;
  transition: color .2s;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
}
.footer-navigation a:hover { color: #346E7D; }
.footer-branding {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F2EFEA;
  font-weight: 600;
}
.footer-branding img {
  height: 34px;
  width: auto;
  margin-right: 6px;
}
.footer-contact {
  color: #b2bac1;
}
.footer-contact span { margin-right: 6px; }

/* ----------------
   11. MISC LAYOUTS
----------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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; }

/* Contact details list */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 1.08rem;
}
.contact-details a {
  color: #346E7D;
  text-decoration: underline;
  font-weight: 500;
}
.contact-guidance { color: #b2bac1; margin-top: 8px; }

/* -----------------------
   12. RESPONSIVE DESIGN
------------------------ */
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
  .footer-navigation {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 1.6rem; }
  h2, .h2 { font-size: 1.18rem; }
  section, .section { padding: 32px 5px; }
  .card, .blog-post-card, .testimonial-card {
    padding: 17px 12px;
    min-width: 0;
    max-width: 100%;
  }
  .blog-list {
    gap: 12px;
  }
  .content-grid, .card-container {
    gap: 14px;
  }
}
@media (max-width: 540px) {
  .container {
    max-width: 100vw;
    padding: 0 2vw;
  }
  .section, section { padding: 18px 0; }
  .footer-contact { font-size: 0.93em; }
}

/* -------------------------
   13. ANIMATION, SHADOWS
-------------------------- */
.card, .blog-post-card, .testimonial-card, .cta-primary, .cta-secondary {
  transition: box-shadow .23s, border-color .19s, transform .17s, background .18s, color .13s;
}

/* List icons (dot urban) */
ul li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 11px;
  border-radius: 32%;
  background: #5e727f linear-gradient(135deg,#346e7db2 60%,#2A3C44 100%);
  vertical-align: middle;
}

/* Remove icons from links in nav and footer */
nav.main-nav ul li:before, .footer-navigation ul li:before {
  display: none !important;
}

/* -------------------------
   14. COOKIE CONSENT BANNER
-------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #232629;
  color: #F2EFEA;
  border-top: 2px solid #393f43;
  box-shadow: 0 -8px 36px -6px #000b20bb;
  padding: 24px 20px 20px 20px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 1;
  transition: transform 0.38s cubic-bezier(.68,.08,.53,1), opacity 0.15s;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.07rem;
  border-radius: 20px;
  border: 1.5px solid #346E7D;
  padding: 9px 24px;
  font-weight: 600;
  cursor: pointer;
  background: #23363b;
  color: #F2EFEA;
  margin: 0;
  transition: background .15s, color .11s, border .15s;
}
.cookie-banner button.accept {
  background: #346E7D;
  color: #fff;
  border-color: #346E7D;
}
.cookie-banner button.reject {
  background: #e53c3c;
  color: #fff;
  border-color: #c02424;
}
.cookie-banner button.settings {
  background: transparent;
  color: #F2EFEA;
  border-color: #5e727f;
}
.cookie-banner button:focus {
  outline: 2px solid #346E7D;
  outline-offset: 1px;
}
@media (max-width: 650px) {
  .cookie-banner {
    padding: 15px 4vw 8px 4vw;
    font-size: .93em;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left:0; top:0; width:100vw; height:100vh;
  background: rgba(34,38,41,0.86);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .33s;
}
.cookie-modal-overlay.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal {
  background: #232629;
  padding: 32px 26px 24px 26px;
  border-radius: 18px;
  max-width: 390px;
  color: #F2EFEA;
  box-shadow: 0 6px 44px -6px #346E7D55;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  border: 1.5px solid #346E7D;
  position: relative;
}
.cookie-modal .modal-title {
  font-size: 1.28rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  color: #F2EFEA;
  margin-bottom: 10px;
}
.cookie-modal .modal-section {
  width: 100%;
  padding-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category label {
  font-size: 1.11rem;
  font-family: 'Montserrat',sans-serif;
  color: #F2EFEA;
  font-weight: 500;
}
.cookie-modal .cookie-switch {
  position: relative;
  width: 38px; height: 22px;
  display: inline-block;
}
.cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  left: 0; top: 0;
  width: 38px; height: 22px;
  background-color: #393f43;
  border-radius: 12px;
  transition: background 0.2s;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #346E7D;
  transition: transform .21s, background .2s;
}
.cookie-modal .cookie-switch input:checked + .slider {
  background: #346E7D;
}
.cookie-modal .cookie-switch input:checked + .slider:before {
  background: #F2EFEA;
  transform: translateX(16px);
}
.cookie-modal .cookie-switch input:disabled + .slider {
  opacity: 0.6;
  cursor: not-allowed;
  background: #393f43;
}
.cookie-modal .cookie-category .desc {
  color: #b2bac1;
  font-size: 0.95rem;
  margin-left: 8px;
}
.cookie-modal .modal-actions {
  margin-top: 12px;
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  border-radius: 18px;
  border: 1.5px solid #346E7D;
  padding: 8px 18px;
  font-weight: 600;
  background: #2A3C44;
  color: #F2EFEA;
  cursor: pointer;
  margin: 0;
  transition: background .13s, color .13s, border .14s;
}
.cookie-modal button.accept {
  background: #346E7D;
  color: #fff;
  border-color: #346E7D;
}
.cookie-modal button:focus {
  outline: 2px solid #346E7D;
  outline-offset: 1px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 14px;
  background: transparent;
  border: none;
  color: #F2EFEA;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.8;
}
.cookie-modal .close-modal:hover { opacity: 1; color: #fff; }
@media (max-width: 500px) {
  .cookie-modal {
    max-width: 95vw;
    padding: 16px 7vw 12px 7vw;
  }
}

/* ===========
   15. MISC
============ */
::-moz-selection { background: #346E7D; color: #fff; }
::selection { background: #346E7D; color: #fff; }

hr {
  border: 0;
  border-top: 1.5px solid #393f43;
  margin: 30px 0;
}

/* Hide default list-decoration */
ul, ol {
  list-style: none;
}

/* Utility classes */
.mt-20 { margin-top: 20px !important; } .mb-20 { margin-bottom: 20px !important; }
.mt-32 { margin-top: 32px !important; } .mb-32 { margin-bottom: 32px !important; }

/* =========================
   16. INDUSTRIAL MODERN FX
=========================== */
/* Metal accents on card borders & nav underline */
.card, .blog-post-card {
  border: 1.5px solid #5e727f;
}
nav.main-nav a.active, .footer-branding {
  text-shadow: 1px 1.5px 0 #5e727f44;
}

/* Subtle metallic inset line for CTA */
.cta-primary:before {
  content: '';
  position: absolute;
  left: 10px; right: 10px; top: 7px;
  height: 2.5px;
  background: linear-gradient(90deg,#5e727f11 20%,#ccc 55%,#5e727f11 90%);
  border-radius: 2px;
  opacity: .17;
  pointer-events: none;
}

/* Urban background lines, accent dots (decorative) */
body:before {
  content: '';
  display: block;
  position: fixed;
  left: -4vw; top: 0;
  width: 108vw; height: 100vh;
  background: repeating-linear-gradient(
    100deg, transparent 0, #23262908 120px, transparent 220px
  ),
  repeating-linear-gradient(
    10deg, transparent 0, #346e7d09 85px, transparent 165px
  );
  pointer-events: none;
  z-index: 0;
}

/* =============
 FONT LOAD
=============== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
