/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #22223B;
  color: #F2E9E4;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: #C9ADA7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E85A4F;
}
ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  color: #F2E9E4;
  text-shadow: 0 1px 2px rgba(34,34,59,0.18);
}
h1 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
p, li, ul, ol, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #F2E9E4;
  line-height: 1.7;
}
.subtitle {
  font-size: 1.18rem;
  color: #C9ADA7;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

/* GENERAL CONTAINER */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 18px;
}

/* SECTION SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(42, 45, 66, 0.78);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,34,59,0.12), 0 1.5px 12px 0 rgba(42,45,66,0.10);
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #24243e;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,34,59,0.12);
  border: 1.5px solid #4A4E69;
  padding: 28px 22px 22px 22px;
  transition: box-shadow 0.2s, transform 0.18s;
  min-width: 280px;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(90,90,90,0.28);
  transform: translateY(-3px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  background: #F2E9E4;
  color: #22223B;
  border-radius: 13px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 9px rgba(34,34,59,0.12);
  border-left: 5px solid #9A8C98;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  min-height: 330px;
  background: linear-gradient(120deg, #2C2C54 70%, #4A4E69 100%);
  padding: 75px 0 60px 0;
  margin-bottom: 50px;
  box-shadow: 0 2.5px 12px rgba(34,34,59,0.15);
}
.hero .content-wrapper {
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

/* NAVIGATION */
header {
  background: #1B1B2F;
  box-shadow: 0 2px 12px rgba(34,34,59,0.09);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-link img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #F2E9E4;
  font-size: 1.08rem;
  position: relative;
  padding: 6px 2px;
  transition: color 0.19s;
}
.main-nav a:hover, .main-nav a.active {
  color: #E85A4F;
}
.cta-btn {
  background: #9A8C98;
  color: #F2E9E4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 8px;
  letter-spacing: 0.03em;
  box-shadow: 0 0.5px 8px rgba(34,34,59,0.10);
  border: 0;
  cursor: pointer;
  outline: none;
  margin-left: 14px;
  transition: background 0.2s, color 0.17s, box-shadow 0.2s, transform 0.13s;
  border-bottom: 2.5px solid #4A4E69;
}
.cta-btn:hover, .cta-btn:focus {
  background: #E85A4F;
  color: #F2E9E4;
  transform: translateY(-1.5px) scale(1.03);
}

/* BURGER MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #F2E9E4;
  cursor: pointer;
  margin-left: 14px;
  padding: 7px 10px;
  transition: background 0.2s;
  border-radius: 8px;
  z-index: 102;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #4A4E69;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,34,59,0.97);
  box-shadow: 0 8px 24px rgba(34,34,59,0.28);
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 120;
  padding-top: 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  margin-right: 26px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #9A8C98;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 7px;
  transition: background 0.19s;
}
.mobile-menu-close:hover {
  background: #1B1B2F;
  color: #F2E9E4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
  padding: 48px 38px 0 34px;
}
.mobile-nav a {
  color: #F2E9E4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 10px 0;
  transition: color 0.17s, background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E85A4F;
}

/* PRODUCT CATEGORIES */
.product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.product-categories li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1B1B2F;
  padding: 18px 28px;
  border-radius: 11px;
  border: 1px solid #4A4E69;
  color: #F2E9E4;
  font-weight: 600;
  transition: box-shadow 0.14s, background 0.18s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px rgba(50,45,70,0.09);
}
.product-categories li:hover {
  background: #2C2C54;
  box-shadow: 0 2px 10px rgba(90,90,90,0.16);
}
.product-categories img {
  height: 30px;
  width: 30px;
}

/* FEATURE LIST (FOR FLEX) */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature-list > div {
  background: #24243e;
  padding: 24px 22px;
  border-radius: 11px;
  box-shadow: 0 1.5px 9px rgba(34,34,59,0.10);
  border: 1.5px solid #4A4E69;
  min-width: 250px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.feature-list > div:hover {
  box-shadow: 0 4px 16px rgba(90,90,90,0.14);
  transform: translateY(-2px) scale(1.016);
}

/* TESTIMONIALS */
.testimonials {
  background: #1B1B2F;
  border-radius: 18px;
  margin-bottom: 42px;
  box-shadow: 0 2px 12px rgba(34,34,59,0.09);
  padding: 34px 0;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #F2E9E4;
  color: #22223B;
  border-radius: 13px;
  padding: 22px 22px 18px 20px;
  margin-bottom: 20px;
  min-width: 250px;
  box-shadow: 0 1px 8px rgba(34,34,59,0.11);
  border-left: 5px solid #9A8C98;
  font-size: 1.08rem;
  line-height: 1.8;
}
.testimonial-card strong {
  font-weight: 700;
  letter-spacing: 0.01em;
}
.rating-summary {
  margin-top: 12px;
  font-size: 1.14rem;
  color: #F2E9E4;
}
.rating-summary span:first-child {
  margin-right: 10px;
  font-size: 1.32rem;
  color: #E85A4F;
}

.before-after {
  background: #F2E9E4;
  color: #22223B;
  border-left: 5px solid #9A8C98;
  border-radius: 13px;
  padding: 23px 22px 20px 20px;
  font-size: 1.09rem;
  margin-bottom: 15px;
  margin-top: 10px;
  box-shadow: 0 1px 8px rgba(34,34,59,0.09);
}
.before-after strong {
  margin-top: 12px;
  display: inline-block;
  font-weight: 700;
}

/* INSIDE SECTION TEXT */
.text-section {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
}
.text-section ul, .text-section ol {
  margin-bottom: 6px;
  padding-left: 24px;
}
.text-section li {
  margin-bottom: 7px;
  color: #F2E9E4;
}
.text-section strong {
  color: #C9ADA7;
  font-weight: 600;
}

/* FAQ-style section */
.faq-section {
  margin-top: 18px;
  padding: 18px 16px;
  background: #24243e;
  border-radius: 9px;
  border: 1px solid #4A4E69;
}
.faq-section h3 {
  font-size: 1.13rem;
  margin-bottom: 10px;
}
.faq-section ul {
  padding-left: 22px;
}
.faq-section li {
  margin-bottom: 6px;
  color: #F2E9E4;
  font-size: 0.97rem;
}

/* CONTACT DETAILS */
.contact-details {
  list-style: none;
  margin-top: 12px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #F2E9E4;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
}
.contact-details img {
  width: 20px;
  height: 20px;
}
.contact-details a {
  color: #C9ADA7;
  text-decoration: underline;
  font-size: 1rem;
}
.contact-details a:hover {
  color: #E85A4F;
}

/* FOOTER */
footer {
  background: #151528;
  color: #F2E9E4;
  padding: 36px 0 18px 0;
  box-shadow: 0 -2px 12px rgba(34,34,59,0.09);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 6px;
  font-size: 1.03rem;
}
.footer-nav a {
  color: #C9ADA7;
  font-family: 'Roboto', Arial, sans-serif;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #E85A4F;
}
.footer-info {
  color: #999;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 2px;
  line-height: 1.7;
}

/* BUTTONS */
button,
input[type='button'], input[type='submit'] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  background: #9A8C98;
  color: #F2E9E4;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  transition: background 0.17s, color 0.17s, box-shadow 0.19s, transform 0.13s;
  cursor: pointer;
  box-shadow: 0 0.5px 8px rgba(34,34,59,0.09);
  margin-right: 14px;
}
button:hover, button:focus,
input[type='button']:hover, input[type='submit']:hover {
  background: #4A4E69;
  color: #F2E9E4;
  transform: scale(1.04);
}

/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 160;
  background: #1B1B2F;
  color: #F2E9E4;
  padding: 22px 18px;
  box-shadow: 0 -3px 18px rgba(34,34,59,0.40), 0 1px 8px rgba(34,34,59,0.09);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 19px;
  justify-content: center;
  font-size: 1.01rem;
  animation: cookieSlideIn 0.45s cubic-bezier(0.6,0,0.45,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(80px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner button {
  padding: 8px 18px;
  margin-right: 8px;
  border-radius: 6px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #4A4E69;
  color: #F2E9E4;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, transform 0.11s;
}
.cookie-banner button.accept {
  background: #9A8C98;
  color: #F2E9E4;
}
.cookie-banner button.accept:hover {
  background: #E85A4F;
}
.cookie-banner button.settings {
  background: #22223B;
  color: #F2E9E4;
  border: 1px solid #4A4E69;
}
.cookie-banner button.settings:hover {
  background: #4A4E69;
}
.cookie-banner button.reject {
  background: #C9ADA7;
  color: #22223B;
}
.cookie-banner button.reject:hover {
  background: #4A4E69;
  color: #F2E9E4;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 200;
  background: rgba(34,34,59,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 8px;
  animation: cookieModalFadeIn 0.3s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0.3; }
  to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #1B1B2F;
  color: #F2E9E4;
  padding: 33px 26px 27px 26px;
  border-radius: 14px;
  box-shadow: 0 5px 32px rgba(34,34,59,0.38);
  min-width: 295px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  position: relative;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 11px; right: 11px;
  background: none;
  border: none;
  color: #9A8C98;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color .16s, background .18s;
  border-radius: 6px;
  padding: 3px 5px;
}
.cookie-modal .cookie-modal-close:hover {
  color: #E85A4F;
  background: #2C2C54;
}
.cookie-modal h2 {
  color: #F2E9E4;
  font-size: 1.3rem;
  margin-bottom: 3px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
  margin-bottom: 9px;
}
.cookie-modal .toggle {
  width: 38px;
  height: 20px;
  background: #22223B;
  border-radius: 14px;
  position: relative;
  border: 1px solid #9A8C98;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.17s;
}
.cookie-modal .toggle.enabled {
  background: #9A8C98;
}
.cookie-modal .toggle::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #F2E9E4;
  transition: left 0.18s;
}
.cookie-modal .toggle.enabled::after {
  left: 20px;
}
.cookie-modal .cookie-category label {
  font-size: 1.06rem;
  font-weight: 700;
  color: #C9ADA7;
}
.cookie-modal .cookie-category .essential {
  color: #E85A4F;
  font-size: 0.97rem;
  font-weight: 700;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 11px;
}
.cookie-modal button {
  border-radius: 7px;
  padding: 8px 17px;
  font-size: 0.98rem;
  margin: 0;
}

/* GENERAL SHADOWS AND METALLIC HINTS */
.card, .feature-list > div, .testimonial-card, .before-after {
  box-shadow: 0 2.5px 12px rgba(74,78,105,0.08), 0 1.5px 10px 0 rgba(210,210,210,0.05);
  border: 1.5px solid #4A4E69;
}

/* UTILITY */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.hr {
  border: 0; height: 1px;
  background: #4A4E69;
  margin: 27px 0;
  opacity: 0.14;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .main-nav {
    gap: 12px;
  }
  .product-categories {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
  .footer-nav {
    gap: 12px;
    font-size: 0.99rem;
  }
  .feature-list {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline;
  }
  .cta-btn {
    padding: 11px 16px;
    margin-left: 5px;
    font-size: 0.95rem;
  }
  .section, .hero {
    padding: 30px 10px;
  }
  .feature-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-list > div {
    min-width: unset;
    width: 100%;
    padding: 18px 11px;
  }
  .product-categories {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav {
    gap: 10px;
    font-size: 0.98rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1rem;
  }
  .hero {
    min-height: 180px;
    padding: 32px 0 28px 0;
  }
}
@media (max-width: 560px) {
  .hero {
    min-height: 120px;
    padding: 24px 0 14px 0;
  }
  .section {
    padding: 19px 4px;
    margin-bottom: 18px;
    border-radius: 8px;
  }
  .card {
    padding: 13px 7px 13px 7px;
    min-width: 180px;
    border-radius: 7px;
  }
  .testimonial-card, .before-after {
    padding: 14px 9px 11px 9px;
    border-radius: 7px;
    font-size: 0.97rem;
  }
  .footer-info {
    font-size: 0.92rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
}

/* VISUAL MICRO-INTERACTIONS */
.card, .feature-list > div, .testimonial-card, .before-after,
.product-categories li {
  transition: box-shadow 0.18s, background 0.18s, transform 0.13s, border-color 0.18s;
}
.card:hover, .feature-list > div:hover, .product-categories li:hover {
  box-shadow: 0 6px 20px rgba(74,78,105,0.16), 0 2px 10px 0 rgba(210,210,210,0.10);
  border-color: #9A8C98;
}

/* Z-INDEX UTILITY */
header, .mobile-menu, .cookie-banner, .cookie-modal { z-index: 1000; }

/* DARK/LIGHT CONTRAST UTILITIES */
.testimonials,
.before-after,
.testimonial-card {
  color: #22223B;
}

/* SCROLLBARS (modern browsers) */
body::-webkit-scrollbar {
  width: 10px;
  background: #22223B;
}
body::-webkit-scrollbar-thumb {
  background: #4A4E69;
  border-radius: 8px;
}

/* ICON HINTS (simulate metal with color) */
img[alt*="Ikona"], img[alt*="icon"] {
  filter: grayscale(30%) brightness(1.04) contrast(1.22);
  border-radius: 6px;
  box-shadow: 0 0.5px 2px 0 rgba(150,150,160,0.073);
}

/* HIDE PRINTED-ONLY STYLES FROM SCREEN */
@media print {
  .mobile-menu, .cookie-banner, .cookie-modal, .cta-btn, .mobile-menu-toggle { display: none !important; }
}
