/* ==== 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #111A23;
  color: #F5F8FA;
  line-height: 1.6;
  font-size: 16px;
  background-color: #10141a;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #10A37F;
  text-decoration: none;
  transition: color .22s cubic-bezier(.55,.09,.68,.53);
}
a:hover, a:focus {
  color: #35FDC2;
}
ul, ol {
  margin: 16px 0 16px 24px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #F5F8FA;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 20px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #e3ecf7;
}
strong {
  color: #ffffff;
  font-weight: 700;
}
blockquote {
  background: #F5F8FA;
  color: #10141a;
  font-style: italic;
  border-left: 4px solid #10A37F;
  padding: 20px 28px;
  margin: 0 0 14px 0;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(28, 238, 211, 0.05);
}
address {
  font-style: normal;
  color: #B2B6BE;
  margin-bottom: 18px;
}

/* ==== TYPOGRAPHY & COLORS ==== */
:root {
  --color-primary: #275C9A;
  --color-secondary: #10A37F;
  --color-accent: #F5F8FA;
  --color-bg-dark: #10141a;
  --color-bg-light: #1A2738;
  --color-bg-card: #16202E;
  --color-text-main: #e3ecf7;
  --color-text-dark: #10141a;
  --shadow-1: 0 2px 12px 0 rgba(24, 180, 236, 0.13);
  --shadow-2: 0 8px 36px 0 rgba(16, 163, 127, 0.19);
  --radius-1: 12px;
  --radius-2: 999px;
}

/* ==== CONTAINER LAYOUTS ==== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-1);
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 24px;
  transition: transform .22s cubic-bezier(.28,.77,.17,1.01), box-shadow .22s cubic-bezier(.28,.77,.17,1.01);
}
.card:hover, .service-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(16,163,127,0.18);
}
/* Card content layouts */
.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;
  align-items: center;
  background: #F5F8FA;
  color: #10141a;
  border-radius: 13px;
  box-shadow: 0 2px 14px 0 rgba(16,163,127,0.07);
  padding: 20px;
  margin-bottom: 20px;
  gap: 20px;
  font-size: 1.11rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
}
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.startup-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.feature-grid > div {
  background: var(--color-bg-card);
  border-radius: var(--radius-1);
  box-shadow: var(--shadow-1);
  padding: 26px 20px;
  min-width: 200px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .19s;
}
.feature-grid > div img {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 15px #10A37F80);
}
.text-section {
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 22px 0;
}
.service-card {
  background: var(--color-bg-card);
  border: 1.7px solid #10A37F08;
  border-radius: var(--radius-1);
  box-shadow: 0 4px 20px 0 rgba(24,180,236,0.08);
  padding: 24px 18px;
  flex: 1 1 285px;
  margin-bottom: 20px;
  transition: box-shadow .21s;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

/* ==== HERO SECTIONS ==== */
.hero {
  background: linear-gradient(120deg,#232841 0%, #275C9A 50%, #10A37F 100%);
  color: #fff;
  padding: 60px 0 48px 0;
}
.hero h1 {
  color: #fff;
}
.hero .cta.primary {
  margin-top: 18px;
}

/* ==== CTAS ==== */
.cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  border-radius: var(--radius-2);
  padding: 13px 38px;
  border: none;
  outline: none;
  background: none;
  color: #fff;
  cursor: pointer;
  letter-spacing: .01em;
  text-transform: none;
  position: relative;
  box-shadow: 0 3px 16px 0 rgba(39,92,154,0.09);
  transition: background .21s, color .21s, box-shadow .21s, transform .22s;
}
.cta.primary {
  background: linear-gradient(90deg,#275C9A 20%, #10A37F 100%);
  color: #fff;
  box-shadow: 0 5px 21px 0 rgba(16,163,127,0.16);
  border: none;
  text-shadow: 0 1px 7px #111A2365;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #10A37F 16%, #35FDC2 100%);
  color:#111A23;
  transform: scale(1.041);
  box-shadow: 0 9px 36px 2px #10A37F44;
}
.cta.secondary {
  background: #192839;
  color: #10A37F;
  border: 1.5px solid #10A37F77;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #10A37F22;
  color: #fff;
}
button.cta {
  border: none;
}

/* ==== HEADER ==== */
header {
  width: 100%;
  background: #181F2E;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px 13px 22px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px 0 #275C9A13;
}
header img {
  height: 42px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #F5F8FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: .04em;
  font-size: 1.01rem;
  position: relative;
  padding: 3px 1px;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: #10A37F;
  width: 0;
  transition: width .27s;
  position: absolute;
  left: 0; bottom: -2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

header .cta.primary {
  margin-left: 31px;
  font-size: 1rem;
  padding: 10px 24px;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #10A37F;
  font-size: 2.1rem;
  padding: 2px 10px;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  border-radius: 50px;
  transition: background .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #10A37F22;
  outline: none;
}

/* ==== FOOTER ==== */
footer {
  width: 100%;
  background: #181F2E;
  padding: 30px 0 20px 0;
  color: #B2B6BE;
  font-size: 1rem;
  margin-top: 80px;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
}
footer img {
  width: 50px;
  margin-right: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-right: 42px;
}
.footer-nav a {
  color: #B2B6BE;
  font-size: .99rem;
  transition: color .17s;
}
.footer-nav a:hover {
  color: #10A37F;
}
footer .text-section {
  gap: 0;
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: #101929;
  box-shadow: -2px 0 16px 0 #10A37F18;
  transform: translateX(110%);
  transition: transform .37s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px 14px 20px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #10A37F;
  border: none;
  font-size: 2.3rem;
  position: absolute;
  top: 19px;
  right: 15px;
  cursor: pointer;
  border-radius: 50px;
  padding: 3px 12px;
  transition: background .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #10A37F22;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 38px;
}
.mobile-nav a {
  color: #F5F8FA;
  font-size: 1.24rem;
  padding: 11px 7px;
  border-radius: 8px;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #10A37F33;
  color: #10A37F;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100vw;
  left: 0;
  background: #181F2E;
  color: #F5F8FA;
  box-shadow: 0 -3px 16px 0 #275C9A22;
  z-index: 2100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 14vw 22px 20vw;
  gap: 20px;
  font-size: 1.1rem;
  transition: transform .32s;
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-banner-text {
  margin-right: 32px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .cta {
  border: none;
  background: #10A37F;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 24px;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.cookie-banner button:hover, .cookie-banner .cta:hover {
  background: #35FDC2;
  color: #10141a;
}
.cookie-banner .cookie-settings {
  background: #275C9A;
  color: #fff;
}
.cookie-banner .cookie-settings:hover {
  background: #193364;
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2200;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #101a23f0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInBackdrop .23s;
}
@keyframes fadeInBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #10141a;
  border-radius: 18px;
  box-shadow: 0 8px 48px 0 #10A37F22;
  min-width: 280px;
  max-width: 96vw;
  width: 380px;
  padding: 32px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popUp .35s cubic-bezier(.45,0,.27,1.5);
}
@keyframes popUp {
  from { transform: translateY(70px) scale(.7); opacity:0; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h2 {
  color: #275C9A;
  font-size: 1.3rem;
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1.08rem;
  flex: 1;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #10A37F;
  cursor: pointer;
}
.cookie-category.essential label {
  font-weight: 700;
  color: #275C9A;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 19px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal button, .cookie-modal .cta {
  border: none;
  background: #10A37F;
  color: #fff;
  font-size: 1rem;
  border-radius: 8px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background .17s, color .17s;
}
.cookie-modal button:hover, .cookie-modal .cta:hover {
  background: #35FDC2;
  color: #10141a;
}

/* ==== FORMS & INPUTS ==== */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  background: #192839;
  color: #fff;
  border: 1px solid #10A37F22;
  border-radius: 7px;
  padding: 11px 13px;
  margin-bottom: 18px;
  transition: border .19s;
}
input:focus, textarea:focus, select:focus {
  border-color: #10A37F;
  outline: none;
}
label {
  font-size: 1rem;
  font-weight: 500;
  color: #F5F8FA;
}

/* ==== UTILITIES ==== */
.gap-20 {
  gap: 20px;
}
.gap-24 {
  gap: 24px;
}
.radius-1 {
  border-radius: var(--radius-1);
}
.radius-2 {
  border-radius: var(--radius-2);
}
.center {
  justify-content: center;
  align-items: center;
}

/* ==== ANIMATIONS & SHADOWS ==== */
@media (prefers-reduced-motion: no-preference) {
  .card, .service-card, .feature-grid > div, .cta {
    transition: box-shadow .23s, transform .22s cubic-bezier(.28,.77,.17,1.01);
  }
  .cta, .cookie-banner button, .cookie-banner .cta {
    transition: box-shadow .18s, background .19s, color .19s, transform .19s;
  }
  .mobile-menu, .cookie-banner, .cookie-modal {
    transition: transform .35s cubic-bezier(.53,1.63,.27,1.01);
  }
}
.card:active, .service-card:active {
  transform: scale(.98);
}

/* ==== RESPONSIVE STYLES ==== */
@media (max-width: 1040px) {
  .container {
    max-width: 93vw;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .team-bios, .startup-listings {
    flex-direction: column;
    gap: 24px;
  }
  .feature-grid > div {
    min-width: 0;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  header .cta.primary {
    display: none;
  }
  .content-wrapper {
    gap: 20px;
  }
  .text-image-section, .features, .service-list, .feature-grid, .startup-listings, .team-bios, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .section {
    padding: 30px 8px;
  }
  .hero {
    padding: 42px 0 28px 0;
  }
  .cta {
    padding: 11px 20px;
    font-size: 1rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 16px 22px 16px;
    font-size: 1rem;
  }
  .cookie-banner .cookie-banner-text {
    margin-right: 0;
    margin-bottom: 13px;
  }
  .cookie-modal {
    padding: 25px 12px 15px 13px;
    width: 95vw;
  }
  .mobile-nav a {
    font-size: 1.10rem;
    padding: 12px 6px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.20rem;
  }
  p, ul, li, .testimonial-card {
    font-size: 0.96rem;
  }
  .footer-nav a { font-size: .96rem; }
  .cta { padding: 10px 17px; font-size: .97rem; }
}

/* ==== NEON/NEXT-GEN ACCENTS ==== */
.card, .service-card, .feature-grid > div {
  border: 1.8px solid #10A37F35;
  box-shadow: 0 1.5px 30px 0 #10A37F22, 0 2px 18px 0 #275C9A11;
  position: relative;
}
.card:before, .service-card:before, .feature-grid > div:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 2px solid transparent;
  transition: box-shadow .22s;
}
.card:hover:before, .service-card:hover:before, .feature-grid > div:hover:before {
  border-color: #35FDC2;
  box-shadow: 0 0 16px 6px #10A37F44, 0 1px 9px 0 #35FDC228;
}

/* ==== SCROLLBAR STYLING (modern) ==== */
body::-webkit-scrollbar {
  width: 10px;
  background: #181F2E;
}
body::-webkit-scrollbar-thumb {
  background: #10A37F90;
  border-radius: 8px;
}

/* ==== MISC ==== */
hr {
  border: 0;
  border-top: 1.8px solid #19336444;
  margin: 32px 0;
}

/* ==== ACCESSIBILITY ==== */
:focus {
  outline: 2px solid #10A37F;
  outline-offset: 2px;
}

/* ==== PRINT OPTIMIZATION ==== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
  body, .container { background: #fff !important; color: #10141a !important; }
}

/* ==== END ==== */
