/* 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 {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
  scroll-behavior: smooth;
}
body {
  background: #171a1c;
  color: #EBEBEB;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after {
  box-sizing: inherit;
}
ul, ol, dl { margin-left: 20px; }
li { margin-bottom: 8px; }
a { color: #F4BE3B; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #FFD24B; text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #EBEBEB;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5, h6 { font-size: 1.1rem; }

p, ul, ol, dl, li, blockquote, .text-section, .price {
  font-family: 'Roboto', Arial, sans-serif;
  color: #C6D0DC;
  font-size: 1rem;
  line-height: 1.6;
}
strong { color: #EBEBEB; font-weight: bold; }
em { color: #EBEBEBAA; font-style: italic; }

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #191B1E;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(24,72,108,0.04), 0 1px 2px 0 rgba(106, 117, 130, 0.09);
}

/* FLEX UTILS (MANDATORY PATTERNS) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #23242a;
  border: 1px solid #2d323c;
  border-radius: 10px;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.05), 0 0.5px 1.5px 0 rgba(24, 72, 108, 0.07);
  display: flex;
  flex-direction: column;
  min-width: 230px;
  padding: 24px;
}
.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;
  gap: 20px;
  padding: 20px;
  background: #EBEBEB;
  color: #23242a;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(24,72,108,0.09);
  margin-bottom: 20px;
  flex-direction: column;
}
.testimonial-card p {
  font-size: 1.14rem;
  color: #23242a;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
}
.testimonial-name {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #18486C;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.price {
  background: #23242a;
  color: #F4BE3B;
  border-radius: 6px;
  font-weight: 700;
  padding: 4px 12px;
  margin-left: 8px;
  font-size: 1.07em;
  letter-spacing:0.03em;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.3s;
  min-width: 180px;
  margin-bottom: 12px;
  border: none;
}
.btn-primary {
  background: #18486C;
  color: #F4BE3B;
  box-shadow: 0 3px 14px 0 rgba(24,72,108,0.15);
}
.btn-primary:hover,
.btn-primary:focus {
  background: #133a55;
  color: #FFD24B;
  box-shadow: 0 6px 16px 0 rgba(24,72,108,0.19);
}

.btn-secondary {
  background: #EBEBEB;
  color: #18486C;
  border: 2px solid #18486C;
}
.btn-secondary:hover,
.btn-secondary:focus {
  border-color: #F4BE3B;
  color: #191B1E;
  background: #F4BE3B;
}

/* HEADER & NAVIGATION */
header {
  background: #22252B;
  box-shadow: 0 2px 12px 0 rgba(24,72,108,0.07);
  padding: 0;
}
header .container {
  padding-top: 10px;
  padding-bottom: 10px;
}
header .content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #C6D0DC;
  padding: 4px 6px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: #18486C;
  color: #F4BE3B;
}
header img {
  height: 44px;
  width: auto;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #23242a;
  color: #F4BE3B;
  font-size: 2rem;
  border-radius: 8px;
  padding: 6px 16px;
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 1202;
  border: 2px solid #2d323c;
  box-shadow: 0 2px 8px 0 rgba(24,72,108,0.10);
  transition: background 0.22s, color 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #18486C;
  color: #FFD24B;
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1201;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,72,108,0.96);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.35s cubic-bezier(0.7,0,0.3,1);
  transform: translateX(-100vw);
  padding: 0 24px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #F4BE3B;
  border: none;
  font-size: 2rem;
  margin-top: 32px;
  margin-bottom: 22px;
  cursor: pointer;
  padding: 6px 11px;
  border-radius: 99px;
  transition: background 0.15s,color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #2d323c;
  color: #FFD24B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 90vw;
  margin-top: 16px;
}
.mobile-nav a {
  color: #F4BE3B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid #2d323c;
  transition: color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #FFD24B;
}
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN & TYPOGRAPHY */
main {
  margin-top: 0px;
  background: transparent;
}
dt {
  color: #F4BE3B;
  font-weight: 700;
  margin-top: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
dd {
  color: #C6D0DC;
  margin-left: 18px;
  margin-bottom: 8px;
}
.text-section {
  background: #22252B;
  border-radius: 7px;
  padding: 18px 16px;
  margin-bottom: 16px;
  color: #B3C7D6;
  box-shadow: 0 1.5px 6px 0 rgba(24,72,108,0.06);
}

.read-more {
  color: #F4BE3B;
  font-weight: 700;
  transition: color 0.17s;
}
.read-more:hover { color: #FFD24B; }

ol {
  margin-left: 24px;
}

/* BLOG ARTICLE */
article {
  background: #22252b;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 rgba(24,72,108,0.08);
}
article h2 { margin-bottom: 12px; font-size: 1.35rem; color: #F4BE3B; }
article p { margin-bottom: 8px; }

/* FOOTER */
footer {
  background: #23242A;
  padding: 36px 0 30px 0;
  color: #B3C7D6;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #B3C7D6;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
footer nav a:hover,
footer nav a:focus {
  color: #F4BE3B;
}
footer .text-section {
  background: transparent;
  border-radius: 0;
  color: #B3C7D6;
  padding: 0;
  margin-bottom: 0;
}
footer .copyright {
  color: #788A99;
  font-size: 0.95rem;
  margin-top: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}
footer img {
  height: 36px;
  margin-bottom: 8px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
}
.social-links a {
  display: inline-block;
  padding: 7px;
  border-radius: 50%;
  background: #191B1E;
  border: 1px solid #2d323c;
  transition: background 0.2s;
}
.social-links a:hover {
  background: #18486C;
}
.social-links img {
  display: block;
  height: 22px;
  width: 22px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 28px 18px 23px 18px;
  background: #1e2125;
  color: #EBEBEB;
  z-index: 1800;
  box-shadow: 0 -2px 12px 0 rgba(24,72,108,0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: cookie-fade-in 0.45s cubic-bezier(0.7,0,0.3,1);
}
@keyframes cookie-fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #EBEBEB;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-cookie {
  background: #23242A;
  color: #F4BE3B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 1.5px solid #2d323c;
  border-radius: 5px;
  padding: 11px 24px;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.btn-cookie.accept {
  background: #18486C;
  color: #F4BE3B;
  border: none;
}
.btn-cookie.accept:hover,
.btn-cookie.accept:focus {
  background: #F4BE3B;
  color: #18486C;
}
.btn-cookie.reject {
  background: #23242A;
  color: #EBEBEB;
  border: 1.5px solid #F4BE3B;
}
.btn-cookie.reject:hover,
.btn-cookie.reject:focus {
  background: #F4BE3B;
  color: #22252B;
}
.btn-cookie.settings {
  background: #23242A;
  color: #F4BE3B;
}
.btn-cookie.settings:hover,
.btn-cookie.settings:focus {
  background: #2d323c;
  color: #FFD24B;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1810;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24,72,108,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade-in 0.29s cubic-bezier(0.7,0,0.3,1);
}
@keyframes cookie-modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #1e2125;
  padding: 32px 24px 24px 24px;
  border-radius: 15px;
  box-shadow: 0 4px 40px 0 rgba(24,72,108,0.22);
  min-width: 320px;
  max-width: 96vw;
  color: #EBEBEB;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookie-modal-content-in 0.37s cubic-bezier(0.7,0,0.3,1);
}
@keyframes cookie-modal-content-in {
  from { transform: translateY(-50px) scale(0.9); }
  to { transform: translateY(0) scale(1); }
}
.cookie-modal .cookie-close {
  position: absolute; top: 18px; right: 18px;
  background: none;
  border: none;
  color: #F4BE3B;
  font-size: 1.4em;
  cursor: pointer;
  border-radius: 50%;
  padding: 5px 10px;
}
.cookie-modal .cookie-close:hover,
.cookie-modal .cookie-close:focus {
  background: #23242A;
  color: #FFD24B;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: 500;
  min-width: 135px;
  color: #F4BE3B;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type='checkbox'] {
  accent-color: #18486C;
  width: 18px;
  height: 18px;
}
.cookie-category input[disabled] {
  filter: grayscale(1) opacity(0.6);
  cursor: not-allowed;
}


/* MICRO-INTERACTIONS & HOVER EFFECTS */
.card, .testimonial-card, article {
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, article:hover {
  box-shadow: 0 7px 24px 0 rgba(24,72,108,0.17);
  transform: translateY(-5px) scale(1.012);
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(24,72,108,0.13);
  transform: scale(1.016);
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1060px) {
  .container { max-width: 96vw; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 26px 8px;
  }
  .content-wrapper,
  footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
    align-items: stretch;
  }
  .content-grid { flex-direction: column; gap: 19px; }
  .card-container { flex-direction: column; gap: 19px; }
  .text-image-section { flex-direction: column; align-items: stretch; gap: 22px; }
  .testimonial-card { padding: 16px; }
  footer .content-wrapper { gap: 24px; }
}

@media (max-width: 560px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.12rem; }
  .btn-primary, .btn-secondary { min-width: 130px; font-size: 1rem; padding: 10px 19px; }
  .section { padding: 15px 3px; margin-bottom: 38px; }
}

/* LISTS IN PRODUCTS */
ul ul, ol ul, ul ol, ol ol {
  margin-left: 16px;
  margin-top: 7px;
}
li strong { color: #F4BE3B; }

/* MISC */
hr {
  border: none;
  border-top: 1px solid #3a404a;
  margin: 18px 0;
}

::-webkit-scrollbar-thumb {
  background: #2d323c;
}
::-webkit-scrollbar {
  width: 10px;
  background: #23242A;
}

/* Hide for accessibility if JS toggles [aria-hidden] */
[aria-hidden="true"] { display: none !important; }

/* Z-INDEXS:
header > 1000
mobile menu > 1200
cookie > 1800
cookie-modal > 1810
*/
