/* ----------------- CSS RESET & BASE ------------------- */
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, 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, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #12161F;
  color: #E7FCFB;
  min-height: 100vh;
  font-size: 16px;
  /* Tech Futuristic Style */
  background-image: linear-gradient(135deg, #263238 0%, #12161F 85%);
  position: relative;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #5ED3C6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F1E7C6;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* --------------- TYPOGRAPHY ------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #F1E7C6;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  text-shadow: 0 0 12px #5E9E9B66;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #5E9E9B;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #F1E7C6;
}
h4, h5, h6 {
  color: #F1E7C6;
}

p {
  font-size: 1rem;
  color: #E7FCFB;
  margin-bottom: 16px;
}

b, strong {
  font-weight: 700;
  color: #F1E7C6;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #5E9E9B;
  color: #263238;
  background: #F1E7C6;
  padding: 15px 24px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 1.125rem;
}

.category {
  font-size: 0.95rem;
  background: #263238;
  color: #5ED3C6;
  border-radius: 9px;
  padding: 2px 10px;
  letter-spacing: 0.04em;
  margin-top: 8px;
  display: inline-block;
}

/* ------------- LAYOUT CONTAINERS ----------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #20262F;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 30px 0 #44e9e930;
  padding: 32px 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 40px 0 #44e9e9cc, 0 0 8px #5E9E9B;
  transform: translateY(-2px) scale(1.02);
}

.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;
}

/****** Utility Flex Patterns *******/
.feature-grid,
.service-categories,
.brand-logos,
.blog-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 24px;
}
.service-categories .text-section,
.blog-teasers .text-section {
  background: #20262F;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 #5E9E9B44;
  padding: 24px 16px;
  flex: 1 1 240px;
  min-width: 230px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.brand-logos img {
  height: 42px;
  margin-right: 18px;
  margin-bottom: 0;
  opacity: 0.95;
  filter: brightness(98%) drop-shadow(0 2px 6px #5ED3C666);
  transition: filter 0.2s;
}
.brand-logos img:hover {
  filter: brightness(120%) drop-shadow(0 0 24px #5ED3C6);
}

/********* Feature Item (tech_futuristic accent) ********/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #20262F;
  border-radius: 12px;
  box-shadow: 0 2px 16px #44e9e93d;
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  height: 38px;
  width: 38px;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 10px #5ED3C6);
}
.feature-item:hover {
  box-shadow: 0 4px 22px #5ED3C6cc;
  transform: translateY(-2px) scale(1.03);
}

/*********** Testimonial Card (High Contrast) ***********/
.testimonials, .testimonial-card {
  width: 100%;
}
.testimonials .content-wrapper {
  gap: 32px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F1E7C6;
  color: #263238;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px #5E9E9B11;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card p {
  color: #263238;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px #F1E7C6a1, 0 0 8px #5ED3C6cc;
  transform: scale(1.015);
}

/*********** CTA Section ***********/
.cta {
  background: #263238;
  border-top: 3px solid #5ED3C6;
  border-bottom: 3px solid #5ED3C6;
}
.cta h2 {
  color: #F1E7C6;
  text-shadow: 0 0 16px #44e9e993;
}

/************ Service Lists ************/
.service-list, .key-benefits, .solution-highlights ul, .feature-list {
  margin-bottom: 0 !important;
  padding-left: 20px;
}
.service-list li, .key-benefits li, .feature-list li, .solution-highlights ul li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #E7FCFB;
  line-height: 1.6;
  padding-left: 4px;
}
.key-benefits li, .solution-highlights ul li {
  position: relative;
  padding-left: 22px;
}
.key-benefits li:before, .solution-highlights ul li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  background: #5ED3C6;
  border-radius: 50%;
  box-shadow: 0 0 8px #5ED3C6;
}
.feature-list li {
  display: flex;
  align-items: center;
  background: #20262F;
  border-radius: 10px;
  padding: 12px 12px 12px 0;
  margin-bottom: 16px;
  gap: 10px;
}
.feature-list li img {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 4px #5ED3C6);
  margin-right: 12px;
}

/************* FOOTER STYLE **************/
footer {
  background: #12161F;
  border-top: 2px solid #5ED3C6;
  color: #E7FCFB;
  padding: 36px 0 18px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-col {
  flex: 1 1 180px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col span, .footer-col a {
  font-size: 0.98rem;
  color: #B5C9C8;
}
.footer-col a:hover {
  color: #F1E7C6;
}
.footer-col img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 9px;
  height: 22px;
}

/************ HEADER & MAIN NAV **************/
header {
  width: 100%;
  background: #202F38;
  box-shadow: 0 2px 10px #26323822;
  z-index: 50;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  height: 88px;
}
.logo img {
  height: 50px;
  filter: drop-shadow(0 0 10px #5E9E9B);
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #E7FCFB;
  font-weight: 500;
  background: none;
  border: none;
  border-radius: 9px;
  padding: 6px 13px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 2;
}
.main-nav a:hover, .main-nav a:focus {
  background: #5ED3C6;
  color: #263238;
  box-shadow: 0 1px 10px #5ED3C644;
}
.primary-cta {
  background: #5ED3C6;
  color: #263238 !important;
  font-weight: 700;
  border-radius: 12px;
  padding: 8px 24px;
  box-shadow: 0 4px 20px #5ED3C64d;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.primary-cta:hover, .primary-cta:focus {
  background: #F1E7C6;
  color: #263238 !important;
  box-shadow: 0 6px 30px #F1E7C680, 0 0 8px #5ED3C6b0;
  transform: scale(1.03);
}

/************ HERO SECTION *************/
.hero {
  width: 100%;
  background: linear-gradient(110deg, #263238 70%, #5E9E9B 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid #5ED3C6;
}
.hero .container {
  min-height: 260px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: #F1E7C6;
  text-shadow: 0 0 22px #5E9E9BCC;
}
.hero p {
  color: #E7FCFB;
  font-size: 1.1rem;
}

/******** MOBILE MENU (BURGER NAV) *********/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #5ED3C6;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 1200;
  transition: color 0.2s, transform 0.2s;
  padding: 2px 8px;
  border-radius: 8px;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  color: #F1E7C6;
  background: #20262F;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #121c23ee;
  z-index: 1400;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.75,0,.33,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  color: #5ED3C6;
  background: none;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 18px 26px 0 0;
  cursor: pointer;
  z-index: 1600;
  transition: color 0.2s, transform 0.2s;
  padding: 4px 16px;
  border-radius: 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F1E7C6;
  background: #20262F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 32px;
  width: 100%;
  margin-top: 28px;
}
.mobile-nav a {
  color: #E7FCFB;
  font-size: 1.25rem;
  background: none;
  padding: 12px 0;
  border: none;
  border-radius: 7px;
  width: 100%;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.2s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #5ED3C6;
  color: #202F38;
}

/********** Cookie Banner ***********/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1700;
  background: #202F38fa;
  color: #E7FCFB;
  padding: 26px 14px 22px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 16px #263238BB;
  border-top: 4px solid #5ED3C6;
  gap: 18px;
  opacity: 1;
  transition: bottom 0.38s cubic-bezier(.75,0,.33,1), opacity 0.40s ease;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  bottom: -150px;
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  color: #E7FCFB;
  max-width: 520px;
  margin-right: 16px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  border: none;
  border-radius: 8px;
  padding: 7px 18px;
  cursor: pointer;
  background: #5ED3C6;
  color: #263238;
  margin: 0;
  box-shadow: 0 2px 10px #5ED3C644;
  transition: background 0.18s, color 0.18s, transform 0.2s;
}
.cookie-btn.reject {
  background: transparent;
  color: #F1E7C6;
  border: 2px solid #5ED3C6;
}
.cookie-btn.settings {
  background: #263238;
  color: #5ED3C6;
  border: 2px solid #5ED3C6;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F1E7C6;
  color: #263238;
  transform: scale(1.04);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FE6D90;
  color: #fff;
  border: 2px solid #FE6D90;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #5ED3C6;
  color: #263238;
}

/******** Cookie Modal ******/
.cookie-modal-overlay {
  position: fixed;
  z-index: 2000;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #121C23dd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #223044;
  color: #E7FCFB;
  border-radius: 18px;
  box-shadow: 0 6px 28px #5E9E9B88, 0 0 10px #5ED3C680;
  width: 95%;
  max-width: 420px;
  padding: 36px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  z-index: 2200;
  animation: cookieModalPop 0.33s cubic-bezier(.4,2,.3,1.3);
}
@keyframes cookieModalPop {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #5ED3C6;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #F1E7C6;
  margin-bottom: 0;
}
.cookie-modal .cookie-category input[type='checkbox'],
.cookie-modal .cookie-category input[type='radio'] {
  accent-color: #5ED3C6;
  width: 22px;
  height: 22px;
}
.cookie-modal .category-essential {
  font-weight: 700;
  color: #5ED3C6;
  font-size: 1.04rem;
}
.cookie-modal .cookie-btns {
  justify-content: flex-end;
  width: 100%;
}
.cookie-modal-close {
  position: absolute;
  top: 9px;
  right: 13px;
  background: none;
  border: none;
  color: #5ED3C6;
  font-size: 1.37em;
  cursor: pointer;
  border-radius: 6px;
  padding: 0 7px;
  z-index: 100;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #20262F;
  color: #F1E7C6;
}

/********** TEXT SECTION & LEGAL **********/
.text-section {
  background: #20262F;
  color: #E7FCFB;
  border-radius: 14px;
  box-shadow: 0 1px 10px #5E9E9B22;
  padding: 22px 16px;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.65;
}
.text-section h3 {
  color: #5ED3C6;
  margin-bottom: 8px;
}
.legal .content-wrapper {
  gap: 30px;
}

/*********** Contact Info ******/
.contact-info .text-section p,
.footer-col span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #E7FCFB;
}
.contact-info .text-section img {
  width: 22px;
  height: 22px;
  margin-right: 3px;
}

/*********** BLOG TEASERS **********/
.blog-teasers {
  gap: 20px;
  flex-wrap: wrap;
  display: flex;
}

/********** Confirmation Section *********/
.confirmation .text-section {
  text-align: center;
}
.confirmation h1 {
  color: #5ED3C6;
}
.confirmation .primary-cta {
  margin-top: 24px;
}

/*************** RESPONSIVE *******************/
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .footer-col {
    flex: 1 1 120px;
  }
  .feature-grid, .service-categories, .brand-logos, .blog-teasers {
    gap: 18px;
  }
}
@media (max-width: 820px) {
  header .container {
    flex-direction: row;
    height: 75px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .main-nav {
    gap: 12px;
  }
  .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  .section { padding: 28px 4vw; margin-bottom: 38px; }
  header .container { flex-direction: row; height: 60px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero { min-height: 195px; padding: 18px 0; }
  .hero .content-wrapper { gap: 10px; }
  .feature-grid, .service-categories, .brand-logos, .blog-teasers, .content-grid { flex-direction: column; gap: 13px }
  .card-container { flex-direction: column; gap: 13px; }
  .footer-col { flex: 1 1 80px; }
  .text-image-section { flex-direction: column; gap: 16px; align-items: flex-start; }
  .testimonial-card { flex-direction: column; padding: 14px; gap: 10px; }
  .cookie-banner { flex-direction: column; padding: 14px 8px; gap: 12px; align-items: flex-start; }
}
@media (max-width: 520px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  .section { padding: 18px 2vw; margin-bottom: 22px; }
  .footer-col { font-size: 0.92rem; }
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.1rem; }
  .primary-cta { padding: 7px 18px; font-size: 1rem; }
  .cookie-modal { padding: 20px 8px 18px 8px; }
  .cookie-banner { padding: 10px 2px; font-size: 0.96rem; }
}

/************ SCROLLBAR STYLE (FUTURISTIC) ***********/
::-webkit-scrollbar {
  width: 7px;
  background: #12161F;
}
::-webkit-scrollbar-thumb {
  background: #2b3e48;
  border-radius: 8px;
  box-shadow: 0 0 10px #5ED3C6aa inset;
}

/************ FOCUS STATE **********/
a:focus, button:focus, .primary-cta:focus, .cookie-btn:focus {
  outline: 2px solid #FE6D90;
  outline-offset: 2px;
}

/********* MICRO-INTERACTIONS *********/
.header, .footer, .cta, .hero, .feature-item, .card, .service-list li, .testimonial-card {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.18s;
}

/********* Z-INDEX *********/
header { z-index: 110; }
footer { z-index: 10; }
.mobile-menu { z-index: 1400; }
.cookie-banner { z-index: 1700; }
.cookie-modal-overlay { z-index: 2000; }

/* End of CSS */
