/*--------------------------------------
  CSS 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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #141b25;
  color: #F6F7F9;
}
ul,ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
.img,svg,img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,input,select,textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
  background: none;
}
:focus-visible {
  outline: 2px solid #18A0A4;color: #141b25;
}

/*--------------------------------------
  CSS VARIABLES & FONTS
--------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');
:root {
  --brand-primary: #1A365D;
  --brand-secondary: #18A0A4;
  --brand-accent: #F6F7F9;
  --brand-bg: #141b25;
  --brand-card-bg: #1a2332;
  --brand-card-border: #232941;
  --brand-shadow: 0 6px 36px 0 rgba(20,35,52,0.27);
  --neon-blue: #18A0A4;
  --neon-purple: #751fff;
  --neon-pink: #e058c7;
  --success-green: #17c963;
  --error-red: #e73d47;
  --hover-dark: #122342;
  --gradient-tech: linear-gradient(90deg,#1A365D 30%,#18A0A4 100%);
  --font-display: 'Montserrat',Arial,sans-serif;
  --font-body: 'Open Sans',Arial,sans-serif;
  --border-radius: 20px;
  --gap-lg: 32px;
  --gap-md: 24px;
  --gap-sm: 16px;
  --gap-xs: 8px;
}

body {
  font-family: var(--font-body);
  background: var(--brand-bg);
  min-height: 100vh;
}

/*--------------------------------------
  CORE LAYOUT
--------------------------------------*/
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
section:last-child {
  margin-bottom: 0;
}

/*--------------------------------------
  TYPOGRAPHY
--------------------------------------*/
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: #F6F7F9;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: var(--gap-sm);
  text-shadow: 0 0 10px #18A0A47a;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: var(--gap-xs);
}
h3 {
  font-size: 1.25rem;
  margin-bottom: var(--gap-xs);
}
h4,h5,h6 {
  font-size: 1rem;
  font-weight: 600;
}

p,li,ul,ol {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.7;
}
strong,b {
  font-weight: 700;
  color: #18A0A4;
}

a {
  transition: color 0.18s cubic-bezier(.4,.1,.1,1);
  color: #18A0A4;
}
a:hover,a:focus {
  color: #751fff;
  text-shadow: 0 0 6px #751fff55;
}

ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--neon-blue);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: calc(50% - 3.5px);
  box-shadow: 0 0 10px #18a0a480;
}

.text-section {
  color: #E5F6F7;
  font-size: 1.08rem;
  background: rgba(24,160,164,0.10);
  border-radius: var(--border-radius);
  padding: 20px 18px;
  margin-bottom: var(--gap-md);
  box-shadow: 0 2px 14px 0 rgba(24,160,164,0.11);
}
.text-section ul {
  margin-bottom: var(--gap-sm);
}

/*--------------------------------------
  BUTTONS & CTA
--------------------------------------*/
.cta {
  padding: 13px 38px;
  border-radius: 32px;
  background: var(--gradient-tech);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 24px 0 #18A0A455, 0 1px 1px 0 #ffffff20 inset;
  border: none;
  outline: none;
  margin-top: var(--gap-sm);
  margin-bottom: var(--gap-sm);
  transition: background 0.15s cubic-bezier(.48,.12,.44,1),
    transform 0.09s cubic-bezier(.32,.1,.1,1),
    box-shadow 0.25s cubic-bezier(.5,.31,.6,1);
  display: inline-block;
}
.cta.primary {
  background: linear-gradient(90deg,#1A365D 60%,#18A0A4 100%);
  color: #fff;
  border: 2px solid #18A0A4;
  box-shadow: 0 0 20px 2px #18A0A455, 0 0.5px 2px 0 #751fff44;
}
.cta.secondary {
  background: #F6F7F9;
  color: #1A365D;
  border: 2px solid #18A0A4;
  box-shadow: 0 3px 12px 0 #18A0A43a;
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, #1A365D 0%, #1e6298 80%, #751fff 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px 0 #751fff90;
}

button.cta {
  cursor: pointer;
}

/*--------------------------------------
  HEADER, LOGO, NAVIGATION
--------------------------------------*/
header {
  width: 100%;
  background: #151c25;
  box-shadow: 0 6px 24px 0 #19202b28;
  padding: 0 0;
  position: relative;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  padding: 20px 16px;
}
header a img {
  height: 38px;
  width: auto;
  margin-right: 20px;
}
header nav {
  display: flex;
  gap: 10px;
  align-items: center;
}
header nav a {
  color: #F6F7F9;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 7px 13px;
  border-radius: 6px;
  transition: background 0.16s,color 0.13s;
}
header nav a:hover,
header nav a:focus {
  background: #18A0A455;
  color: #18A0A4;
}
header .cta.primary {
  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
}

.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 28px;
  top: 24px;
  background: transparent;
  border: 2px solid #18A0A4;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  color: #F6F7F9;
  font-size: 1.7rem;
  align-items: center;
  justify-content: center;
  z-index: 110;
  transition: border 0.2s,background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #18A0A420;
  border-color: #18A0A4;
}

/*--------------------------------------
  MOBILE NAVIGATION
--------------------------------------*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #151c25;
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.51,.23,.24,1.1);
  box-shadow: 0 6px 42px 0 #1a233266;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 24px;
  margin-left: 20px;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  border-radius: 7px;
  width: 40px;
  height: 40px;
  align-self: flex-end;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #18A0A420;
  color: #18A0A4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 45px 28px 0 28px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: #F6F7F9;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 7px;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #18A0A455;
  color: #18A0A4;
}
@media (max-width: 1024px) {
  header .container nav,
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/*--------------------------------------
  MAIN SECTIONS & FLEX LAYOUTS
--------------------------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--brand-shadow);
  padding: 32px 24px;
  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;
  margin-bottom: 20px;
  background: #F6F7F9;
  color: #1A365D;
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 #18A0A432;
  border-left: 5px solid #18A0A4;
  flex-direction: column;
  min-width: 0;
  max-width: 640px;
}
.testimonial-card p {
  color: #1A365D;
  font-size: 1.05rem;
}
.testimonial-card span {
  font-size: 1.08rem;
  color: #135881;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*--------------------------------------
  HERO / FEATURE GRID & CARDS
--------------------------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-grid > div {
  background: var(--brand-card-bg);
  border: 2px solid var(--brand-card-border);
  border-radius: var(--border-radius);
  padding: 24px 18px 24px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  box-shadow: 0 2px 8px #18A0A422;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: border 0.19s,transform 0.16s,box-shadow 0.21s;
  position: relative;
}
.feature-grid > div img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px #18a0a440);
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  border-color: #18A0A4;
  box-shadow: 0 8px 32px #18A0A477, 0 2px 6px #751fff22;
  transform: translateY(-3px) scale(1.01);
}
.feature-grid h3 {
  color: #18A0A4;
  margin-bottom: 3px;
}

/*--------------------------------------
  FOOTER
--------------------------------------*/
footer {
  background: #151c25;
  color: #F6F7F9;
  padding: 34px 0 12px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 40px;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 1rem;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer nav a {
  color: #F6F7F9;
  opacity: 0.86;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  transition: color 0.16s,opacity 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #18A0A4;
  opacity: 1;
}
footer .text-section {
  background: none;
  color: #9eb1bd;
  font-size: 0.98rem;
  padding: 0;margin-bottom: 0;
}
footer img {
  height: 32px;
  width: auto;
  margin-right: 12px;
  margin-bottom: 14px;
}

/*--------------------------------------
  RESPONSIVE DESIGN
--------------------------------------*/
@media (max-width: 1024px) {
  .feature-grid {
    gap: 16px;
  }
  .card-container,.content-grid,footer .container {
    gap: 18px;
  }
}
@media (max-width: 830px) {
  .container {
    max-width: 98vw;
  }
  .section {
    padding: 32px 8px;
    margin-bottom: 48px;
  }
  .feature-grid > div {
    min-width: 98vw;
    flex: 1 1 100%;
    border-radius: 14px;
  }
  .feature-grid {
    flex-direction: column;
  }
  .card-container,
  .content-grid,
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.24rem;
  }
  .section {
    padding: 22px 3vw;
    margin-bottom: 32px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .feature-grid > div {
    padding: 18px 11px;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 525px) {
  h1 {
    font-size: 1.39rem;
  }
  .container, .content-wrapper {
    padding: 0 2vw;
  }
  .footer .container {
    gap: 9px;
  }
}

/*--------------------------------------
  ANIMATIONS / MICRO-INTERACTIONS
--------------------------------------*/
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.22s cubic-bezier(.41,.01,.32,.97),
    transform 0.13s cubic-bezier(.41,.01,.32,.97);
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 32px 0 #751fff49, 0 2px 8px 0 #18A0A477;
  transform: translateY(-2px);
}

/*--------------------------------------
  COOKIE CONSENT BANNER & MODAL
--------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #151c25;
  color: #F6F7F9;
  padding: 18px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -6px 28px 0 #18A0A466;
  z-index: 99;
  border-top: 3px solid #18A0A4;
  animation: cookieBannerShow 0.8s cubic-bezier(.41,.01,.32,.97);
}
@keyframes cookieBannerShow {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 2 1 290px;
  font-size: 1.02rem;
}
.cookie-banner button {
  margin-left: 10px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 8px 20px;
  font-size: 1rem;
  background: #18A0A4;
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px 0 #18A0A425;
  transition: background .16s, color .15s,transform .13s;
}
.cookie-banner button:hover,.cookie-banner button:focus {
  background: #751fff;
  color: #fff;
  transform: translateY(-2px) scale(1.01);
}
.cookie-banner .cookie-settings {
  background: #F6F7F9;
  color: #1A365D;
  border: 2px solid #18A0A4;
}
.cookie-banner .cookie-settings:hover,.cookie-banner .cookie-settings:focus {
  background: #18A0A4;
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 8px;
    font-size: 0.98rem;
  }
  .cookie-banner button {
    margin-left: 0;
    margin-right: 8px;
  }
}

/* cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height:100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #232941bb;
  z-index: 1500;
  animation: fadeIn .35s cubic-bezier(.41,.01,.32,.97);
}
@keyframes fadeIn {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: #181e26;
  color: #F6F7F9;
  border-radius: 18px;
  box-shadow: 0 6px 60px #751fff55;
  min-width: 320px;
  max-width: 98vw;
  padding: 32px 34px 28px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1551;
  animation: modalAppear 0.38s cubic-bezier(.41,.01,.32,.97);
}
@keyframes modalAppear {
  0% { transform: scale(0.97); opacity: 0; } 100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.22rem;
  color: #18A0A4;
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  background: #20293D;
  border-radius: 10px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  border: 2px solid #263461;
}
.cookie-category.essential {
  border-left: 4px solid #18A0A4;
  opacity: 1;
}
.cookie-category label {
  font-weight: 600;
  letter-spacing: .01em;
  color: #fff;
}
.cookie-category input[type='checkbox'] {
  accent-color: #18A0A4;
  width: 26px;
  height: 26px;
  margin-left: 20px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 19px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-actions button {
  min-width: 108px;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 16px 4vw;
    min-width: 0;
  }
  .cookie-modal h3 {
    font-size: 1.06rem;
  }
  .cookie-category,
  .cookie-modal-actions {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/*--------------------------------------
  MISC
--------------------------------------*/
::-webkit-input-placeholder { color: #BBC7D5; opacity:1; }
::-moz-placeholder { color: #BBC7D5; opacity:1; }
:-ms-input-placeholder { color: #BBC7D5; opacity:1; }
::placeholder { color: #BBC7D5; opacity:1; }

::-webkit-scrollbar {
  width: 12px;
  background: #212532;
}
::-webkit-scrollbar-thumb {
  background: #18A0A455;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb:hover {
  background: #751fff77;
}

/*--------------------------------------
  VISUAL EFFECTS FOR TECH FUTURISTIC STYLE
--------------------------------------*/
.card, .feature-grid > div {
  border: 2px solid #18A0A462;
  box-shadow: 0 3px 18px #751fff29, 0 0px 2px #18A0A433;
}
.card {
  background:
    linear-gradient(150deg,#1A365D 60%,#18A0A4 100%) padding-box,
    linear-gradient(90deg, #751fff 0%, #18A0A4 100%) border-box;
  color: #F6F7F9;
  box-shadow: 0 3px 22px #18A0A463;
  border-radius: var(--border-radius);
}
.card:hover {
  box-shadow: 0 12px 48px #18A0A478, 0 6px 44px #751fff26;
  border-color: #751fff;
}

/* Neon accent for h2 */
h2 {
  background: linear-gradient(90deg, #18A0A4 40%, #751fff 65%, #e058c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 12px #18A0A466, 0 0 3px #751fff55;
}

/*--------------------------------------
  UTILITIES & OVERRIDES
--------------------------------------*/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }

.visible { display: block !important; }
.hidden { display: none !important; }

/*--------------------------------------
  PRINT EXCLUSION FOR BANNERS & MENUS
--------------------------------------*/
@media print {
  .cookie-banner, .cookie-modal-overlay, .mobile-menu, header, footer { display: none !important; }
}
