/* ========================================================================
   SLEEKROUTE AKADEMIE — STYLE.CSS (monochrome_sophisticated)
   ======================================================================== */
/*--------- 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, main, 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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  width: 100vw;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  color: #111216;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}
:focus {
  outline: 2px solid #1A2542;
  outline-offset: 2px;
}

/*--------- TYPOGRAPHY & HEADINGS ---------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1A2542;
  line-height: 1.15;
  margin-bottom: 0.6em;
  text-rendering: optimizeLegibility;
}
h1 { font-size: 2.5rem; margin-bottom: 0.7em; }
h2 { font-size: 2rem; margin-bottom: 0.6em; }
h3 { font-size: 1.4rem; margin-bottom: 0.4em; color: #1A2542; }
h4 { font-size: 1.2rem; margin-bottom: 0.3em; }
h5, h6 { font-size: 1rem; margin-bottom: 0.2em; }
p, li, th, td { font-size: 1rem; line-height: 1.8; color: #26292f; }
strong { font-weight: 700; color: #111216; }
.subtitle {
  color: #47484f;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1em;
  font-weight: 400;
}

/*--------- LAYOUT CONTAINERS & SECTIONS ---------*/
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 32px 0 rgba(26,37,66,0.07), 0 1.5px 5px 0 rgba(30,34,40,0.03);
}

@media (max-width: 900px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 10px;
  }
}

/*--------- FLEX PATTERNS ---------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #F5F7FA;
  border: 1.5px solid #E6E8ED;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(30,34,40, 0.03);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 12px 32px 0 rgba(26,37,66,0.10);
  border-color: #1A2542;
  transform: translateY(-4px) scale(1.012);
  z-index: 1;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F5F7FA;
  border-radius: 14px;
  border: 1.5px solid #D1D3DA;
  box-shadow: 0 2px 12px rgba(26,37,66,0.05);
  margin-bottom: 24px;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  border-color: #1A2542;
  box-shadow: 0 8px 32px 0 rgba(26,37,66,0.13);
  transform: translateY(-2px) scale(1.01);
  z-index: 1;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 900px) {
  .content-grid, .card-container { flex-direction: column; gap: 20px; }
  .text-image-section { flex-direction: column; gap: 20px; }
}

@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 0 6vw;
  }
}

/*--------- HEADER, NAVIGATION & MOBILE MENU ---------*/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2.5px 18px 0 rgba(18,21,34,0.03);
  padding-top: 8px;
  position: sticky;
  top: 0; z-index: 50;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  padding: 10px 20px 10px 0;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}
.main-nav img {
  height: 36px;
  margin-right: 16px;
  vertical-align: middle;
}
.main-nav a {
  padding: 7px 14px;
  border-radius: 8px;
  color: #1A2542;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FCAF17;
  color: #fff;
  transition: background 0.17s, color 0.18s;
}
.cta-btn {
  background: #1A2542;
  color: #fff !important;
  padding: 8px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 12px;
  letter-spacing: 0.02em;
  transition: background 0.19s, color 0.17s, box-shadow 0.16s;
  box-shadow: 0 4px 16px rgba(26,37,66,0.07);
  border: 2px solid #1A2542;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FCAF17;
  color: #1A2542 !important;
  border-color: #FCAF17;
  box-shadow: 0 8px 24px rgba(26,37,66,0.15);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border-radius: 8px;
  border: 1.5px solid #D1D3DA;
  font-size: 2.1rem;
  color: #1A2542;
  padding: 2px 14px;
  position: absolute;
  top: 18px; right: 26px;
  z-index: 102;
  transition: border-color 0.18s, color 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  border-color: #FCAF17;
  color: #FCAF17;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 200;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,37,66, 0.97);
  transform: translateX(100vw);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.73,.17,.46,1.10), opacity 0.33s;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  box-shadow: 0 0 36px #13172488;
}
.mobile-menu-close {
  background: #fff;
  color: #1A2542;
  font-size: 2.1rem;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  align-self: flex-end;
  margin: 26px 22px 6px 0;
  border: 2px solid #FCAF17;
  transition: background 0.12s, color 0.14s;
  z-index: 203;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FCAF17;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 36px 0 0 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  padding: 10px 0 10px 8px;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.16s, color 0.17s;
  min-width: 190px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FCAF17;
  color: #1A2542;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/*--------- HERO & PAGE SPECIALS ---------*/
.hero, .content-wrapper > h1 {
  margin-top: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  color: #111216;
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero, .content-wrapper > h1 { font-size: 1.6rem; }
}

/*--------- CARDS & SERVICES ---------*/
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 20px 0 30px 0;
}
.services-grid > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 13px;
  border: 1.4px solid #D1D3DA;
  box-shadow: 0 2px 13px rgba(30,34,40,0.05);
  padding: 28px 22px 18px 22px;
  margin-bottom: 20px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.services-grid > div:hover {
  border-color: #FCAF17;
  box-shadow: 0 5px 32px 0 rgba(250,175,23,0.10);
  transform: translateY(-3px) scale(1.012);
  z-index: 2;
}
.price-tag {
  align-self: flex-end;
  margin-top: 10px;
  background: #1A2542;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 6px;
  padding: 6px 15px;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1.5px 8px rgba(26,37,66,0.08);
}

@media (max-width: 900px) {
  .services-grid { flex-direction: column; gap: 18px; }
  .services-grid > div { min-width: 180px; }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list > div {
  background: #F5F7FA;
  border: 1.2px solid #D1D3DA;
  border-radius: 9px;
  padding: 18px 18px 12px 18px;
  margin-bottom: 12px;
  box-shadow: 0 1px 7px rgba(26,37,66,0.03);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.faq-list > div:hover {
  border-color: #FCAF17;
  box-shadow: 0 4px 24px rgba(250,175,23,0.08);
}

/*--------- TABLES ---------*/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 22px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 12px rgba(26,37,66,0.06);
}
th, td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid #E9EBF0;
}
th {
  background: #1A2542;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
}
tr:last-child td {
  border-bottom: none;
}
td {
  font-size: 1rem;
}

@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  th, td { padding: 12px 8px; }
  th { font-size: 1rem; }
  td { font-size: 0.97rem; }
}

/*--------- LISTS ---------*/
ul, ol {
  list-style: none;
  margin-bottom: 12px;
  font-size: 1rem;
  padding: 0 0 0 0;
}
ul li, ol li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 8px;
}
ul li::before {
  content: '';
  position: absolute;
  left: 0.3em;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1A2542;
  opacity: 0.13;
}
ul li strong {
  color: #1A2542;
}

/*--------- TESTIMONIALS ---------*/
.testimonial-card {
  background: #fff;
  border-left: 5px solid #FCAF17;
  color: #101216;
}
.testimonial-card p {
  color: #26292f;
  font-size: 1.06rem;
  margin-bottom: 0;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A2542;
}
.testimonial-card div:last-child {
  font-size: 1.1rem;
  color: #FCAF17;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
}

/*--------- FOOTER ---------*/
footer {
  background: #1A2542;
  color: #F5F7FA;
  padding: 40px 0 18px 0;
  font-size: 1rem;
  border-top: 6px solid #FCAF17;
}
footer .container {
  max-width: 1130px;
  padding: 0 18px;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #F5F7FA;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  padding: 3px 0;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #FCAF17; }

.contact-info p, .contact-info a {
  color: #B6B9C5;
  font-size: 0.96rem;
  line-height: 1.6;
}
.contact-info a:hover, .contact-info a:focus { color: #FCAF17; }
.social-links {
  margin-left: auto;
  display: flex;
  gap: 24px;
}
.social-links img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%) contrast(140%);
  opacity: 0.8;
  transition: filter 0.16s, opacity 0.18s;
}
.social-links img:hover, .social-links img:focus {
  filter: grayscale(10%) contrast(210%);
  opacity: 1;
}
@media (max-width: 800px) {
  footer .content-wrapper { flex-direction: column; gap: 20px; }
  .social-links { margin-left: 0; }
}

/*--------- BUTTONS & INTERACTIVES ---------*/
button, .cta-btn, .price-tag {
  transition: background 0.13s, color 0.13s, box-shadow 0.14s, border-color 0.13s;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}

/*--------- COOKIE CONSENT BANNER ---------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  width: 100vw;
  background: #22232a;
  color: #fff;
  padding: 22px 10vw 18px 10vw;
  box-shadow: 0 -2px 22px rgba(26,37,66,0.12);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  opacity: 1;
  transition: transform 0.36s cubic-bezier(.73,.17,.46,1.10), opacity 0.33s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  border-radius: 6px;
  padding: 9px 23px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 2px;
  border: none;
  outline: none;
  background: #fff;
  color: #1A2542;
  box-shadow: 0 1px 8px rgba(25,25,40,0.04);
  transition: background 0.15s, color 0.14s;
}
.cookie-banner .accept {
  background: #FCAF17;
  color: #1A2542;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #1A2542;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #1A2542;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #434650;
  color: #fff;
}
.cookie-banner .settings {
  background: #F5F7FA;
  color: #111216;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FCAF17;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 15px 3vw;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
  .cookie-banner button { width: 100%; }
}

/* COOKIE MODAL DIALOG */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 3100;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(18, 24, 34, 0.70);
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.27s;
}
.cookie-modal.open {
  display: flex;
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-dialog {
  background: #fff;
  color: #1A2542;
  border-radius: 16px;
  max-width: 98vw;
  width: 425px;
  padding: 38px 32px 28px 32px;
  box-shadow: 0 18px 60px rgba(24,27,35,0.19), 0 1.5px 6px rgba(30,34,40,0.09);
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
  animation: modalSlideIn 0.35s cubic-bezier(.62,.14,.41,1.03);
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 16px;
  background: #FCAF17;
  color: #1A2542;
  border-radius: 50%;
  font-size: 1.3rem;
  width: 34px;
  height: 34px;
  text-align: center;
  border: none;
  z-index: 1;
  transition: background 0.14s, color 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #1A2542;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 5px 0;
  border-bottom: 1px solid #E4E6EA;
  font-size: 1.04rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #FCAF17;
  margin-right: 5px;
}
.cookie-category .essential {
  color: #6C7079;
  margin-left: 8px;
  font-size: 0.98rem;
  font-style: italic;
}
@media (max-width: 560px) {
  .cookie-modal-dialog {
    padding: 24px 8px 14px 8px;
    max-width: 98vw;
  }
}
@keyframes modalSlideIn {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: none; opacity: 1; }
}

/*--------- MISC & UTILS ---------*/
.text-section {
  margin-bottom: 16px;
}
.contact-teaser { margin-bottom: 20px; }

::-webkit-scrollbar {
  width: 8px;
  background: #E4E6EA;
}
::-webkit-scrollbar-thumb {
  background: #B6B9C5;
  border-radius: 4px;
}

/*--------- PRINT (optional) ---------*/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none; }
  body { background: #fff !important; color: #111 !important; }
}
