/* RESET AND 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F7F7F7;
  color: #183059;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,ol {
  list-style: none;
}
a {
  color: #27AAC1;
  text-decoration: none;
  transition: color .22s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #183059;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
/* TYPOGRAPHY - MODERN BOLD */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #183059;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.2rem;
}
p,li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #183059;
}
strong {
  font-weight: 700;
  color: #183059;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* HEADER STYLES */
header {
  background: #183059;
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 100;
  box-shadow: 0 3px 18px rgba(24,48,89, 0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
header img {
  height: 40px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  padding: 8px 16px;
  border-radius: 32px;
  transition: background .18s cubic-bezier(.4,0,.2,1), color .18s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.main-nav a.cta.primary,
.main-nav a.cta.primary:visited {
  background: #27AAC1;
  color: #183059;
  font-weight: 800;
  box-shadow: 0 1px 4px rgba(24,48,89,0.06);
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: #fff;
  color: #27AAC1;
}
.main-nav a:hover, .main-nav a:focus {
  background: #fff;
  color: #183059;
}
.mobile-menu-toggle {
  display: none;
  background: #27AAC1;
  color: #183059;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1.6rem;
  line-height: 1;
  margin-left: 10px;
  transition: background .18s, color .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #fff;
  color: #27AAC1;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #183059;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.87,0,.13,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 32px 0;
  box-shadow: -8px 0 24px rgba(24,48,89,0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  margin: 20px 24px 10px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #27AAC1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 20px;
  padding: 0 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.3rem;
  background: none;
  padding: 12px 0;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #27AAC1;
  background: #fff;
}

/* SECTIONS & LAYOUTS: FLEXBOX spacing (MODERN BOLD) */
section,
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px rgba(24,48,89,0.07);
}
.hero-section {
  background: #183059;
  color: #fff;
  margin-bottom: 60px;
  padding: 60px 0 60px 0;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 6px 32px rgba(24,48,89,0.14);
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero-section h1,
.hero-section h2,
.hero-section h3 {
  color: #fff;
}
section.feature-section,
section.features-section,
section.cta-section {
  background: #27AAC1;
  color: #183059;
  border-radius: 24px;
  box-shadow: 0 2px 20px rgba(24,48,89,0.09);
}
.feature-section h2, .features-section h2, .cta-section h2 {
  color: #183059;
}

/* SPACING AND FLEXBOX for cards/lists */
.card-container, .feature-cards, .startup-cards, .review-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.card, .feature-cards > div, .startup-cards > div, .review-cards > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(24,48,89,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 20px 24px 20px;
  min-width: 260px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s cubic-bezier(.4,0,.2,1), transform .16s cubic-bezier(.4,0,.2,1);
  border: 3px solid #27AAC1;
}
.card:hover, .review-cards > div:hover, .feature-cards > div:hover,.startup-cards > div:hover {
  box-shadow: 0 6px 40px rgba(24,48,89,0.13);
  transform: translateY(-6px) scale(1.028);
}
.card h3, .feature-cards h3, .review-cards h3, .startup-cards h3 {
  margin-bottom: 10px;
  color: #183059;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.card p, .review-cards p, .feature-cards p, .startup-cards p {
  color: #183059;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(24,48,89,0.09);
  margin-top: 16px;
  border: 2px solid #27AAC1;
  color: #183059;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.category-tabs, .category-navigation, .filters, .filters-sorting {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 10px 0 14px 0;
  font-weight: 700;
}
.category-tabs a,.category-navigation a {
  color: #27AAC1;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  background: #fff;
  transition: background .18s, color .18s;
}
.category-tabs a:hover, .category-tabs a:focus, .category-navigation a:hover, .category-navigation a:focus {
  background: #27AAC1;
  color: #fff;
}
.filters p, .filters-sorting p {
  margin-right: 24px;
  font-size: 1rem;
  color: #183059;
}

/* LISTS with ICONS */
ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
ul li img {
  width: 24px;
  height: 24px;
}

/* FOOTER */
footer {
  background: #183059;
  color: #fff;
  border-radius: 36px 36px 0 0;
  padding: 40px 0 25px 0;
  box-shadow: 0 -3px 20px rgba(24,48,89,0.10);
  font-size: 0.96rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.footer-navigation a {
  color: #27AAC1;
  font-weight: 700;
  border-radius: 10px;
  padding: 5px 13px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background .20s, color .20s;
  background: rgba(255,255,255,0.03);
}
.footer-navigation a:hover, .footer-navigation a:focus {
  background: #27AAC1;
  color: #183059;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.contact-info p {
  display: flex;
  align-items: center;
  color: white;
  gap: 7px;
  font-size: 1rem;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 10px 0 15px 0;
}
.social-links a {
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  transition: background .20s, transform .20s;
}
.social-links a:hover, .social-links a:focus {
  background: #27AAC1;
  transform: scale(1.08);
}

/* CTA BUTTONS */
.cta.primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.18rem;
  padding: 14px 32px;
  background: #27AAC1;
  color: #183059 !important;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(24,48,89,0.11);
  margin-top: 14px;
  transition: background .22s, box-shadow .22s, color .22s, transform .16s;
  letter-spacing: .5px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #183059;
  color: #27AAC1 !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(24,48,89,0.21);
}
.cta {
  cursor: pointer;
  text-align: center;
  outline: none;
}

/* TESTIMONIALS & REVIEW CARDS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 22px 22px 22px;
  background: #fff !important;
  color: #183059;
  border-left: 6px solid #27AAC1;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(24,48,89,.09);
  font-size: 1.15rem;
  margin-bottom: 18px;
  margin-top: 12px;
  min-width: 200px;
  max-width: 620px;
}
.testimonial-card p strong {
  color: #183059;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #183059;
  color: #fff;
  z-index: 1600;
  min-height: 72px;
  box-shadow: 0 -6px 38px rgba(24,48,89,0.13);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform .4s cubic-bezier(.6,0,.2,1);
}
.cookie-banner.hide {
  transform: translateY(150%);
}
.cookie-banner p{
  color: #fff;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-actions .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 24px;
  border: none;
  padding: 10px 22px;
  margin: 0 7px 0 0;
  cursor: pointer;
  background: #27AAC1;
  color: #183059;
  box-shadow: 0 2px 8px rgba(24,48,89,0.07);
  transition: background .16s, color .16s;
}
.cookie-actions .cookie-btn:hover,.cookie-actions .cookie-btn:focus {
  background: #fff;
  color: #27AAC1;
}
.cookie-actions .settings-btn {
  background: #fff;
  color: #27AAC1;
  font-weight: 700;
  border: 2px solid #27AAC1;
}
.cookie-actions .settings-btn:hover, .cookie-actions .settings-btn:focus {
  background: #27AAC1;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0;right: 0;bottom: 0;
  z-index: 1700;
  background: rgba(24,48,89,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .18s;
}
.cookie-modal {
  background: #fff;
  color: #183059;
  border-radius: 24px;
  padding: 36px 24px 30px 24px;
  min-width: 310px;
  max-width: 420px;
  box-shadow: 0 7px 48px rgba(24,48,89,0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  animation: modal-slide-in .24s cubic-bezier(.4,0,.2,1);
}
@keyframes modal-slide-in {
  from { transform: translateY(60px) scale(.86); opacity:0; }
  to   { transform: none; opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 700;
}
.cookie-category .toggle {
  appearance: none;
  width: 40px;
  height: 20px;
  background: #cccccc;
  border-radius: 15px;
  position: relative;
  outline: none;
  transition: background .15s;
}
.cookie-category .toggle:checked {
  background: #27AAC1;
}
.cookie-category .toggle:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: .12s;
  box-shadow: 0 1px 4px rgba(24,48,89,.08);
}
.cookie-category .toggle:checked:before {
  left: 21px;
}
.cookie-modal .essential-info {
  font-size: .95rem;
  color: #27AAC1;
  padding-left: 10px;
}
.cookie-modal-close {
  align-self: flex-end;
  color: #27AAC1;
  background: none;
  font-size: 1.7rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin: -12px -10px 0 0;
  transition: color .18s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  color: #183059;
}

/* LEGAL SECTION for policies */
.legal-section {
  background: #fff;
  color: #183059;
  border-radius: 18px;
  border: 2px solid #27AAC1;
  box-shadow: 0 2px 21px rgba(24,48,89,0.12);
  margin-bottom: 58px;
  padding: 32px 20px;
}
.legal-section h1 {
  color: #183059;
  margin-bottom: 22px;
  font-size: 2.1rem;
}
.legal-section ul {
  margin-top: 12px;
}
.legal-section ul li {
  color: #183059;
}

/* CONTACT SECTION */
.contact-section .contact-info {
  background: #183059;
  border-radius: 14px;
  padding: 18px 16px;
  gap: 10px;
  box-shadow: 0 1px 9px rgba(24,48,89,.05);
}
.contact-section a.cta {
  margin-top: 24px;
}

/* THANK YOU section */
.thank-you-section {
  background: #27AAC1;
  color: #183059;
  border-radius: 26px;
  box-shadow: 0 3px 27px rgba(24,48,89,0.13);
}
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.thank-you-section h1 {
  color: #183059;
}

/* KEY STATS (IA Page) */
.key-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}
.key-stats ul {
  gap: 9px;
}
.key-stats li {
  font-size: 1.13rem;
  font-weight: 700;
  color: #183059;
}
.key-stats li strong {
  color: #27AAC1;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* FORM ELEMENTS */
input,textarea,select {
  font-family: inherit;
  font-size: 1rem;
  padding: 9px 13px;
  border: 2px solid #27AAC1;
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
  outline: none;
  margin-bottom: 16px;
  transition: border .16s;
}
input:focus,textarea:focus,select:focus {
  border-color: #183059;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  .container {
    max-width: 94vw;
    padding: 0 8px;
  }
  .main-nav {
    gap: 14px;
  }
  .footer-navigation {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  /* NAV */
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding: 10px 12px 8px 12px;
    min-height: 56px;
    gap: 12px;
  }
  /* HERO */
  .hero-section {
    padding: 38px 0 42px 0;
    border-radius: 0 0 26px 26px;
  }
  .hero-section .content-wrapper {
    gap: 13px;
    padding: 0 0;
  }
  /* CONTENT */
  .section, section {
    padding: 28px 7px;
    border-radius: 11px;
  }
  /* CARDS, FLEX containers */
  .card-container,.feature-cards,.startup-cards,.review-cards {
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .card, .feature-cards > div, .startup-cards > div, .review-cards > div {
    min-width: unset;
    flex: 1 1 100%;
    padding: 18px 12px 16px 12px;
    font-size: 1rem;
  }
  .testimonial-card {
    padding: 18px 9px 14px 16px;
    font-size: 1rem;
    min-width: unset;
    max-width: 100%;
  }
  .category-tabs, .category-navigation, .filters, .filters-sorting {
    gap: 8px;
    font-size: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
  /* LAYOUT FLEX containers */
  .content-grid, .text-image-section, .key-stats {
    flex-direction: column;
    gap: 13px;
  }
  .content-wrapper {
    gap: 12px;
    padding: 0 3px;
  }
  .contact-info {
    padding: 7px 4px;
    gap: 4px;
  }
  .footer-navigation {
    flex-direction: column;
    gap: 7px;
  }
  footer .container {
    gap: 11px;
  }
  .social-links {
    gap: 8px;
  }
  /* MODALS & BANNER */
  .cookie-modal {
    min-width: 94vw;
    max-width: 99vw;
    padding: 18px 6px 15px 8px;
    border-radius: 13px;
  }
  .cookie-banner {
    padding: 16px 6px;
    font-size: .97rem;
  }
}
@media (max-width: 440px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .cta.primary {
    font-size: 1rem;
    padding: 11px 10px;
  }
  .footer-navigation a {
    font-size: .97rem;
    padding: 4px 7px;
  }
}

/* VISUAL HIERARCHY (GEOMETRIC DESIGN)
   Use color blocks, accents for separation */
section.feature-section, section.features-section {
  border-left: 7px solid #183059;
  box-shadow: 9px 0 24px -13px #18305922;
}
section.cta-section, .thank-you-section {
  outline: 4px dashed #18305922;
  outline-offset: -20px;
}
/* Geometric badge accent for h2 on key sections */
h2::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: #27AAC1;
  width: 11px;
  height: 27px;
  border-radius: 3px;
  margin-right: 17px;
}


/* MICRO-INTERACTIONS & TRANSITIONS */
.card, .feature-cards > div, .startup-cards > div, .review-cards > div, .cta.primary, .main-nav a, .footer-navigation a {
  transition: box-shadow .16s, background .18s, color .19s, transform .16s;
}
.card:active, .cta.primary:active {
  transform: scale(0.98);
}

/* SCROLLBAR (modern, subtle for desktop) */
body::-webkit-scrollbar {
  width: 9px;
  background: #F7F7F7;
}
body::-webkit-scrollbar-thumb {
  background: #27AAC1;
  border-radius: 8px;
}

/* END OF STYLE */
