/* --- CSS 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;
  min-height: 100vh;
  background: #212A37;
  color: #F6F8FB;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #43C0B7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F6F8FB;
  text-decoration: underline;
}
ul, ol {
  padding-left: 2em;
  margin-bottom: 20px;
}
strong, b {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #F6F8FB;
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
p, li {
  font-size: 1rem;
  color: #D1D9E6;
  margin-bottom: 8px;
}
::-webkit-input-placeholder { color: #B4BBC6; }
::-moz-placeholder { color: #B4BBC6; }
:-ms-input-placeholder { color: #B4BBC6; }
::placeholder { color: #B4BBC6; }

/* --- UNIVERSAL SPACING & LAYOUT --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #222B38;
  border-radius: 16px;
  box-shadow: 0 4px 32px 0 rgba(20,28,39,0.08);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 20px;
}
.card-container {
  justify-content: flex-start;
}
.card {
  background: #19202A;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(33,42,55,0.13);
  margin-bottom: 20px;
  padding: 24px;
  color: #F6F8FB;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(67,192,183,0.16), 0 2px 8px 0 rgba(33,42,55,0.15);
  transform: translateY(-3px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #F6F8FB;
  color: #202A38;
  border-left: 5px solid #43C0B7;
  box-shadow: 0 2px 16px 0 rgba(67,192,183,0.07);
  font-size: 1.08rem;
  max-width: 600px;
  transition: box-shadow 0.2s, border 0.18s;
}
.testimonial-card p { color: #fff; }
.testimonial-card span { color: #43C0B7; font-size: 0.95em; }
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(67,192,183,0.18);
  border-left: 6px solid #222B38;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
}

/* --- HERO SECTION --- */
.hero {
  background: #232D39;
  border-bottom: 5px solid #43C0B7;
  padding: 60px 0 48px 0;
  margin-bottom: 60px;
  box-shadow: 0 3px 24px 0 rgba(20,40,54,0.06);
}
.hero .container { align-items: flex-start; }
.hero h1 {
  font-size: 2.8rem;
  max-width: 700px;
  color: #F6F8FB;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.hero p {
  color: #D1D9E6;
  font-size: 1.2rem;
  margin-bottom: 24px;
  max-width: 560px;
}

/* --- NAVIGATION --- */
header {
  width: 100%;
  background: #222B38;
  border-bottom: 1.5px solid #292F39;
  box-shadow: 0 2px 10px 0 rgba(30,32,41,0.05);
  position: sticky;
  top: 0; z-index: 1010;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
header img {
  max-height: 48px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #F6F8FB;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 2px;
  transition: color 0.2s;
}
header nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #43C0B7;
  transition: width 0.24s;
  border-radius: 1px;
  margin: 0 auto 0 0;
}
header nav a:hover,
header nav a:focus {
  color: #43C0B7;
}
header nav a:hover::after,
header nav a:focus::after {
  width: 100%;
}
.cta-button {
  background: linear-gradient(90deg, #232D39 0%, #232D39 100%), #43C0B7;
  color: #43C0B7;
  border: 2px solid #43C0B7;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 30px;
  padding: 12px 30px;
  cursor: pointer;
  transition: background 0.2s, color 0.22s, border 0.22s, box-shadow 0.2s, transform 0.18s;
  outline: none;
  box-shadow: 0 2px 6px 0 rgba(67,192,183,0.08);
  margin-left: 12px;
  text-shadow: 0 1px 2px rgba(33,42,55,0.13);
  display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
  background: #43C0B7;
  color: #232D39;
  border: 2px solid #A6FCF2;
  box-shadow: 0 5px 24px 0 rgba(67,192,183,0.17);
  text-decoration: none;
  transform: scale(1.035);
}

/* --- MOBILE NAV - BURGER --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 24px;
  top: 20px;
  z-index: 1300;
  width: 48px;
  height: 48px;
  background: #232D39;
  color: #F6F8FB;
  border: 2px solid #313F50;
  border-radius: 50%;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(33,42,55,0.08);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #43C0B7;
  color: #222B38;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1A232F;
  box-shadow: 5px 0 35px 0 rgba(33,42,55,0.33);
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.67,-0.32,.55,1.41);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 26px;
  background: #232D39;
  color: #43C0B7;
  border: 2px solid #313F50;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #43C0B7;
  color: #232D39;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 100px;
  width: 100%;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #F6F8FB;
  font-size: 1.24rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 22px;
  transition: background 0.22s, color 0.17s, padding-left 0.21s;
  display: flex;
  align-items: center;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #222B38;
  color: #43C0B7;
  padding-left: 40px;
}

@media (max-width: 1050px) {
  .container {
    max-width: 95vw;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
  }
}

/* --- MAIN CONTENT & CARDS --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0;
}
.text-section ul, .text-section ol {
  margin-bottom: 0;
  color: #E9EEF5;
}
.text-section li {
  color: #D1D9E6;
  margin-bottom: 7px;
}
.feature-grid > div {
  background: #222B38;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(33,42,55,0.08);
  padding: 22px 20px 18px 20px;
  min-width: 240px;
  flex: 1 1 265px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  border: 1px solid #292F39;
  transition: box-shadow 0.17s, border 0.18s;
}
.feature-grid > div img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  filter: grayscale(60%) brightness(1.26) contrast(1.2);
}
.feature-grid > div:hover {
  box-shadow: 0 4px 24px 0 rgba(67,192,183,0.12);
  border: 1.8px solid #43C0B7;
}

/* --- FOOTER --- */
footer {
  background: #1A232F;
  padding: 40px 0 30px 0;
  margin-top: 80px;
  border-top: 2px solid #292F39;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo img { max-width: 58px; }
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer nav a {
  color: #8AC3B8;
  font-size: 0.98em;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
  transition: color 0.12s;
}
footer nav a:hover,
footer nav a:focus {
  color: #43C0B7;
}
.footer-contact {
  font-size: 0.98em;
  color: #C2CBD2;
  display: flex;
  flex-direction: column;
  gap: 7px;
  line-height: 1.6;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  vertical-align: middle;
  filter: grayscale(70%) brightness(1.2);
}

/* -- COOKIE CONSENT BANNER -- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #232D39;
  color: #F6F8FB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 5vw 18px 5vw;
  box-shadow: 0 -4px 28px 0 rgba(33,42,55,0.13);
  z-index: 5001;
  transition: transform 0.32s cubic-bezier(.67,-0.32,.55,1.41), opacity 0.21s;
  opacity: 0;
  pointer-events: none;
  font-size: 1rem;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner__text {
  flex: 1 1 200px;
  color: #E8F1F8;
  margin-right: 20px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  background: #232D39;
  color: #43C0B7;
  border: 2px solid #43C0B7;
  border-radius: 18px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.16s, color 0.15s, border 0.18s, transform 0.16s;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #43C0B7;
  color: #232D39;
  border-color: #A6FCF2;
  transform: scale(1.035);
}

/* -- COOKIE MODAL -- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) scale(0.96);
  background: #232D39;
  color: #F6F8FB;
  padding: 35px 30px 24px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 60px 0 rgba(33,42,55,0.42);
  z-index: 5100;
  min-width: 310px;
  max-width: 96vw;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s, transform 0.25s;
  overflow-y: auto;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal__header {
  font-size: 1.4rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #43C0B7;
  margin-bottom: 10px;
  font-weight: 700;
}
.cookie-modal__category {
  padding: 12px 0 6px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal__checkbox {
  accent-color: #43C0B7;
  background: #19202A;
  border-radius: 5px;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-modal__action-row {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal__close {
  background: none;
  border: none;
  color: #43C0B7;
  font-size: 1.5rem;
  position: absolute;
  top: 12px;
  right: 22px;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .cookie-modal__close:hover {
  color: #A6FCF2;
}

/* --- RESPONSIVE --- */
@media (max-width: 990px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-logo {
    margin-bottom: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 24px 0;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 6px;
    border-radius: 10px;
  }
  .container { padding: 0 6px; }
  .feature-grid > div {
    min-width: 160px;
    max-width: 100%;
    padding: 13px 10px 12px 10px;
  }
  .testimonial-card {
    padding: 15px 10px;
    font-size: 0.98rem;
    border-radius: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 4vw 13px 4vw;
    font-size: 0.98rem;
    gap: 12px;
  }
  .cookie-modal {
    min-width: 160px;
    padding: 22px 10px 14px 10px;
    border-radius: 12px;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.3rem;
  }
  .footer-logo img { max-width: 39px; }
  .footer-contact,
  footer nav {
    font-size: 0.94em;
  }
}
@media (max-width: 480px) {
  .cookie-banner {
    padding: 10px 2vw 8px 2vw;
  }
}

/* --- ANIMATIONS & MICROINTERACTIONS --- */
a, .cta-button, .cookie-banner button, .mobile-nav a, .feature-grid > div, .card {
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.22s, transform 0.16s;
}
.section, .card, .testimonial-card, .feature-grid > div {
  will-change: transform, box-shadow;
}

/* --- BRAND ELEMENTS: INDUSTRIAL MODERN ACCENTS --- */
.section, .card, .testimonial-card, .feature-grid > div, .cookie-modal, .cookie-banner {
  border-radius: 14px;
  border-top: 3.5px solid rgba(67,192,183,0.25);
}
.card, .feature-grid > div, .section {
  box-shadow: 0 3px 18px 0 rgba(41,47,57,0.13);
}

/* --- GENERAL VISUALS: METALLIC EFFECTS & URBAN FEEL --- */
.card, .feature-grid > div, .testimonial-card {
  border-bottom: 2.2px solid #282d35;
  border-right: 2.2px solid #282d35;
  background: linear-gradient(100deg, #1E2430 80%, #232B39 120%);
}
.card::before, .feature-grid > div::before {
  content: '';
  display: block;
  position: absolute;
  right: 6px; top: 6px;
  width: 18px; height: 18px;
  background: radial-gradient(circle at 30% 25%, #43C0B7 18%, #232B39 93%);
  opacity: 0.18;
  border-radius: 4.5px;
}
.card:hover::before, .feature-grid > div:hover::before {
  opacity: 0.32;
}

/* --- REMOVE DECOR FROM TESTIMONIALS TO PRESERVE CONTRAST --- */
.testimonial-card::before {
  display: none;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 9px; background: #252B38; }
::-webkit-scrollbar-thumb { background: #313F50; border-radius: 7px; }

/* --- UTILITY CLASSES --- */
.hidden { display: none !important; }

/* --- END --- */
