/* ================================================================
   Shine Dawn Technologie – Monochrome Sophisticated Theme
   Comprehensive Flexbox-Only Responsive CSS | Brand: Shine Dawn Technologie
   Font: Orbitron (display), Roboto (body) | Colors: black/white/gray + brand accents
   No CSS Grid/Columns at all! Spacing using gap, margin, padding in flex layouts
================================================================ */

/* RESET & BASELINE -------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  background: #fff;
  color: #181818;
  font-family: 'Roboto', Arial, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #143654;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #111;
  text-decoration: underline;
  outline: none;
}
ul, li {
  list-style: none;
}
section {
  width: 100%;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  color: inherit;
}

/* TYPOGRAPHY -------------------------- */
h1, .hero h1, .content-wrapper > h1 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #181818;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.08);
}
h2, .content-wrapper > h2 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #212121;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1.18;
}
h3, .content-wrapper > h3 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 8px;
}
.subtitle {
  font-size: 1.25rem;
  color: #3b3b3b;
  margin-bottom: 28px;
  font-family: 'Roboto', Arial, sans-serif;
}
p {
  margin-bottom: 14px;
  color: #222;
  font-size: 1rem;
}
strong {
  font-weight: 600;
}
.text-section li,
ul li {
  position: relative;
  padding-left: 1.3em;
  margin-bottom: 8px;
  color: #242424;
  font-size: 1rem;
}
.text-section li:before,
ul li:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #909090;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.6em;
}

/* =========== BRAND CONTAINERS AND LAYOUTS =========== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  padding-bottom: 10px;
}

/* MAIN NAVIGATION & HEADER -------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.06);
  position: relative;
  z-index: 30;
  border-bottom: 1px solid #f1f1f1;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 20px;
  padding: 14px 0 14px 0;
}
.logo-link img {
  height: 34px;
  width: auto;
  transition: filter 0.3s;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav ul li {
  display: flex;
}
.main-nav ul li a {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #232323;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #171717;
  color: #fff;
}
.cta.primary {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  background: #181818;
  color: #fff;
  border-radius: 8px;
  padding: 11px 28px;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.22s, box-shadow 0.22s, color 0.18s;
  box-shadow: 0 2px 10px 0 rgba(20,54,84,0.08);
  border: 2px solid transparent;
  margin-left: 10px;
  display: inline-block;
  line-height: 1.2;
}
.cta.primary:hover, .cta.primary:focus {
  background: #fff;
  color: #143654;
  border-color: #181818;
  box-shadow: 0 4px 24px 0 rgba(20,54,84,0.10);
  text-decoration: none;
}

/* MOBILE BURGER MENU -------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #181818;
  color: #fff;
  border-radius: 6px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 1045;
  margin-left: 12px;
  transition: background 0.16s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #232323;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 10px 32px 0 rgba(20,54,84,0.18);
  transform: translateX(-100vw);
  transition: transform 0.29s cubic-bezier(.67,.13,.1,.95);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  padding-left: 0;
}
.mobile-menu.menu-open {
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(.67,.13,.1,.95);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 19px;
  background: #232323;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  transition: background 0.21s;
}
.mobile-menu-close:active, .mobile-menu-close:focus {
  background: #143654;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 80vw;
  max-width: 320px;
  margin: 0 auto;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: #143654;
  background: #f5f7fa;
  border-radius: 8px;
  padding: 14px 18px;
  transition: background 0.16s, color 0.17s;
  margin-bottom: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #181818;
  color: #fff;
}

@media (max-width: 1024px) {
  .main-nav ul {
    gap: 13px;
  }
  .main-nav {
    gap: 10px;
    padding: 6px 0 6px 0;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 900px) {
  .main-nav {
    justify-content: flex-start;
  }
}

/* ================== SECTIONS & LAYOUTS ================== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.hero {
  background: #fff;
  padding: 60px 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 24px 0 rgba(1,2,3,0.04);
  min-height: 360px;
  border-bottom: 1px solid #f0f0f0;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 720px;
  margin: 0 auto;
  gap: 8px;
}
.features {
  background: #f6f6f7;
  border-radius: 18px;
  margin: 56px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.feature-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(16,26,36,0.04), 0 1.5px 10px rgba(20,54,84,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 26px 22px 22px 22px;
  min-width: 250px;
  flex: 1 1 225px;
  max-width: 340px;
  transition: box-shadow 0.2s;
  position: relative;
  margin-bottom: 20px;
}
.feature-item img {
  width: 45px;
  height: 45px;
  margin-bottom: 6px;
  opacity: 0.85;
}
.feature-item h3 {
  color: #181818;
  font-size: 1.18rem;
  margin-bottom: 4px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
}
.feature-item p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 34px rgba(20,54,84,0.15), 0 1.5px 10px rgba(20,54,84,0.11);
  z-index: 11;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(34,40,52,0.07);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

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

  .features {
    margin: 32px 0;
    padding: 32px 4px;
    border-radius: 12px;
  }
  .feature-item {
    min-width: 0;
    max-width: 100%;
  }
}

/******** CTA SECTION ********/
.cta-section {
  background: #fff;
  margin: 44px 0 0 0;
  border-radius: 14px;
  box-shadow: 0 2px 24px 0 rgba(1,2,3,0.07);
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.05rem;
  color: #143654;
  margin-bottom: 7px;
}
@media (max-width: 540px) {
  .cta-section, .features, section {
    padding: 16px 0 16px 0;
  }
  .container {
    padding: 0 7px;
  }
}

/******** SERVICES LIST ********/
.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
  margin-bottom: 22px;
}
.service-item {
  background: #f6f7f9;
  border-radius: 11px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px 0 rgba(20,54,84,0.03);
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  position: relative;
  transition: box-shadow 0.16s;
}
.service-item h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.07rem;
  color: #161616;
  margin-bottom: 3px;
}
.service-item .service-price {
  font-size: 1rem;
  color: #878787;
  font-weight: 400;
  margin-left: 20px;
  font-family: 'Roboto', Arial, sans-serif;
}
.service-item p {
  color: #232323;
  font-size: 1rem;
}
.service-item:hover {
  box-shadow: 0 8px 32px 0 rgba(20,54,84,0.15);
  z-index: 8;
}

/********* TESTIMONIALS/REVIEWS *********/
.testimonials {
  background: #f4f4f4;
  border-radius: 18px;
}
.testimonials .content-wrapper {
  gap: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 22px;
  box-shadow: 0 2px 18px 0 rgba(20,32,40,0.07);
  position: relative;
  border-left: 6px solid #143654;
  transition: box-shadow 0.23s, border-color 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 36px 0 rgba(20,54,84,0.18);
  border-color: #181818;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.09rem;
  font-style: italic;
  margin: 0 0 4px 0;
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
  font-size: 0.98rem;
}
.star-rating {
  color: #143654;
  font-size: 1.15rem;
  letter-spacing: 2px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
}
@media (max-width: 580px) {
  .testimonial-card {
    padding: 14px;
    gap: 10px;
  }
}

/******** CONTACT/INFO SECTIONS ********/
.contact-section .container {
  margin-bottom: 30px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  font-size: 1.07rem;
}
.map-placeholder {
  background: #e7e7ea;
  border-radius: 9px;
  padding: 34px 14px;
  font-size: 0.99rem;
  color: #555;
  margin-top: 10px;
}

/******** FOOTER ********/
footer {
  background: #181818;
  color: #fff;
  padding: 34px 0 24px 0;
  border-top: 3px solid #143654;
  min-height: 90px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  margin-bottom: 12px;
}
.footer-logo {
  width: 48px;
  height: 48px;
  margin-right: 18px;
}
.footer-nav ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-nav ul li a {
  color: #fff;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 1rem;
  opacity: 0.8;
  transition: background 0.16s, opacity 0.18s;
}
.footer-nav ul li a:hover, .footer-nav ul li a:focus {
  background: #143654;
  opacity: 1.0;
  text-decoration: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #d2d2d2;
  font-size: 0.98rem;
}
.footer-contact a {
  color: #57B2EA;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/********* COOKIE CONSENT BANNER *********/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: #262626;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 26px 12vw 24px 12vw;
  box-shadow: 0 -6px 30px 0 rgba(20,54,84,0.15);
  gap: 26px;
  transition: transform 0.28s cubic-bezier(.67,.13,.1,.95);
}
.cookie-banner.hide {
  transform: translateY(200px);
  pointer-events: none;
}
.cookie-banner__msg {
  flex: 1 1 auto;
  font-size: 0.98rem;
  color: #fff;
}
.cookie-banner__buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 9px 24px;
  font-size: 1rem;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  border-radius: 7px;
  background: #fff;
  color: #143654;
  border: 2px solid #181818;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, border-color 0.14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #143654;
  color: #fff;
  border-color: #143654;
}
.cookie-btn:active {
  filter: brightness(0.95);
}
.cookie-btn.reject {
  background: #fff;
  color: #b11226;
  border-color: #b11226;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b11226;
  color: #fff;
}
.cookie-btn.settings {
  background: #f5f7fa;
  color: #222;
  border-color: #878787;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #143654;
  color: #fff;
}
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 11px 18px 11px;
    gap: 14px;
  }
  .cookie-banner__buttons {
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
  }
  .cookie-btn {
    width: 100%;
    margin-bottom: 3px;
    min-width: 140px;
  }
}

/********* COOKIE SETTINGS MODAL *********/
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; width:100vw; height:100vh;
  background: rgba(0,0,0,0.58);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s cubic-bezier(.67,.13,.1,.95);
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 13px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 44px 0 rgba(34,40,52,0.13);
  min-width: 320px;
  max-width: 96vw;
  width: 420px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 4100;
}
.cookie-modal h2 {
  font-size: 1.29rem;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 10px 0;
  border-bottom: 1px solid #ededed;
  margin-bottom: 6px;
}
.cookie-modal .category-label {
  color: #181818;
}
.cookie-toggle {
  width: 42px;
  height: 23px;
  background: #d8dade;
  border-radius: 14px;
  position: relative;
  transition: background 0.19s;
  flex-shrink: 0;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 3px;
  width: 19px; height: 19px;
  background: #878787;
  border-radius: 50%;
  transition: left 0.19s, background 0.19s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 20px;
  background: #143654;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-actions button {
  padding: 8px 22px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  border-radius: 7px;
  border: 1.5px solid #143654;
  color: #143654;
  background: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal .cookie-actions button:hover, .cookie-modal .cookie-actions button:focus {
  background: #143654;
  color: #fff;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: #e9e9e9;
  color: #232323;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.16s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #143654;
  color: #fff;
}
@media (max-width: 480px){
  .cookie-modal{ padding:18px 7px 14px 7px; min-width:initial; width:94vw; }
}

/* ====== ANIMATIONS / EFFECTS ====== */
.hero, .cta-section, .features {
  animation: fadeInUp 1s cubic-bezier(.4,0,.2,1) 0.15s;
  animation-fill-mode: both;
}
@keyframes fadeInUp {
  0% { opacity:0; transform:translateY(50px); }
  100% { opacity:1; transform:translateY(0); }
}
.card, .feature-item, .service-item, .testimonial-card {
  transition: box-shadow 0.18s cubic-bezier(.24,0,.38,1), border 0.18s;
}
.cta.primary, .cookie-btn, .cookie-modal .cookie-actions button {
  transition: background 0.18s, color 0.18s, border-color 0.14s, box-shadow 0.22s;
}
.mobile-menu, .mobile-menu.menu-open {
  transition: transform 0.33s cubic-bezier(.67,.13,.1,.95);
}

/* ===== MISC SMALL ELEMENTS ===== */
::-webkit-input-placeholder { color: #b2b2b2; }
::-moz-placeholder { color: #b2b2b2; }
:-ms-input-placeholder { color: #b2b2b2; }
::placeholder { color: #b2b2b2; }

hr { border: none; height: 1px; background: #ddd; margin: 32px 0; }

/***** RESPONSIVE TYPOGRAPHY & SPACING *****/
@media (max-width:650px){
  h1, .hero h1 {font-size: 2rem;}
  h2 { font-size: 1.32rem;} 
  .cta-section h2 { font-size:1.15rem;}
}

@media (max-width:400px){
  .main-nav, .footer-nav, .footer-contact {
    font-size: 0.97rem;
  }
  .feature-item, .card {
    padding: 15px 7px;
  }
}

/* ================================
   DARK/MONOCHROME ELEVATIONS & HOVERS
================================ */
.card, .feature-item, .service-item, .testimonial-card {
  box-shadow: 0 2px 12px 0 rgba(16,26,36,0.07);
}
.card:hover, .card:focus-within,
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 8px 40px 0 rgba(20,54,84,0.26);
}

/* ============= ACCESSIBILITY ================ */
*:focus-visible {
  outline: 2px dashed #143654;
  outline-offset: 2px;
}

/* ============= PRINT STYLES ================ */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  section, .section, .features, .about, .cta-section, .services-list, .card, .feature-item {
    box-shadow: none !important;
    background: #fff !important;
    color: #111 !important;
  }
}
