/* 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #181818;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: #1A203D;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #8FC9FE;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  color: #15161a;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2, .h2, .section-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  color: #191b20;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #222327;
  font-weight: 500;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #222;
}
p, li, dd {
  font-size: 1rem;
  color: #23252c;
  margin-bottom: 12px;
  font-weight: 400;
}
strong {
  font-weight: 700;
  color: #23232e;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 24px;
}

/* CONTAINER & WRAPPER */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* LAYOUT SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
section:nth-child(even) {
  background: #f6f7fa;
}

/* MAIN NAVIGATION */
header {
  background: #fff;
  padding: 0;
  border-bottom: 1px solid #E5E8F1;
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
}
.main-nav .logo-link img {
  height: 38px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.main-nav li {
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.main-nav a {
  color: #1A203D;
  padding: 4px 8px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color 0.25s;
}
.main-nav a.cta-primary {
  background: #1A203D;
  color: #fff !important;
  padding: 8px 22px;
  border-radius: 28px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(26,32,61,0.08), 0 1.5px 11px #bebcbd09;
  margin-left: 16px;
  transition: background 0.22s, color 0.22s;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #222430;
  color: #8FC9FE !important;
}

/* MOBILE NAVIGATION (BURGER MENU) */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #1A203D;
  cursor: pointer;
  margin-left: auto;
  z-index: 105;
  transition: color .2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #8FC9FE;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17,20,35,0.97);
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.83,.03,.17,1);
  z-index: 200;
  padding: 0 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 24px;
  right: 28px;
  cursor: pointer;
  z-index: 210;
  transition: color .2s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  color: #8FC9FE;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 72px;
  width: 100%;
  padding-left: 38px;
  gap: 25px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(143,201,254,0.08);
  width: 80%;
  transition: color .22s, background .22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #8FC9FE;
  background: rgba(143,201,254,0.07);
}
@media (max-width: 1020px) {
  .main-nav ul {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 8px;
  }
  .main-nav {
    gap: 12px;
    padding: 20px 0 16px 0;
  }
}
@media (max-width: 860px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 500px) {
  .main-nav {
    padding: 8px 0 8px 0;
  }
  .main-nav .logo-link img {
    height: 29px;
  }
  .mobile-menu-close {
    top: 12px;
    right: 16px;
    font-size: 1.7rem;
  }
  .mobile-nav {
    margin-top: 45px;
    padding-left: 18px;
  }
}

/* SECTION, LAYOUT, CARDS, FLEXBOX ALIGNMENT */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 3px 22px rgba(26,32,61,0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  background: #FBFBFD;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(26,32,61,0.07);
  gap: 20px;
  padding: 20px 32px;
  margin-bottom: 20px;
  min-height: 110px;
  border-left: 5px solid #1A203D;
  transition: box-shadow .22s, transform .22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(26,32,61,0.18);
  transform: translateY(-3px) scale(1.012);
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonial-content p {
  font-size: 1.06rem;
  color: #191b20;
  font-weight: 500;
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-size: .99rem;
  color: #444;
  letter-spacing: .03em;
}
.feature-grid, .feature-list, .service-list, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li, .feature-list li, .service-list li, .service-grid li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(26,32,61,0.06);
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.feature-grid li:hover, .service-list li:hover, .feature-list li:hover {
  box-shadow: 0 8px 25px rgba(62,73,128,0.12);
}
.feature-grid img, .feature-list img, .service-list img {
  height: 40px;
  width: auto;
}
.service-price {
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A203D;
  font-weight: 600;
  margin-top: 8px;
}
.guarantees, .delivery-options {
  padding: 18px 20px 15px 22px;
  background: #F7F8FB;
  border-radius: 9px;
  margin: 22px 0 20px 0;
  box-shadow: 0 0.5px 5px rgba(26,32,61,0.05);
}
.guarantees h3, .delivery-options h3 { margin-bottom: 8px; }

/* FAQ ACCORDION */
.faq-accordion { margin-top: 25px; }
.faq-accordion dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 5px;
  color: #1A203D;
  cursor: pointer;
  position: relative;
  padding-left: 12px;
  transition: color 0.2s;
}
.faq-accordion dt:after {
  content: '+';
  position: absolute;
  left: 0;
  color: #8FC9FE;
  font-size: 1.2em;
}
.faq-accordion dd {
  padding-left: 22px;
  margin-bottom: 7px;
  color: #1f2126;
  line-height: 1.6;
  max-width: 760px;
}
.faq-accordion dt.open {
  color: #8FC9FE;
}
.faq-accordion dt.open:after { content: '-'; }

/* BUTTONS & CTA */
.cta-primary, .cookie-btn-primary {
  display: inline-block;
  background: #1A203D;
  color: #fff !important;
  border: none;
  border-radius: 26px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .015em;
  cursor: pointer;
  margin-top: 12px;
  box-shadow: 0 3px 16px rgba(26,32,61,0.13);
  transition: background 0.22s, color 0.19s, transform 0.15s;
}
.cta-primary:hover, .cta-primary:focus, .cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #151824;
  color: #8FC9FE !important;
  transform: translateY(-2px) scale(1.035);
}
.cookie-btn-secondary {
  display: inline-block;
  background: #fff;
  color: #1A203D !important;
  border: 1.5px solid #1A203D;
  border-radius: 26px;
  padding: 11px 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  margin-left: 12px;
  cursor: pointer;
  transition: border 0.18s, color 0.19s, background 0.17s, transform 0.14s;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  border-color: #8FC9FE;
  color: #8FC9FE !important;
  background: #191b20;
  transform: translateY(-1.5px) scale(1.021);
}

/* FOOTER */
footer {
  background: #161820;
  color: #fff;
  padding: 40px 0 22px 0;
  margin-top: 36px;
  position: relative;
  z-index: 5;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #8FC9FE;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .02em;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.02rem;
}
.footer-contact a {
  color: #fff;
  border-bottom: 1.5px solid #8FC9FE;
  padding-bottom: 1px;
  transition: color .17s, border-color .17s;
}
.footer-contact a:hover { color: #8FC9FE; border-color: #fff; }
.footer-logo {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  opacity: 0.55;
}

/* COOKIES BANNER & MODAL */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: rgba(250,250,250,0.98);
  color: #1A203D;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-top: 2px solid #1A203D;
  box-shadow: 0 -5px 30px rgba(26,32,61,0.09);
  padding: 24px 36px 24px 30px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: opacity 0.3s, transform 0.4s cubic-bezier(.83,.03,.17,1);
}
.cookie-consent-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-consent-text {
  flex: 1 1 0;
}
.cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(15,19,35,0.82);
  z-index: 9990;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeIn 0.36s cubic-bezier(.83,.03,.17,1);
}
@keyframes fadeIn { 0%{ opacity: 0; } 100%{ opacity: 1;} }
.cookie-modal {
  background: #fff;
  color: #181828;
  border-radius: 13px;
  box-shadow: 0 6px 42px rgba(26,32,61,0.18);
  min-width: 300px; max-width: 460px;
  padding: 34px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.42rem;
  margin-bottom: 12px;
  color: #15161a;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1.04rem;
  font-weight: 500;
  color: #1A203D;
}
.cookie-category input[type="checkbox"] {
  accent-color: #1A203D;
  width: 19px;
  height: 19px;
  margin-right: 3px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 17px;
  font-size: 1.45rem;
  color: #1A203D;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10401;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #8FC9FE;
}

/* CONTACT PAGE */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.09rem;
}
.contact-details img {
  height: 19px;
  width: 19px;
  margin-right: 8px;
  vertical-align: middle;
}
.map-location h2 { font-size: 1.1rem; margin-bottom: 8px;}

/* INSPIRATION & HOW-TO */
.inspiration-posts, .how-to-guides {
  background: #F7F8FB;
  border-radius: 10px;
  padding: 20px 24px 16px 24px;
  margin: 18px 0 18px 0;
  box-shadow: 0 1.5px 10px rgba(26,32,61,0.05);
}
.inspiration-posts h2, .how-to-guides h2 { font-size: 1.15rem; margin-bottom: 12px;}

/* MISCELLANEOUS */
::-webkit-scrollbar {
  width: 10px;
  background: #ececec;
}
::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 12px;
}

/* ANIMATIONS & TRANSITIONS */
.card, .feature-grid li, .service-list li, .testimonial-card, .faq-accordion dt {
  transition: box-shadow .19s, transform .18s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.99);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1080px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  section {
    padding: 34px 8px;
  }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .service-list, .card-container, .service-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 15px 14px;
  }
  .footer-nav, .footer-contact { gap: 14px; }
  .container { padding-left: 3vw; padding-right: 3vw; }
}
@media (max-width: 540px) {
  h1, .h1 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  h2, .h2, .section-title {
    font-size: 1.33rem;
    margin-bottom: 12px;
  }
  .card, .feature-grid li, .service-list li, .service-grid li {
    padding: 18px 9px;
    min-width: 0;
  }
  .testimonial-card {
    padding: 12px 6px;
  }
  footer { padding: 24px 0 14px 0; }
}
@media (max-width: 400px) {
  .cta-primary, .cookie-btn-primary {
    padding: 9px 10px;
    font-size: .99rem;
  }
  .cookie-btn-secondary {
    padding: 8px 10px;
    font-size: .98rem;
  }
}

/* PRINT IMPROVEMENT */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
  section, body, html { background: #fff !important; color: #111 !important; }
}
