/* ==== 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, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
  background: #13181e;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #13181e;
  color: #F2F5F7;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
*, *::before, *::after { box-sizing: inherit; }
:focus { outline: 2px solid #15B8B6; outline-offset: 2px; }
a { color: #15B8B6; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #29f3ed; text-decoration: underline; }
ul, ol { padding-left: 1.2em; margin-bottom: 1em; }
img { max-width: 100%; height: auto; display: block; }
table { border-collapse: collapse; width: 100%; margin-bottom: 32px; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #262c38; }
th { background: #222935; color: #F2F5F7; font-weight: 600; }

/* ==== BRAND VARIABLES ==== */
:root {
  --color-primary: #1C232D;
  --color-primary-dark: #13181e;
  --color-secondary: #15B8B6;
  --color-secondary-dark: #119291;
  --color-accent: #F2F5F7;
  --color-bg-darker: #181e26;
  --color-bg-light: #232a36;
  --color-neon: #29f3ed;
  --color-btn-gradient: linear-gradient(98deg,#15B8B6 40%,#29f3ed 120%);
  --color-btn-gradient-hover: linear-gradient(98deg,#29f3ed 40%,#15B8B6 120%);
  --shadow-card: 0 2px 18px 0 rgba(21,184,182,0.13);
  --shadow-card-bold: 0 6px 32px 0 rgba(21,184,182,0.20);
  --shadow-glow: 0 0 8px 2px #29f3ed;
  --radius: 14px;
  --radius-btn: 22px;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 1.8rem; margin-bottom: 20px; }
h3 { font-size: 1.22rem; margin-bottom: 12px; }
h4 { font-size: 1.08rem; margin-bottom: 8px; }

p { margin-bottom: 18px; }
strong { font-weight: 700; color: var(--color-secondary); }

@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.21rem; }
}

/* ==== GLOBAL CONTAINER & LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

main { flex: 1 0 auto; }

.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 2px 20px 0 rgba(21,184,182,0.09);
  z-index: 20;
  position: relative;
}
header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
header img { height: 48px; margin-right: 18px; }

nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #F2F5F7;
  padding: 7px 16px 7px 10px;
  border-radius: var(--radius);
  position: relative;
  transition: background .19s, color .18s;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-secondary);
  color: #171c25;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-btn-gradient);
  color: #13181e;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 13px 32px;
  border: none;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-card);
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background .25s, box-shadow .3s, color .2s, transform .12s;
  text-shadow: 0 1px 2px #15B8B660;
  margin-left: 18px;
  margin-right: 0;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-btn-gradient-hover);
  color: #171c25;
  transform: translateY(-2px) scale(1.025);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-btn);
  padding: 13px 32px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.01rem;
  cursor: pointer;
  transition: background .21s, border-color .21s, color .18s, box-shadow .21s;
  box-shadow: none;
  margin-top: 14px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-secondary);
  color: #13181e;
  border-color: var(--color-neon);
  box-shadow: 0 0 0 3px #29f3ed80;
}

/* ==== HERO SECTIONS ==== */
.hero-section {
  background: linear-gradient(118deg,#181e26 80%, #192934 120%);
  border-radius: var(--radius);
  box-shadow: 0 4px 34px 0 rgba(21,184,182,.10);
  margin-bottom: 60px;
  padding-bottom: 48px;
}
.hero-section h1 { color: var(--color-neon); text-shadow: 0 3px 16px #15B8B6B2; }
.hero-section p { color: #deffff; font-size: 1.14rem; }

@media (max-width: 768px) {
  .container { padding: 0 7px; }
  .hero-section { padding: 40px 7px 32px 7px; }
}

/* ==== CARDS & GRIDS ==== */
.card-container, .service-cards, .feature-grid, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.card, .service-card {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 310px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .20s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover, .card:focus, .service-card:hover, .service-card:focus {
  box-shadow: var(--shadow-card-bold), var(--shadow-glow);
  transform: translateY(-6px) scale(1.02);
  z-index: 2;
}
.service-card img, .feature-grid img {
  width: 54px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 5px #15b8b665);
}
.service-card h3 { color: var(--color-neon); margin-bottom: 6px; font-size: 1.13rem; }
.service-card span { color: var(--color-accent); font-size: 1.02rem; margin-top: 8px; font-weight: 600; letter-spacing: 0.03em; }

/* ==== LISTS ==== */
ul {
  margin-bottom: 1.12em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-values {
  flex-direction: row;
  gap: 26px;
  list-style: none;
}
.brand-values li {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1.06rem;
}
.brand-values img { width: 34px; margin-bottom: 6px; }
.feature-grid {
  flex-wrap: wrap;
  gap: 20px;
}
.feature-grid li {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 18px 18px 18px;
  flex: 1 1 230px;
  max-width: 330px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .14s;
}
.feature-grid li:hover {
  box-shadow: var(--shadow-card-bold), var(--shadow-glow);
  transform: translateY(-4px) scale(1.017);
}

/* ==== TESTIMONIALS ==== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F2F5F7;
  border-radius: var(--radius);
  box-shadow: 0 6px 36px 0 rgba(21,184,182,0.10);
  color: #212730;
  font-size: 1.08rem;
  border-left: 5px solid var(--color-secondary);
  transition: box-shadow .16s, transform .13s;
}
.testimonial-card strong {
  font-weight: 700;
  color: #13181e;
}
.testimonial-card span {
  color: var(--color-secondary-dark);
  font-family: var(--font-display);
  letter-spacing: 0.045em;
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 8px 44px 0 #15B8B614, 0 0 0 3px #29f3ed55;
  transform: scale(1.014);
}

/* ==== TABLE ==== */
table th, table td {
  background: none;
  color: #F2F5F7;
  border-bottom: 1px solid #232a36;
  font-size: 1.01rem;
}
table th {
  background: #181e26;
  color: var(--color-neon);
  letter-spacing: 0.04em;
  font-weight: 700;
}
table tr:nth-child(even) td {
  background: #1b2029;
}

/* ==== FOOTER ==== */
footer {
  width: 100%;
  background: var(--color-primary-dark);
  border-top: 1.5px solid #232a36;
  padding: 34px 0 22px 0;
  margin-top: 48px;
  box-shadow: 0 -3px 38px 0 #15B8B60a;
}
footer > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-logo img { max-height: 45px; margin-bottom: 0; }
footer nav {
  gap: 15px;
}
footer nav a {
  color: var(--color-secondary);
  font-size: 0.98rem;
  font-weight: 600;
  margin-right: 6px;
  transition: color .14s;
}
footer nav a:hover {
  color: var(--color-neon);
}
.footer-contact {
  color: #8ed2cf;
  font-size: 0.95rem;
  margin-top: 5px;
  font-family: var(--font-body);
}

@media (max-width: 900px) {
  footer > .container { flex-direction: column; align-items: flex-start; gap: 15px; }
  .footer-logo { margin-bottom: 8px; }
}

/* ==== FAQ ACCORDION ==== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-accordion h3 {
  background: var(--color-bg-light);
  color: var(--color-secondary);
  padding: 14px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.09rem;
  margin-bottom: 0;
  position: relative;
}
.faq-accordion h3.active,
.faq-accordion h3:hover {
  background: var(--color-secondary);
  color: #13181e;
}
.faq-accordion > div {
  background: #232a36;
  border-radius: var(--radius);
  color: #d5fdfe;
  font-size: 1.02rem;
  padding: 14px 18px 10px 18px;
  display: none;
}
.faq-accordion h3.active + div { display: block; }

.search-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.search-faq input[type='search'] {
  background: #222935;
  border: 1.5px solid var(--color-secondary);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 10px 18px;
  font-size: 1rem;
  width: 100%;
  box-shadow: 0 1px 4px 0 #29f3ed13;
  transition: border-color .16s, box-shadow .16s;
}
.search-faq input[type='search']:focus {
  border-color: var(--color-neon);
  box-shadow: 0 0 0 2.5px #29f3ed45;
}

/* ==== MAP PLACEHOLDER ==== */
.map-placeholder {
  margin-top: 16px;
  padding: 22px;
  background: var(--color-bg-light);
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.06rem;
}

/* ==== Responsive Spacing & Flex Patterns ==== */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; 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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-neon);
  cursor: pointer;
  margin-right: 8px;
  transition: color .19s;
  z-index: 39;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--color-secondary);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #181e26fa;
  box-shadow: 0 4px 50px 0 #15B8B622;
  transform: translateX(100vw);
  transition: transform .39s cubic-bezier(.39,1.4,.2,1);
  z-index: 50;
  padding: 42px 34px 20px 24px;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-neon);
  font-size: 2rem;
  position: absolute;
  top: 26px;
  right: 19px;
  cursor: pointer;
  z-index: 99;
  padding: 9px 10px;
  border-radius: 50%;
  transition: background .18s, color .12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #222935;
  color: #F2F5F7;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 38px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-neon);
  font-family: var(--font-display);
  font-size: 1.27rem;
  padding: 7.5px 0;
  border-radius: var(--radius-btn);
  transition: background .16s, color .13s, padding-left .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #212730;
  color: var(--color-secondary);
  padding-left: 12px;
}

@media (max-width: 1110px) {
  nav { gap: 13px; }
}
@media (max-width: 900px) {
  header > .container { flex-direction: column; align-items: flex-start; gap: 8px; }
  header img { margin-bottom: 9px; }
}
@media (max-width: 850px) {
  header nav, .btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 768px) {
  .section, section { margin-bottom: 35px; padding: 28px 6px; }
  .feature-grid, .service-cards, .card-container {flex-direction: column; gap: 16px;}
  .card, .service-card, .feature-grid li { min-width: 0; max-width: 100%; padding: 19px 12px; }
  .testimonial-card { padding: 12px; }
  .brand-values { gap: 12px; }
  .footer-logo img { max-height: 32px; }
}
@media (max-width: 500px) {
  .hero-section h1 { font-size: 1.05rem; }
  .btn-primary, .btn-secondary { padding: 11px 15px; font-size: 0.97rem; }
  th, td { padding: 9px 7px; }
}

/* === ANIMATIONS & EFFECTS === */
.btn-primary, .btn-secondary, .service-card, .card, .feature-grid li, .testimonial-card, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close {
  transition: box-shadow .19s, background .22s, color .12s, transform .18s, border-color .18s, filter .15s;
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #232a36;
  color: #F2F5F7;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 24px 34px 20px 24px;
  box-shadow: 0 -3px 38px 0 #15B8B614;
  z-index: 10001;
  border-radius: 20px 20px 0 0;
  font-size: 1.03rem;
  animation: consentAppear .7s cubic-bezier(.6,.5,0,1.03) 1;
}
@keyframes consentAppear { from { opacity: 0; transform: translateY(32px);} to { opacity: 1; transform: translateY(0);} }

.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-consent-banner button {
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 19px;
  padding: 10px 22px;
  margin: 0;
  transition: background .16s, color .15s, box-shadow .16s, border .13s;
}
.cookie-consent-banner .accept {
  background: var(--color-btn-gradient);
  color: #13181e;
  box-shadow: 0 1px 5px #15B8B622;
}
.cookie-consent-banner .accept:hover {
  background: var(--color-btn-gradient-hover);
  color: #171c25;
  box-shadow: var(--shadow-glow);
}
.cookie-consent-banner .reject {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.cookie-consent-banner .reject:hover {
  background: var(--color-secondary);
  color: #13181e;
}
.cookie-consent-banner .settings {
  background: #181e26;
  color: #F2F5F7;
  border: 2px solid #333b4e;
}
.cookie-consent-banner .settings:hover {
  background: #222935;
  color: var(--color-neon);
}

@media (max-width: 600px) {
  .cookie-consent-banner {flex-direction: column; align-items: stretch;gap: 15px;padding: 17px 8px 12px 8px;}
  .cookie-banner-buttons {margin-top: 8px;gap: 7px;flex-wrap: wrap;}
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0;left: 0;width: 100vw;height: 100vh;
  background: rgba(28,35,45,0.89);
  z-index: 10002;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeIn .2s;
}
@keyframes fadeIn { from { opacity: 0;} to {opacity: 1;} }

.cookie-modal {
  background: #222935ff;
  border-radius: 16px;
  max-width: 370px;
  width: 95vw;
  color: #fff;
  box-shadow: 0 10px 44px 0 #15b8b677;
  padding: 36px 25px 24px 25px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}
.cookie-modal h2 { color: var(--color-secondary); font-size: 1.18rem; margin-bottom: 8px; }
.cookie-modal label {
  font-size: 1.02rem;
  color: #c9fbfa;
  transition: color .17s;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--color-secondary);
  margin-right: 11px;
  min-width: 21px; min-height: 21px;
}
.cookie-modal .category-essential {
  color: var(--color-neon);
  font-weight: 700;
}
.cookie-modal .modal-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 19px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 9px 18px;
  font-size: 1rem;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  color: #29f3ed;
  font-size: 1.32rem;
  border-radius: 50%;
  transition: background .16s, color .13s;
  padding: 0 7px;
}
.cookie-modal .close-modal-btn:hover {
  background: #222935;
  color: var(--color-secondary);
}

/* === UTILITIES === */
.text-center { text-align: center; }
.align-center, .center { align-items: center; justify-content: center; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-18 { gap: 18px; }

/* === MICRO-INTERACTIONS === */
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
}
.service-card:hover img, .feature-grid li:hover img {
  filter: drop-shadow(0 0 13px #29f3edB2);
}

/* === SCROLLBAR (FUTURISTIC STYLE) === */
::-webkit-scrollbar {
  width: 8px;background:#181e26; }
::-webkit-scrollbar-thumb {
  background: #232a36; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover {
  background: #15B8B6; }

/* === MISC === */
.team-photo-placeholder img { border-radius: 20px; box-shadow: 0 2px 28px 0 #29f3ed40; padding: 6px; margin-bottom: 12px; }

/* ==== NO CSS GRID USED. ALL FLEX LAYOUTS. ==== */
