/* 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, 
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: #181F27;
  color: #F6F6F6;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
a {
  color: #8CBF3F;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus { color: #B6E964; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit; color: inherit;
  background: none; border: none; outline: none;
  box-sizing: border-box;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Roboto:400,500,700&display=swap');

/* BRAND COLORS */
:root {
  --c-primary: #23517B;
  --c-primary-neon: #1A9FFF;
  --c-secondary: #8CBF3F;
  --c-accent: #F6F6F6;
  --c-bg-dark: #181F27;
  --c-card: #202C3B;
  --c-card-hover: #223A52;
  --c-border: #35485A;
  --c-error: #F5365C;
  --c-success: #8CBF3F;
  --c-disabled: #3B4B59;
  --c-testimonial-bg: #F6F6F6;
  --c-testimonial-text: #171F2B;
}

/* STRUCTURAL CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8vw;
  padding-right: 8vw;
}
@media (max-width: 1024px) {
  .container { padding-left: 4vw; padding-right: 4vw; }
}
@media (max-width: 768px) {
  .container { padding-left: 18px; padding-right: 18px; }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 24px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F6F6F6;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 0 1px 16px var(--c-primary-neon, #1A9FFF44);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 8px var(--c-secondary,#8CBF3F22);
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, li, span, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
strong { font-weight: 700; color: var(--c-secondary); }

/* HEADER */
header {
  background: var(--c-bg-dark);
  box-shadow: 0 2px 16px 0 #1a1f2962;
  position: sticky;
  top: 0; left: 0; width: 100%; z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
header nav a {
  color: #F6F6F6;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
header nav a::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg,var(--c-primary),var(--c-secondary));
  opacity: 0;
  transition: opacity 0.25s;
}
header nav a:hover::before, header nav a:focus::before { opacity: 1; }
header nav a:hover, header nav a:focus { color: var(--c-primary-neon); }

header img {
  width: 56px; height: auto; border-radius: 6px;
  box-shadow: 0 0 0 1.5px var(--c-secondary, #8CBF3F), 0 2px 16px 0 #202c3b60;
  transition: box-shadow 0.2s;
}
header img:hover, header img:focus {
  box-shadow: 0 0 0 2px #9dffa1, 0 0 32px 0 #bffd7862;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  min-width: 180px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.25s, color 0.17s, box-shadow 0.13s;
  margin-bottom: 8px;
  box-shadow: 0 2px 24px 0 #8CBF3F33;
  position: relative;
  z-index: 1;
}
.btn-primary {
  background: linear-gradient(90deg, var(--c-primary) 60%, var(--c-secondary) 100%);
  color: #fff;
  box-shadow: 0 2px 14px 0 #1A9FFF60, 0 1.5px 0 0 #8CBF3F30;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--c-primary-neon) 60%, var(--c-success) 100%);
  color: #202C3B;
  box-shadow: 0 4px 36px 0 #46ffe456, 0 4px 16px 0 #23517bd0;
}

.btn-secondary {
  background: #F6F6F6;
  color: var(--c-primary);
  border: 1.5px solid var(--c-secondary);
  box-shadow: 0 1px 8px 0 #F6F6F633;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--c-secondary);
  color: #fff;
  border-color: var(--c-primary-neon);
  box-shadow: 0 4px 30px 0 #8CBF3F44;
}
button:disabled, .btn-primary[disabled], .btn-secondary[disabled] {
  background: var(--c-disabled);
  color: #929fa1;
  cursor: not-allowed;
  box-shadow: none;
}

/* SECTIONS & FLEXBOX LAYOUTS (MANDATORY SPACING) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--c-card);
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 #1A9FFF33;
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
}
.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: center;
  gap: 20px;
  padding: 24px 32px;
  background: var(--c-testimonial-bg);
  color: var(--c-testimonial-text);
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 22px 0 #8CBF3F22;
  min-width: 220px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.features .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-card);
  border-radius: 12px;
  padding: 18px 20px;
  min-width: 200px;
  font-weight: 500;
  color: #F6F6F6;
  box-shadow: 0 2px 8px 0 var(--c-primary-neon, #1A9FFF33);
}
.features .content-wrapper ul li img {
  width: 36px; height: 36px;
  filter: drop-shadow(0 0 8px var(--c-secondary));
}
.services-overview .content-wrapper ul,
.services .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.services-overview .content-wrapper ul li,
.services .content-wrapper ul li {
  background: var(--c-card);
  border-radius: 14px;
  min-width: 240px;
  flex: 1 1 220px;
  padding: 20px 18px 20px 24px;
  margin-bottom: 20px;
  color: #fff;
  box-shadow: 0 2px 12px 0 #1A9FFF24;
}
.services-overview .content-wrapper ul li span,
.services .content-wrapper ul li span { 
  display: inline-block; 
  margin-top: 1em; 
  color: var(--c-secondary); 
  font-weight: 600;
}

.about-short, .about, .team, .values {
  background: linear-gradient(180deg,#181F27 60%, #222e43 100%);
  border-radius: 10px;
  margin-bottom: 40px;
}
.team .content-wrapper ul li {
  margin-bottom: 12px;
}

.cta, .cta-contact, .catalog-cta, .faq-support {
  background: linear-gradient(90deg, #23517B 90%, #8CBF3F 100%);
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 #1A9FFF18;
  margin-bottom: 64px;
  padding: 32px 0;
}
.cta .content-wrapper, .cta-contact .content-wrapper, .catalog-cta .content-wrapper, .faq-support .content-wrapper {
  align-items: center;
}


/* HERO SECTION */
.hero {
  background: linear-gradient(120deg,#1A9FFF 35%, #23517B 98%);
  color: #fff;
  border-radius: 0 0 40px 40px;
  min-height: 350px;
  box-shadow: 0 4px 60px 0 #1A9FFF44;
  margin-bottom: 48px;
  padding: 54px 0 60px 0;
}
.hero .container, .hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 40px #1A9FFF;
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: 18px;
}

/* TESTIMONIALS */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card p {
  color: var(--c-testimonial-text);
  font-size: 1.03rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: .95rem;
  font-style: normal;
  opacity: .82;
  font-weight: 600;
  color: #23517B;
}

/* CATALOG */
.catalog .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.catalog input[type="search"] {
  width: 240px;
  background: #202C3B;
  color: #F6F6F6;
  border: 1.5px solid #2a3650;
  border-radius: 22px;
  padding: 10px 20px;
  font-size: 1rem;
  outline: none;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px 0 #1A9FFF30;
  transition: border 0.2s;
}
.catalog input[type="search"]:focus {
  border-color: var(--c-primary-neon);
  background: #1C2A3B;
}
.catalog select {
  background: #202C3B;
  color: #F6F6F6;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 1rem;
  border: 1.5px solid #2a3650;
  margin-left: 8px;
  transition: border 0.2s;
}
.catalog select:focus { border-color: var(--c-secondary); }
.catalog ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.catalog ul li {
  background: var(--c-card);
  border-radius: 10px;
  padding: 18px;
  color: #fff;
  box-shadow: 0 1px 8px 0 #1A9FFF18;
  min-width: 220px;
  font-weight: 500;
}

/* FAQ */
.faq .content-wrapper > div {
  background: var(--c-card);
  margin-bottom: 20px;
  border-radius: 12px;
  padding: 18px 22px;
  color: #fff;
  box-shadow: 0 1px 8px 0 #1A9FFF18;
}

/* SECTIONS GENERAL SPACING */
section, .section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  section, .section {
    margin-bottom: 36px; 
    padding: 24px 0;
  }
}

/* FOOTER */
footer {
  background: #171F28;
  width: 100%;
  font-size: .95rem;
  color: #F6F6F6BB;
  box-shadow: 0 -4px 22px 0 #1A9FFF25;
  margin-top: 40px;
}
footer .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 24px 0;
  gap: 20px;
}
footer nav {
  display: flex;
  gap: 16px;
}
footer nav a {
  color: #F6F6F6CC;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  transition: color 0.13s;
  font-size: .98rem;
}
footer nav a:hover, footer nav a:focus { color: var(--c-secondary); }
footer p {
  opacity: 0.87;
}


/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #F6F6F6;
  cursor: pointer;
  margin-left: 8px;
  transition: color 0.17s;
  z-index: 105;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--c-primary-neon);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: radial-gradient(ellipse at 40% 10%, #1A9FFF10 0%, #181F27 80%);
  box-shadow: 0 0 88px 16px #1A9FFF44;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(.56,1.4,.62,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--c-primary-neon,#1A9FFF);
  cursor: pointer;
  transition: color 0.15s;
  z-index: 205;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--c-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 40px 35px 0 32px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #F6F6F6;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 12px;
  transition: background 0.17s, color 0.13s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #1A9FFF44;
  color: var(--c-primary-neon);
}
@media (max-width: 1024px) {
  header nav, header .btn-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 768px) {
  .mobile-menu { padding-top: 0; }
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 900px) {
  .features .content-wrapper ul, .services-overview .content-wrapper ul,
  .services .content-wrapper ul, .catalog ul, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .team .content-wrapper ul {
    flex-direction: column; gap: 10px;
  }
}
@media (max-width: 768px) {
  .container { max-width: 100%; padding: 0 10px; }
  .header .container { flex-wrap: wrap; }
  .content-grid, .card-container, .features .content-wrapper ul, .services-overview .content-wrapper ul, .services .content-wrapper ul, .testimonials .content-wrapper {
    flex-direction: column; gap: 16px;
  }
  .hero {
    min-height: unset; padding: 36px 0 36px 0; border-radius: 0 0 20px 20px;
  }
  .hero .container, .hero .content-wrapper {
    align-items: flex-start;
    padding: 0 0;
  }
  .btn-primary, .btn-secondary { min-width: 130px; padding: 11px 18px; font-size: 0.98rem; }
  .team .content-wrapper ul, .services .content-wrapper ul, .services-overview .content-wrapper ul, .catalog ul {
    flex-direction: column; gap: 12px;
  }
  .section, section { padding-left: 0; padding-right: 0; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 14px; }
  .testimonial-card { padding: 16px 6vw; font-size: 0.98rem; }
  .footer .container { padding: 0 8px; }
  .footer .content-wrapper { flex-direction: column; align-items: flex-start; gap: 16px; }
}


/* MICRO-INTERACTIONS & EFFECTS */
.card,
.testimonial-card,
.features .content-wrapper ul li,
.services-overview .content-wrapper ul li,
.services .content-wrapper ul li,
.catalog ul li,
.faq .content-wrapper > div,
.about-short, .about, .team, .values {
  transition: box-shadow 0.17s, background 0.24s, transform 0.17s;
}
.card:hover,.testimonial-card:hover,
.features .content-wrapper ul li:hover,
.services-overview .content-wrapper ul li:hover,
.services .content-wrapper ul li:hover,
.catalog ul li:hover,
.faq .content-wrapper > div:hover {
  box-shadow: 0 6px 32px 0 #8CBF3F40, 0 0 0 1.5px #1A9FFF33;
  transform: translateY(-3px) scale(1.014);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--c-primary-neon,#1A9FFF);
  box-shadow: 0 2px 12px 0 #8CBF3F19;
}

/* FORM ELEMENTS */
address { font-style: normal; color: var(--c-secondary); font-weight: 500; margin-top: 10px; line-height: 1.6; }
address a { color: var(--c-primary-neon); text-decoration: underline; }

@media (max-width: 480px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.13rem; }
  .btn-primary, .btn-secondary { padding: 9px 7px; min-width: 94px; font-size: 0.94rem; }
  .testimonial-card, .card, .features .content-wrapper ul li { padding: 10px 2vw; font-size: 0.98rem; }
}


/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #202C3B;
  color: #F6F6F6;
  width: 100vw;
  box-shadow: 0 -2px 36px 0 #8CBF3F44;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  z-index: 499;
  gap: 28px;
  font-size: 1rem;
  opacity: 1;
  transition: transform 0.38s cubic-bezier(.5,1.15,.5,1), opacity 0.15s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__message {
  flex: 1 1 210px;
  font-size: 0.98rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  min-width: 110px; padding: 7px 18px; font-size: 0.97rem;
  border-radius: 8px;
}
.cookie-banner .btn-secondary {
  border: 1.5px solid #8CBF3F;
  background: #1A9FFF00;
  color: #8CBF3F;
}
.cookie-banner .btn-secondary:hover, .cookie-banner .btn-secondary:focus {
  background: #8CBF3F;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 8px; padding: 18px 6px 44px 8px; font-size: .96rem; }
  .cookie-banner__actions { justify-content: flex-start; }
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,33,39,0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal__window {
  background: #1c2735;
  color: #F6F6F6;
  border-radius: 17px;
  box-shadow: 0 8px 64px 0 #23517Bcc;
  min-width: 330px;
  max-width: 95vw;
  padding: 38px 32px 30px 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal__window h2 {
  color: #8CBF3F;
  margin-bottom: 7px;
  font-size: 1.25rem;
}
.cookie-modal__close {
  position: absolute; top: 14px; right: 20px;
  background: none;
  border: none;
  color: #8CBF3F;
  font-size: 1.38rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus { color: var(--c-primary-neon); }
.cookie-modal__categories ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 6px;
}
.cookie-modal__categories li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #181F27;
  border-radius: 7px;
  padding: 9px 17px;
  font-size: 1.07rem;
  color: #F6F6F6;
}
.cookie-modal__categories label {
  flex: 1 1 110px;
  cursor: pointer;
}
.cookie-modal__switch {
  appearance: none;
  width: 42px; height: 24px;
  background: #334056;
  border-radius: 14px;
  position: relative;
  transition: background 0.18s;
  outline: none;
  border: 1.5px solid #1A9FFF55;
  margin-right: 6px;
}
.cookie-modal__switch:checked {
  background: #1A9FFFbb;
}
.cookie-modal__switch:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 2.5px;
  width: 19px; height: 19px;
  background: #F6F6F6;
  border-radius: 50%;
  transition: transform 0.22s cubic-bezier(.6,1.4,.5,1);
}
.cookie-modal__switch:checked:before {
  transform: translateX(18px);
  background: #8CBF3F;
}
.cookie-modal__categories li[aria-disabled="true"] {
  opacity: 0.54;
  pointer-events: none;
}
.cookie-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  font-size: .98rem;
  min-width: 112px;
  border-radius: 8px;
  padding: 9px 18px;
}
@media (max-width: 480px) {
  .cookie-modal__window { min-width: auto; padding: 16px 7px; }
}

/* CUSTOM SCROLLBAR - FUTURISTIC */
::-webkit-scrollbar { width: 8px; background: #181F27; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,#1A9FFF 0,#202C3B 100%);
  border-radius: 8px;
}

/* ACCESSIBILITY & UTILITIES */
:focus-visible {
  outline: 2px solid var(--c-primary-neon);
  outline-offset: 1.5px;
}
.hide { display: none !important; }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* Z-INDEX MANAGEMENT */
body > .cookie-banner { z-index: 10000; }
body > .mobile-menu { z-index: 10001; }

/* END OF STYLE */
