/* ========================
   CSS RESET & BASE STYLES
   ======================== */
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;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: linear-gradient(135deg, #d2e6f2 0%, #f6fafc 100%);
  color: #19334d;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #19334d;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8c6b32;
  text-decoration-thickness: 2px;
}

ul, ol {
  margin-left: 1.2em;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

/* ========================
   BRAND TYPOGRAPHY
   ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #19334d;
}
h1 { font-size: 2.4rem; line-height: 1.13; margin-bottom: 24px; }
h2 { font-size: 1.8rem; line-height: 1.22; margin-bottom: 20px; }
h3 { font-size: 1.3rem; line-height: 1.33; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }

p, li, address, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #19334d;
  margin-bottom: 1em;
}

strong {
  font-weight: 600;
  color: #19334d;
}

small {
  font-size: 0.9rem;
  color: #647898;
}

/* ========================
   LAYOUT CONTAINERS
   ======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========================
   HEADER & NAVIGATION
   ======================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px -9px #19334d22;
  position: relative;
  z-index: 1101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  position: relative;
}
.logo img {
  height: 38px;
  transition: transform 0.22s;
}
.logo:hover img {
  transform: scale(1.08) rotate(-2deg);
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #19334d;
  text-decoration: none;
  padding: 7px 8px 7px 8px;
  border-radius: 6px;
  transition: background 0.17s, color 0.13s;
}
nav a:hover,
nav a:focus {
  background: #d2e6f2;
  color: #8c6b32;
}

.cta-primary {
  background: linear-gradient(90deg, #8c6b32 0%, #d2e6f2 100%);
  color: #19334d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  padding: 11px 28px;
  border-radius: 32px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 14px -6px #19334d22;
  transition: background 0.25s, color 0.18s, transform 0.18s;
  margin-left: 12px;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-block;
}
.cta-primary:hover,
.cta-primary:focus {
  background: linear-gradient(90deg, #d2e6f2 20%, #8c6b32 100%);
  color: #19334d;
  transform: translateY(-2px) scale(1.03);
}

/* Hide burger on desktop */
.mobile-menu-toggle {
  display: none;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  background: linear-gradient(128deg, #d2e6f2 82%, #8c6b32 100%);
  padding: 68px 0 54px 0;
  min-height: 270px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}
.hero h1 {
  font-size: 2.4rem;
  color: #19334d;
}
.hero p {
  font-size: 1.15rem;
  color: #51627c;
}
.hero .cta-primary {
  margin-top: 10px;
}

/* ========================
   FLEXBOX GRID & SECTIONS
   ======================== */
.card-container, .feature-grid, .equipment-grid, .content-grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
  align-items: stretch;
}
.feature-grid, .equipment-grid {
  gap: 32px 28px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 24px -10px #19334d22;
  padding: 26px 24px;
  flex: 1 1 312px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.19s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 32px -7px #19334d27;
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}

.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;
}

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

/* ========== Features / Equipment ========== */
.feature-item, .equipment-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px -7px #19334d17;
  padding: 28px 22px 21px 22px;
  flex: 1 1 260px;
  min-width: 170px;
  transition: box-shadow 0.19s, transform 0.14s;
}
.feature-item:hover, .equipment-item:hover {
  box-shadow: 0 6px 24px -7px #19334d25;
  transform: scale(1.035);
}

.feature-item img, .equipment-item img {
  height: 42px;
  width: 42px;
  margin-bottom: 7px;
}


/* =========== Testimonials ============= */
.testimonial-card,
.analyst-comments blockquote {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #f6fafc;
  border-radius: 16px;
  margin-bottom: 22px;
  box-shadow: 0 1px 8px -2px #19334d19;
  color: #19334d;
  transition: box-shadow 0.18s, background 0.16s;
  font-size: 1.08rem;
}
.testimonial-card p,
.analyst-comments blockquote {
  margin: 0;
  font-weight: 400;
}
.testimonial-card span,
.analyst-comments span {
  font-size: 1rem;
  color: #647898;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-left: auto;
}

.analyst-comments {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ========================
   TABLES & CHARTS
   ======================== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px -7px #19334d16;
  margin: 16px 0 18px 0;
}
th, td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #e3e5e9;
  font-size: 1rem;
}
th {
  background: #d2e6f2;
  color: #19334d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
tr:last-child td {
  border-bottom: none;
}

.chart-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d2e6f2;
  border-radius: 16px;
  min-height: 120px;
  padding: 16px;
  margin-bottom: 12px;
}
.chart-placeholder img {
  height: 67px;
  width: auto;
  opacity: 0.8;
}

/* ========================
   ADDRESS/CONTACT
   ======================== */
address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
address div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
address img {
  height: 22px;
  width: 22px;
  opacity: 0.75;
}
/* ========================
   FOOTER
   ======================== */
footer {
  background: #19334d;
  color: #fff;
  padding: 34px 0 18px 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 22px;
}
footer nav a {
  color: #fff;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.92;
  transition: color 0.18s;
}
footer nav a:hover,
footer nav a:focus {
  color: #d2e6f2;
}
footer small {
  color: #a4b8cd;
  font-size: 0.95rem;
}

/* ========================
   MOBILE NAVIGATION
   ======================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #19334d;
  margin-left: 14px;
  cursor: pointer;
  align-items: center;
  transition: color 0.18s;
  z-index: 1201;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(130deg, #19334d 65%, #8c6b32 100%);
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.66,.04,.38,1.02);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #fff;
  margin: 24px 28px 13px 0;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover {
  color: #d2e6f2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 14px;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 500;
  margin-bottom: 0;
  text-decoration: none;
  padding: 12px 6px 12px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.16s;
  min-width: 200px;
  touch-action: manipulation;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #8c6b32;
  color: #d2e6f2;
}

/* Hamburger visible on mobile */
@media (max-width: 990px){
  .mobile-menu-toggle{
    display: flex;
  }
  header nav, .cta-primary {
    display: none !important;
  }
}

@media (max-width: 990px){
  .mobile-menu{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========================
   COOKIE CONSENT BANNER
   ======================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 40px);
  max-width: 430px;
  background: #fff;
  color: #19334d;
  box-shadow: 0 -2px 20px -4px #19334d1a;
  border-radius: 17px 17px 0 0;
  padding: 28px 24px 18px 24px;
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.38s, opacity 0.22s;
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.button-cookie {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  border: none;
  padding: 10px 19px;
  font-size: 0.99rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 5px -2px #19334d26;
  transition: background 0.16s, color 0.14s;
}
.button-cookie.accept {
  background: #8c6b32;
  color: #fff;
}
.button-cookie.accept:hover,
.button-cookie.accept:focus {
  background: #19334d;
  color: #d2e6f2;
}
.button-cookie.reject {
  background: #d2e6f2;
  color: #19334d;
}
.button-cookie.reject:hover,
.button-cookie.reject:focus {
  background: #19334d;
  color: #fff;
}
.button-cookie.settings {
  background: #fff;
  color: #19334d;
  border: 1px solid #d2e6f2;
}
.button-cookie.settings:hover,
.button-cookie.settings:focus {
  background: #d2e6f2;
  color: #19334d;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(25,51,77,0.56);
  z-index: 1600;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 5px 30px 2px #19334d30;
  padding: 38px 28px 24px 28px;
  width: 100%;
  max-width: 420px;
  color: #19334d;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: floatInModal 0.32s cubic-bezier(.48,.14,.52,1.18);
}
@keyframes floatInModal {
  0% { opacity: 0; transform: translateY(55px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.22rem;
  margin-bottom: 8px;
  margin-top: 0;
}
.cookie-modal-category {
  display: flex; align-items: center; gap: 17px; margin-bottom: 6px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #19334d;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #8c6b32;
  width: 21px;
  height: 21px;
  margin-right: 7px;
  border-radius: 4px;
  vertical-align: middle;
}
.cookie-modal-category .always-on {
  color: #6b819e;
  font-size: 0.99em;
  margin-left: 6px;
  font-weight: 500;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 22px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 19px;
  background: none;
  border: none;
  color: #19334d;
  font-size: 1.7rem;
  cursor: pointer;
}
.cookie-modal-close:hover { color: #8c6b32; }

/* ========================
   UTILITY CLASSES & DETAILS
   ======================== */
.d-none{ display: none!important; }
.d-block{ display: block!important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
/* List details */
ul, ol{ margin-bottom: 18px; }
li{ margin-bottom: 7px; }

/* Decorative borders */
h2, h3 {
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  margin: 12px 0 0 -2px;
  background: linear-gradient(90deg,#8c6b32 0%, #d2e6f2 98%);
  border-radius: 2px;
  opacity: 0.67;
}

/* ========== RESPONSIVE DESIGN ========= */
@media (max-width: 1200px){
  .container { max-width: 99vw; }
  .feature-grid, .equipment-grid, .card-grid { gap: 22px; }
}
@media (max-width: 991px){
  .container { padding: 0 12px; }
  .card-container { gap: 18px; }
  .feature-grid, .equipment-grid { gap: 20px; }
  .content-grid { gap: 14px; }
}
@media (max-width: 900px){
  .hero, .section { padding-left: 9px; padding-right: 9px; }
  .feature-item, .equipment-item, .card {
    min-width: 98vw;
    flex: 1 1 100%;
  }
  .feature-grid, .equipment-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .container { padding: 0 6px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.29rem; }
  .hero { padding: 45px 0 38px 0; }
  .section { padding: 28px 6px; margin-bottom: 38px; }
  .content-wrapper { gap: 14px; }
  .feature-item, .equipment-item, .card {
    padding: 18px 12px;
    min-width: 99vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .testimonial-card,.analyst-comments blockquote {
    flex-direction: column;
    gap: 14px;
    font-size: 1rem;
    padding: 16px 9px;
  }
  .cookie-banner {
    max-width: 97vw;
    padding: 20px 10px 15px 12px;
  }
  .cookie-modal {
    padding: 22px 7px 18px 14px;
    max-width: 99vw;
  }
}
@media (max-width: 650px){
  .hero{ min-height: 168px; }
  .feature-item img, .equipment-item img {
    height: 36px; width: 36px;
  }
}
@media (max-width: 480px){
  h1{ font-size: 1.32rem; }
  h2{ font-size: 1.07rem; }
  .logo img{ height: 26px; }
}

/* =========== PRINT =========== */
@media print { 
  header, footer, .cookie-banner, .mobile-menu {display:none!important;}
  .section{padding:0;}
  body{ background: #fff; color:#000; }
}

/* ========================
   END OF CSS FILE
   ======================== */
