/* RESET & NORMALIZATION */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #181B1E;
  color: #F5F8F2;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: #2B81A0;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5F8F2;
  background: #2B81A0;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, textarea, select {
  font: inherit;
  outline: none;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #E0E4E8;
}
p, li, ul, ol, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #F5F8F2;
}
/* TYPOGRAPHY SCALE */
h1 { font-size: 2.2rem; margin-bottom: 16px; line-height: 1.1; }
h2 { font-size: 1.5rem; margin-bottom: 18px; line-height: 1.15; }
h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.21; }
.subheadline {
  margin-bottom: 18px;
  color: #AACFB3;
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
}
@media (min-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem;  }
  h3 { font-size: 1.18rem; }
}
.text-center {
  text-align: center;
}
/* CONTAINERS */
.container {
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
}
.text-section {
  margin-top: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section { padding: 32px 8px; margin-bottom: 32px; }
  .container { padding: 0 10px; }
}
/* FLEXBOX STRUCTURE ALIGNMENT */
.features-grid, .features-row, .testimonial-row, .card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-row,
.testimonial-row { gap: 20px; }
.content-grid { gap: 20px; justify-content: space-between; }
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width:768px) {
  .features-grid,
  .features-row,
  .testimonial-row,
  .content-grid,
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232629;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(30,32,36,0.21);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature {
  background: #222527;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(20,24,28, 0.22);
  padding: 26px 22px 18px 22px;
  min-width: 215px;
  max-width: 330px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1.5px solid #373A3D;
  transition: border-color .25s, box-shadow .23s;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 3px;
  filter: grayscale(0.25) brightness(0.90);
}
.feature .feature-price {
  font-weight: 600;
  margin-top: 10px;
  color: #AACFB3;
  font-size: 1.07rem;
}
.feature:hover, .feature:focus {
  border-color: #2B81A0;
  box-shadow: 0 4px 18px 2px rgba(53,110,135,.13), 0 1.5px 7px rgba(35,93,54,.10);
  z-index: 1;
}
.guide-cert {
  font-size: 0.95rem;
  color: #6D9FA5;
  font-family: 'Roboto', Arial, sans-serif;
}
.text-section ul, .text-section ol {
  margin-top: 12px;
  margin-left: 22px;
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 9px;
  font-size: 1rem;
}
.text-section ol {
  list-style: decimal inside;
}
.text-section ul {
  list-style: disc inside;
}
/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F5F8F2;
  color: #181B1E;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(20,20,30,.06);
  min-width: 235px;
  max-width: 380px;
  font-size: 1.13rem;
  flex: 1 1 270px;
}
.testimonial-card blockquote {
  color: #235D36;
  font-size: 1.04rem;
  line-height: 1.55;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 2px;
}
.testimonial-author {
  font-size: 0.98rem;
  color: #2B81A0;
  font-style: italic;
  letter-spacing: 0.2px;
}
@media (max-width: 770px) {
  .testimonial-card {
    max-width: 100%;
    font-size: 1rem;
    padding: 16px;
  }
}
/* BUTTONS */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 28px;
  border-radius: 8px;
  letter-spacing: 0.7px;
  background: #232B30;
  color: #F5F8F2;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.22s;
  cursor: pointer;
  box-shadow: 0 1.5px 7px 0 rgba(38,38,40,0.10);
  margin-top: 10px;
}
.button.button-primary {
  background: linear-gradient(92deg,#15708E 15%, #235D36 80%);
  color: #F5F8F2;
  border: 1.8px solid #235D36;
  box-shadow: 0 2.5px 11px 0 rgba(43, 129, 160,.11);
}
.button.button-primary:hover, .button.button-primary:focus {
  background: #2B81A0;
  color: #F5F8F2;
  box-shadow: 0 8px 22px rgba(43,129,160,0.19), 0 2px 13px #235d3632;
  border-color: #AACFB3;
  outline: none;
}
.button:hover, .button:focus {
  background: #373A3D;
  color: #F5F8F2;
}
.button:active {
  box-shadow: none;
}
/* HEADER/NAVIGATION */
header {
  width: 100%;
  background: #16181A;
  border-bottom: 2px solid #232629;
  box-shadow: 0 2px 11px 0 rgba(23,23,26,0.10);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 40;
  padding-top: 3px;
  padding-bottom: 3px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 73px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1 1 auto;
  margin-left: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #F5F8F2;
  font-size: 1.03rem;
  letter-spacing: 0.15px;
  border-radius: 4px;
  padding: 3px 10px;
  transition: background-color 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus,
.footer-nav a:hover, .footer-nav a:focus {
  background-color: #232629;
  color: #AACFB3;
}
header img {
  height: 44px;
}
@media (max-width: 1100px) {
  .main-nav { gap: 15px; }
  .container { min-height: 55px; }
}
@media (max-width: 900px){
  .main-nav { gap: 8px; }
}
@media (max-width: 820px) {
  .main-nav { display: none; }
  header .button.button-primary { display: none; }
}
/* MOBILE MENU*/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 16px;
  width: 46px;
  height: 46px;
  background: #232B30;
  color: #AACFB3;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  z-index: 98;
  cursor: pointer;
  transition: background .18s, color .19s, box-shadow 0.19s;
  box-shadow: 0 4px 19px 0 rgba(43,129,160,0.07);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #2B81A0;
  color: #F5F8F2;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #16181A;
  transform: translateX(-105vw);
  transition: transform 0.38s cubic-bezier(.86,.08,.42,.95);
  z-index: 99;
  padding: 44px 22px 0 22px;
  box-shadow: 1px 0 23px 0 rgba(16,18,20,0.15);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #F5F8F2;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 32px;
  cursor: pointer;
  transition: color .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #2B81A0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F5F8F2;
  font-size: 1.19rem;
  font-weight: 610;
  letter-spacing: 0.03em;
  padding: 8px 0 8px 18px;
  border-radius: 4px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #2B81A0;
  background: #232629;
}
@media (max-width: 820px) {
  .mobile-menu-toggle { display: flex; }
  header .container { min-height: 48px; }
}
@media (min-width: 821px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}
/* HERO SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width:768px){
  section { margin-bottom:32px; padding:28px 3px; }
}
.content-wrapper.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  justify-content: center;
}
/* FOOTER */
footer {
  background: #181B1E;
  border-top: 2px solid #232629;
  padding: 20px 0 0 0;
  margin-top: 18px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-bottom: 9px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #AACFB3;
  padding: 2px 7px;
  border-radius: 3px;
  transition: background 0.13s, color 0.16s;
}
.footer-info {
  color: #676A6E;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 4px;
  text-align: center;
}
@media (max-width: 550px){
  .footer-nav { flex-direction: column; gap:8px; }
}
/* COOKIE CONSENT BANNER  */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #222527;
  color: #F5F8F2;
  box-shadow: 0 -2px 18px 0 rgba(40,40,40,.28);
  z-index: 500;
  padding: 22px 10px 18px 10px;
  min-height: 90px;
  border-top: 2.5px solid #235D36;
  animation: cookieslidein 0.62s cubic-bezier(.71,.18,.32,.91);
  font-size: 1rem;
}
@keyframes cookieslidein {
  from { transform: translateY(85px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  min-width: 120px;
  padding: 9px 22px;
  margin: 0 2px;
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #F5F8F2;
  background: #235D36;
  transition: background 0.18s, color 0.16s, box-shadow 0.2s;
  box-shadow: 0 1px 8px rgba(35,93,54,0.07);
  cursor: pointer;
}
.cookie-banner .cookie-btn.accept {
  background: #235D36;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #15708E;
  color: #F5F8F2;
}
.cookie-banner .cookie-btn.reject {
  background: #2B81A0;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #232629;
  color: #F5F8F2;
}
.cookie-banner .cookie-btn.settings {
  background: #373A3D;
  color: #AACFB3;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #AACFB3;
  color: #232629;
}
@media (max-width: 600px){
  .cookie-banner { font-size:0.93rem; padding:13px 5px 12px 5px; }
  .cookie-banner .cookie-actions { gap:8px; }
  .cookie-banner .cookie-btn { padding:7px 14px; min-width:97px; font-size:0.99rem; }
}
/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(17,18,18,.75);
  z-index: 501;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiemodal 0.37s cubic-bezier(.55,.19,.62,.98);
}
@keyframes cookiemodal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #F5F8F2;
  color: #181B1E;
  padding: 34px 32px 28px 32px;
  border-radius: 12px;
  box-shadow: 0 6px 38px 4px rgba(0,0,0,0.16);
  min-width: 330px;
  max-width: 420px;
  min-height: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #235D36;
  font-weight: 700;
}
.cookie-modal .cookie-toggle {
  width: 36px;
  height: 19px;
  appearance: none;
  background: #AACFB3;
  border-radius: 30px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .15s;
  border: none;
}
.cookie-modal .cookie-toggle:checked {
  background: #235D36;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  background: #fff;
  width: 15px; height: 15px;
  border-radius: 50%;
  transition: transform .18s;
}
.cookie-modal .cookie-toggle:checked:before {
  transform: translateX(17px);
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: #2B81A0;
  font-size: 1.53rem;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal .close-cookie-modal:hover {
  color: #235D36;
}

/* MICRO-INTERACTIONS / TRANSITIONS */
.button, .feature, .testimonial-card, .main-nav a, .mobile-nav a,
.footer-nav a, .cookie-btn {
  transition: background .19s, color .18s, box-shadow .19s, border-color .17s;
}
.feature:hover, .feature:focus {
  box-shadow: 0 8px 22px 0 rgba(43,129,160,0.10), 0 2px 13px #235d3632;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 24px 2px rgba(43, 129, 160, 0.09), 0 4px 16px rgba(35,93,54,0.05);
}
.button:active, .cookie-btn:active {
  transform: translateY(1px) scale(0.98);
}
.cookie-banner, .cookie-modal, .mobile-menu {
  will-change: transform, opacity;
}

/* MISCELLANEOUS SPACING CORRECTIONS */
section:not(:last-child) { margin-bottom:60px; }
.content-wrapper + .text-section {
  margin-top: 30px;
}
.features-grid > .feature, .features-row > .feature {
  margin-bottom: 20px;
}
.features-grid, .features-row, .testimonial-row {
  margin-top: 24px;
}

/* ACCESSIBILITY: FOCUS OUTLINES */
:focus-visible {
  outline: 2px solid #2B81A0;
  outline-offset: 2px;
}

/* INDUSTRIAL MODERN ACCENTS */
.feature, .card, .testimonial-card {
  border: 1.5px solid #373A3D;
  box-shadow: 0 2px 8px 0 rgba(60,60,60, .15);
}
.section {
  background: #181B1E;
  border-radius: 15px;
  box-shadow: 0 3px 16px 1.5px rgba(25,37,29,0.07);
}

/* Tweak card container styles to ensure NO overlap and proper spacing */
.card-container > *, .content-grid > *, .features-grid > *, .features-row > * {
  min-width: 0;
}

/* Utilities */
@media (max-width: 700px){
  .feature, .card, .testimonial-card {
    min-width: unset;
    max-width: 100%;
  }
}
::-webkit-input-placeholder { color: #A2B1A5; }
::-moz-placeholder { color: #A2B1A5; }
:-ms-input-placeholder { color: #A2B1A5; }
::placeholder { color: #A2B1A5; }

/* Hide scrollbar in cookie-modal (if needed) */
.cookie-modal::-webkit-scrollbar {width:0; background:transparent;}
.cookie-modal { -ms-overflow-style: none; scrollbar-width: none; }

/* END STYLE */
