/* ----------------------------------------------------
   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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  line-height: 1.4;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #232a34;
  color: #f5f7fa;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #F9BE3D;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #FFFFFF;
  text-decoration: underline;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 12px;
  list-style: disc;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* ----------------------------------------------------
   BRAND FONTS
-----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&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;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #F9BE3D;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #F9BE3D;
  text-shadow: 0 2px 12px rgba(20,24,32,0.22);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #F9BE3D;
}
h3 {
  font-size: 1.3rem;
  color: #F9BE3D;
}
h4, h5, h6 {
  font-size: 1.13rem;
  color: #F9BE3D;
}
p, li, ul, ol {
  color: #e4e7ec;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
strong {
  color: #fff;
  font-weight: 700;
}

/* ----------------------------------------------------
   LAYOUT STRUCTURE
-----------------------------------------------------*/
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
/* Spacing Patterns */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(26,30,36,0.98);
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(20,24,32,0.08);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.text-section {
  max-width: 700px;
  margin-bottom: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232a34;
  border-radius: 10px;
  box-shadow: 0 2px 16px 0 rgba(31, 42, 52, 0.18);
  border: 1px solid #444f5e;
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fafafc;
  color: #242B35;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(32,46,60,0.10);
  min-width: 220px;
  max-width: 420px;
  border: 1px solid #c0c6ce;
}
.testimonial-card p {
  color: #232a34;
  font-size: 1.08rem;
  line-height: 1.5;
}
.testimonial-name {
  font-weight: bold;
  color: #284670;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-rating {
  color: #F9BE3D;
  font-size: 1.3rem;
  margin-left: 8px;
  letter-spacing: 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #27303D;
  border-radius: 9px;
  padding: 18px 16px;
  box-shadow: 0 1.5px 10px 0 rgba(25, 31, 37, 0.10);
  margin-bottom: 20px;
  border: 1px solid #39475c;
  color: #dbe1e9;
}

/* ----------------------------------------------------
   NAVIGATION – HEADER & MOBILE
-----------------------------------------------------*/
header {
  background: #222833;
  border-bottom: 2.5px solid #F9BE3D;
  padding-top: 8px;
  padding-bottom: 8px;
  position: sticky;
  top: 0;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ececec;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F9BE3D;
  color: #222833;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(249,190,61,0.18);
}
.main-nav img {
  max-height: 40px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
}
.cta-btn {
  background: #F9BE3D;
  color: #284670 !important;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 9px 22px;
  margin-left: 10px;
  box-shadow: 0 2px 16px 0 rgba(249,190,61,0.08);
  border: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.06rem;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fccf67;
  color: #222833 !important;
  box-shadow: 0 4px 20px 0 rgba(249,190,61,0.13);
}
.mobile-menu-toggle {
  display: none;
  background: #27303D;
  color: #F9BE3D;
  border-radius: 6px;
  border: 1px solid #333a47;
  font-size: 2.13rem;
  padding: 2px 15px 0 15px;
  margin-left: auto;
  margin-right: 8px;
  z-index: 70;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F9BE3D;
  color: #232a34;
}
.mobile-menu {
  display: flex;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 40, 51, 0.98);
  z-index: 99;
  transform: translateX(100vw);
  transition: transform 0.37s cubic-bezier(.9,.2,.32,1.11), opacity 0.18s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #F9BE3D;
  z-index: 110;
  transition: color 0.13s;
  padding: 3px 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fffbe8;
  background: #F9BE3D22;
  border-radius: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  padding: 96px 30px 30px 36px;
  width: 100vw;
}
.mobile-nav a {
  font-size: 1.28rem;
  color: #F9BE3D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 0;
  border-radius: 3.5px;
  width: 100%;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #F9BE3D;
  color: #222833;
  text-decoration: none;
}

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

/* ----------------------------------------------------
   LISTS & FEATURE ICON ROWS
-----------------------------------------------------*/
ul {
  margin-top: 0;
  margin-bottom: 12px;
}
section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  padding-left: 0;
}
section ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 14px;
  background: #222833;
  border-radius: 8px;
  min-width: 230px;
  box-shadow: 0 1px 7px 0 rgba(42,58,74,0.09);
  font-size: 1.01rem;
  margin-bottom: 0;
  border: 1.5px solid #39475c;
  color: #e3e7ef;
}
section ul li img {
  width: 38px;
  height: 38px;
  margin-right: 7px;
  background: #2b3b55;
  border-radius: 4px;
  border: 1px solid #3c4d68;
}
section ul ul {
  flex-direction: column;
  gap: 8px;
  background: none;
  box-shadow: none;
  padding: 0 0 0 10px;
}
section ul ul li {
  background: none;
  border: none;
  padding: 2px 0;
  min-width: 0;
  box-shadow: none;
  font-size: 0.98rem;
  color: #d6ddee;
}

/* ----------------------------------------------------
   BUTTONS & CTA
-----------------------------------------------------*/
button,
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  outline: none;
  border: none;
  border-radius: 6px;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #F9BE3D;
  outline-offset: 1.5px;
}

/* -- Shared hover for any button-like -- */
button:hover, .cta-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 3px 18px 0 rgba(249,190,61,0.18);
}

/* ----------------------------------------------------
   FOOTER
-----------------------------------------------------*/
footer {
  background: #1b2027;
  padding: 30px 0 22px 0;
  border-top: 3px solid #F9BE3D;
  margin-top: 24px;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
  justify-content: center;
}
.footer-nav a {
  color: #F9BE3D;
  text-decoration: underline;
  font-size: 1rem;
  padding: 3px 8px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F9BE3D;
  color: #232a34;
  text-decoration: none;
}
.footer-info {
  color: #b7bac3;
  font-size: 0.97rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  justify-content: center;
}
footer .container .content-wrapper {
  align-items: center;
  gap: 16px;
}

/* ----------------------------------------------------
   COOKIES CONSENT BANNER
-----------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  z-index: 150;
  background: #1b2027;
  color: #f5f7fc;
  box-shadow: 0 -2px 12px 0 rgba(34, 40, 51, 0.20);
  border-top: 2.5px solid #F9BE3D;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  font-size: 1rem;
  animation: bannerReveal 0.7s cubic-bezier(.5,1.2,.28,.95);
}
@keyframes bannerReveal {
  0% { transform: translateY(50px); opacity: 0; }
  80% { opacity: 0.91; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 17px;
  font-size: 1rem;
  font-weight: bold;
  outline: none;
  border: none;
  transition: background 0.16s, color 0.16s;
  background: #284670;
  color: #F9BE3D;
  margin-right: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F9BE3D;
  color: #232a34;
}
.cookie-btn.settings {
  background: #222833;
  color: #F9BE3D;
  border: 1px solid #3a4760;
  margin-left: 3px;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #f9be3d2c;
}

/* Cookies Modal */
.cookie-modal-overlay {
  display: flex;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32,32,40, 0.98);
  z-index: 200;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s;
}
.cookie-modal {
  background: #eceff2;
  color: #232a34;
  padding: 36px 32px 30px 32px;
  border-radius: 16px;
  min-width: 90%;
  max-width: 420px;
  box-shadow: 0 4px 28px 0 rgba(28,38,50,0.23);
  animation: modalPopIn 0.32s cubic-bezier(.7,1.4,.28,.97);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@keyframes modalPopIn {
  0% { transform: scale(0.85); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-block: 0 14px;
  font-size: 1.32rem;
  color: #284670;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #fffbe8;
  border-radius: 7px;
  padding: 12px 10px 11px 18px;
  margin-bottom: 11px;
  box-shadow: 0 1px 6px 0 rgba(232,192,78,0.07);
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
}
.cookie-modal .toggle {
  appearance: none;
  width: 40px; height: 22px;
  border-radius: 11px;
  background: #b7bac3;
  position: relative;
  outline: none;
  margin-top: 2px;
  transition: background 0.13s;
  cursor: pointer;
}
.cookie-modal .toggle:checked {
  background: #284670;
}
.cookie-modal .toggle:before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.13s;
  box-shadow: 0 1px 3px 0 #8884;
}
.cookie-modal .toggle:checked:before {
  left: 20px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 19px;
  top: 15px;
  background: none;
  font-size: 2em;
  color: #23323e;
  border: none;
  padding: 4px 8px;
  border-radius: 7px;
}
.cookie-modal .close-modal:hover {
  color: #E29924;
  background: #f9be3d14;
}
.cookie-modal .modal-btn-row {
  display: flex;
  gap: 13px;
  margin-top: 8px;
}

/* ----------------------------------------------------
   RESPONSIVENESS
-----------------------------------------------------*/
@media (max-width: 990px) {
  .container {
    max-width: 95vw;
    padding-left: 12px; padding-right: 12px;
  }
  section, .cookie-banner {
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 769px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.23rem; }
  .content-wrapper, .content-grid {
    gap: 16px;
  }
  section {
    padding: 26px 8px;
    margin-bottom: 36px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 7px; padding-right: 7px;
  }
  section ul {
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
  }
  .card-container, .content-grid, .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item {
    min-width: 0;
  }
  .testimonial-card {
    min-width: 0; max-width: 100%;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 13px 7px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    min-width: 95vw;
    padding: 19px 5vw 17px 5vw;
  }
}

/* ----------------------------------------------------
   MICRO-INTERACTIONS/TRANSITIONS
-----------------------------------------------------*/
.cta-btn, .cookie-btn, button, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.21s, color 0.17s, box-shadow 0.19s, transform 0.13s;
}
.cta-btn:active, .cookie-btn:active, button:active {
  transform: scale(0.96);
}
section, .card, .testimonial-card, .feature-item {
  transition: box-shadow 0.22s, background 0.18s, border 0.15s;
}
section:hover, .card:hover, .feature-item:hover {
  box-shadow: 0 4.5px 24px 0 rgba(27,32,39,0.11);
}

/* ----------------------------------------------------
   ADDITIONAL INDUSTRIAL MODERN STYLES
-----------------------------------------------------*/
section, .card, .testimonial-card {
  border-radius: 13px;
  border: 1.7px solid #39475c;
  box-shadow: 0 2px 16px 0 rgba(20,28,35,0.08);
}
.card, .testimonial-card {
  background: #232a34;
}
section {
  background: #232a34;
  border: 1.7px solid #39475c;
}
.testimonial-card {
  background: #fafafc;
  color: #242B35;
  border: 1.7px solid #dedef2;
}
.card {
  background: #222833;
}
hr {
  height: 2px;
  background: #39475c;
  border: none;
  margin: 36px 0;
}
::-webkit-scrollbar {
  width: 9px;
  background: #232a34;
}
::-webkit-scrollbar-thumb {
  background: #39475c;
  border-radius: 7px;
}

/* Metallic accent lines (decorative) */
.section-title { /* For headings that need accent underlines */
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #F9BE3D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
}
.section-title:after {
  content: '';
  position: absolute;
  left: 0; bottom: -7px;
  width: 90px; height: 4px;
  border-radius: 2px;
  background: #F9BE3D;
  box-shadow: 0 2px 7px #f9be3d5f;
}

/* ----------------------------------------------------
   MISCELLANEOUS
-----------------------------------------------------*/
::-webkit-input-placeholder { color:#b0b8be; }
::-moz-placeholder { color:#b0b8be; }
:-ms-input-placeholder { color:#b0b8be; }
::placeholder { color:#b0b8be; }

/* Remove spin from number inputs */
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none; margin: 0;
}
input[type=number] { -moz-appearance: textfield; }

/* ----------------------------------------------------
   PRINT STYLES
-----------------------------------------------------*/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section { padding: 10px !important; margin-bottom: 17px !important; }
}
