/* RESET & BASE STYLES --------------------------------------------------- */
html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
nav,
main,
section,
footer,
header,
a,
img,
button,
span,
strong {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #171C23;
  color: #E9F1F7;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #FFB100;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #FFF2D6;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* TYPOGRAPHY --------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F7FBFF;
  margin-bottom: 18px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(18,28,34,0.17);
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  line-height: 1.12;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  letter-spacing: 0.015em;
  border-left: 5px solid #FFB100;
  padding-left: 12px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
strong {
  color: #FFB100;
}
.text-section p { margin-bottom: 16px; }

/* CONTAINER & CONTENT LAYOUT ------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* SPACING & FLEXBOX PATTERNS ------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #232931;
  border-radius: 13px;
  padding: 26px 22px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(16,25,37,0.15);
  position: relative;
  border: 1px solid #31404E;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(20,28,38,0.32);
  transform: translateY(-4px) scale(1.01);
}
.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: 16px;
  background: #E9F1F7;
  color: #1C4B6A;
  border-left: 5px solid #FFB100;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(28,75,106,0.08);
  margin-bottom: 20px;
  width: 100%;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(28,75,106,0.12);
}
.testimonial-card p {
  font-size: 1.1em;
  color: #1C4B6A;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #232931;
}
.testimonial-card strong {
  color: #1C4B6A;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CARDS & PRODUCT OPTIONS ----------------------------------------- */
.option-card {
  background: #232931;
  border-radius: 11px;
  border-left: 5px solid #FFB100;
  padding: 30px 22px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px rgba(44,58,74,0.14);
  min-width: 250px;
  width: 100%;
  transition: box-shadow 0.18s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.option-card h3 {
  color: #FFB100;
  font-size: 1.2rem;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.option-card:hover {
  box-shadow: 0 8px 36px 0 #1C4B6A33;
  border-color: #1C4B6A;
}

/* BUTTONS -------------------------------------------------------- */
.cta, .cookie-btn, .cookie-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFB100;
  color: #232931;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 38px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px 0 #FFB10022;
  outline: none;
  border: none;
  cursor: pointer;
  margin-top: 18px;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, transform 0.19s;
}
.cta:hover, .cookie-btn:hover, .cookie-modal-btn:hover,
.cta:focus, .cookie-btn:focus, .cookie-modal-btn:focus {
  background: #ffd885;
  color: #13171b;
  box-shadow: 0 4px 18px #FFB10055;
  transform: translateY(-2px) scale(1.02);
}

/* HEADER & NAVIGATION ----------------------------------------------- */
header {
  background: #181F25;
  border-bottom: 2px solid #232931;
  padding-top: 8px;
  padding-bottom: 8px;
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
header a img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  color: #E9F1F7;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 7px;
  font-size: 1.03em;
  letter-spacing: 0.03em;
  transition: background 0.12s, color 0.18s;
}
.main-nav a.cta {
  background: #FFB100;
  color: #232931;
  margin-left: 16px;
  box-shadow: 0 1.5px 5px #FFB10022;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #31404E;
}
.main-nav a.cta:hover,
.main-nav a.cta:focus {
  background: #ffd885;
  color: #101216;
}
.mobile-menu-toggle {
  display: none;
  background: #232931;
  color: #FFB100;
  font-size: 2rem;
  border: none;
  border-radius: 7px;
  padding: 5px 15px;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.16s;
  z-index: 1401;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FFB100;
  color: #1C4B6A;
  box-shadow: 0 0 0 2px #FFD88566;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #222831 85%, #384656 100%);
  box-shadow: 0 9px 36px #13171b66;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(0.85,0.26,0.37,1.12);
  z-index: 2004;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #313a45;
  color: #FFB100;
  border: none;
  font-size: 2.2em;
  border-radius: 7px;
  align-self: flex-end;
  margin: 28px 28px 10px 0;
  padding: 4px 17px 4px 15px;
  cursor: pointer;
  transition: background 0.15s, color 0.18s, box-shadow 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFB100;
  color: #191d26;
  box-shadow: 0 0 0 2px #FFB10055;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  margin-top: 35px;
  margin-left: 32px;
}
.mobile-nav a {
  color: #E9F1F7;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 12px 12px 12px 0;
  transition: color 0.19s, background 0.17s;
  border-radius: 6px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #FFB100;
  color: #101216;
}

/* FOOTER ---------------------------------------------------------- */
footer {
  background: #181F25;
  border-top: 2px solid #232931;
  padding-top: 34px;
  padding-bottom: 24px;
  margin-top: 80px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 44px;
}
footer img {
  height: 38px;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-right: 30px;
}
footer nav a {
  color: #FFB100;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06em;
  padding: 1px 0;
  transition: color 0.18s;
}
footer nav a:focus, footer nav a:hover {
  color: #FFD885;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  color: #E9F1F7;
  margin-top: 0px;
}
.footer-contact a { color: #FFB100; }
.footer-contact a:hover, .footer-contact a:focus { color: #FFD885; }

/* ICONS ----------------------------------------------------------- */
ul li img,
.text-section ul li img,
.card ul li img {
  height: 21px;
  width: 21px;
  vertical-align: middle;
  margin-right: 8px;
  filter: grayscale(30%) brightness(95%) contrast(120%) drop-shadow(0 1px 2px #222C3860);
}

/* SPECIAL CLASSES (for cards with icons/lists) */
.card ul, .content-wrapper ul {
  margin-top: 10px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}
.card ul li, .content-wrapper ul li {
  background: none;
  color: #E9F1F7;
  font-weight: 500;
  font-size: 1em;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  letter-spacing: 0.007em;
  border-left: 3px solid #31404e;
  padding-left: 10px;
}

.content-wrapper ol {
  margin-top: 9px;
  margin-bottom: 0;
  padding-left: 20px;
  font-size: 16.5px;
}
.content-wrapper ol li {
  margin-bottom: 7px;
  color: #FFB100;
  font-weight: 600;
  letter-spacing: 0.02em;
  list-style-position: inside;
}

/* MICROINTERACTIONS & ANIMATIONS --------------------------------- */
section, .card, .option-card, .testimonial-card, .cta, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.18s, transform 0.15s, background 0.19s, border-color 0.18s;
}
.cta:active, .cookie-btn:active, .cookie-modal-btn:active {
  transform: scale(0.98);
}

/* RESPONSIVE LAYOUT ---------------------------------------------- */
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
  footer .container { flex-direction: column; gap: 22px; align-items: flex-start; }
}
@media (max-width: 900px) {
  header .container { flex-direction: row; align-items: center; }
  .main-nav { gap: 16px; }
  .card-container { gap: 15px; }
}
@media (max-width: 768px) {
  .container { max-width: 98vw; padding: 0 9px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .section { margin-bottom: 38px; padding: 27px 7px; }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .option-card, .card, .testimonial-card { min-width: unset; padding: 17px 8px; }
  .text-image-section {
    flex-direction: column;
    gap: 21px;
  }
  footer .container { flex-direction: column; gap: 22px; align-items: flex-start; margin-top: 35px; }
  .footer-contact { margin-top: 8px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1rem; }
  .option-card, .card, .testimonial-card { padding: 14px 3px; }
}

/* COOKIE CONSENT BANNER -------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #232931;
  color: #E9F1F7;
  box-shadow: 0 -2px 14px #0f151966;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  padding: 21px 12px 21px 20px;
  z-index: 5005;
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(0.87,0.11,0.38,1.21), opacity 0.18s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  max-width: 320px;
  font-size: 1.03em;
  color: #E9F1F7;
  line-height: 1.5;
  margin-bottom: 0;
}
.cookie-btn {
  margin: 0 7px;
  background: #FFB100;
  color: #232931;
  font-size: 1em;
  padding: 8px 19px;
  border-radius: 22px;
  font-weight: 600;
}
.cookie-btn.reject {
  background: #384656;
  color: #FFD885;
  border: 1px solid #FFB100;
}
.cookie-btn.settings {
  background: #232931;
  color: #FFB100;
  border: 1px solid #FFB100;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus,
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #FFB100;
  color: #232931;
}

/* COOKIE MODAL ---------------------------------------------------- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(19, 22, 27, 0.82);
  z-index: 5007;
  justify-content: center;
  align-items: center;
}
.cookie-modal.open {
  display: flex;
  animation: cookieModalIn 0.33s cubic-bezier(0.82,0.08,0.36,1.05);
}
@keyframes cookieModalIn {
  from { opacity:0; transform: scale(0.92); }
  to   { opacity:1; transform: scale(1);   }
}
.cookie-modal-content {
  background: #E9F1F7;
  color: #232931;
  border-radius: 17px;
  width: 98vw;
  max-width: 425px;
  padding: 32px 27px 26px 28px;
  box-shadow: 0 4px 40px #23293140;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #1C4B6A;
  margin-bottom: 9px;
  font-size: 1.22em;
}
.cookie-modal-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 13px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1em;
  background: #F7FBFF;
  border-radius: 8px;
  padding: 10px 14px;
}
.cookie-modal-content .cookie-category input[type=checkbox],
.cookie-modal-content .cookie-category input[type=radio] {
  accent-color: #FFB100;
  width: 20px; height: 20px;
  margin-right: 9px;
}
.cookie-modal-content .cookie-category.category-essential input{
  accent-color: #1C4B6A;
}
.cookie-modal-content .cookie-category label {
  font-weight: 600;
  color: #1C4B6A;
  font-size: 1em;
}
.cookie-modal-content .cookie-category.category-essential label {
  color: #6b737a;
}
.cookie-modal-btns {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 11px;
}
.cookie-modal-btn {
  padding: 7px 20px;
  border-radius: 17px;
  font-weight: 600;
  border: none;
  background: #FFB100;
  color: #232931;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.17s, color 0.17s, box-shadow 0.14s;
}
.cookie-modal-btn.secondary {
  background: #232931;
  color: #FFD885;
  border: 1px solid #FFB100;
}
.cookie-modal-btn.secondary:hover, .cookie-modal-btn.secondary:focus {
  background: #FFB100;
  color: #232931;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 15px;
  background: none;
  border: none;
  color: #232931;
  font-size: 2em;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFB100;
}

/* UTILITY CLASSES ------------------------------------------------ */
.text-section {
  margin-top: 15px;
}
.text-section ul li {
  background: none;
  padding-left: 0;
  border: none;
  color: #E9F1F7;
}
.text-section a {
  color: #FFB100;
  border-bottom: 1px dashed #FFB10033;
  transition: border 0.18s;
}
.text-section a:hover {
  border-bottom: 2.5px solid #FFB100;
  color: #FFD885;
}

/* Hide elements visually but remain accessible for screen readers */
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }

/* FOCUS STATES --------------------------------------------------- */
a:focus, button:focus, .cta:focus, .cookie-btn:focus, .cookie-modal-btn:focus {
  outline: 2.7px dashed #FFB100;
  outline-offset: 1.7px;
  z-index: 51;
  background: #23293142;
}

/* INDUSTRIAL MODERN ACCENTS -------------------------------------- */
.card, .option-card, .testimonial-card {
  border-right: 2.7px solid #384656;
  box-shadow: 0 2px 16px #31404e22;
}
.cta, .cookie-btn, .cookie-modal-btn {
  box-shadow: 0 2px 9px 0 #38383833, 0 1.5px 5px 0 #FFB10013;
  text-shadow: 0 1.5px 2.5px #fff2d716;
}

/* SCROLLBAR ------------------------------------------------------ */
body::-webkit-scrollbar {
  width: 8px;
  background: #232931;
}
body::-webkit-scrollbar-thumb {
  background: #384656;
  border-radius: 12px;
}

/* SELECTION ------------------------------------------------------ */
::selection {
  background: #FFB100;
  color: #1C4B6A;
}

/* PRINT ----------------------------------------------------------- */
@media print {
  nav,
  .mobile-menu,
  .main-nav,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}

/* END OF STYLE.CSS */
