/* 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 { scroll-behavior: smooth; }
body {
  background: #F9FBFD;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #20243a;
  min-height: 100vh;
  line-height: 1.65;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
a {
  color: #2EA59B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #00E0C6;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

/* BRAND COLOR PALETTE & VIBRANT ADDS */
:root {
  --primary: #1C2440;
  --secondary: #2EA59B;
  --accent: #F9FBFD;
  --ultraaccent: #00E0C6;
  --vibrant-yellow: #FFC300;
  --vibrant-pink: #FF23AC;
  --vibrant-purple: #8536FF;
  --danger: #EF5350;
  --text-main: #1C2440;
  --text-light: #fff;
  --shadow: 0 2px 16px 0 rgba(28,36,64,0.10);
}

/* TYPOGRAPHY – Hierarchy & Vibrancy */
h1, .h1 {
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
h2, .h2 {
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 12px;
  line-height: 1.25;
}
h4, .h4 {
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
}
p, li, span, a, label, input, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary);
}
.subheadline {
  font-size: 1.25rem;
  color: var(--vibrant-pink);
  font-weight: 500;
  margin-bottom: 24px;
}
strong {
  color: var(--vibrant-purple);
  font-weight: 700;
}

/* SECTION & LAYOUT SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section,
.hero,
.features,
.services,
.testimonials,
.latest-reviews,
.latest-reports,
.startup_stories,
.contact,
.about,
.confirmation,
.legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .section,
  .hero,
  .features,
  .services,
  .testimonials,
  .latest-reviews,
  .latest-reports,
  .startup_stories,
  .contact,
  .about,
  .confirmation,
  .legal {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
}

/* FLEXBOX LAYOUTS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(133,54,255,0.12), var(--shadow);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 15px;
  padding: 20px 28px;
  box-shadow: 0 2px 20px 0 rgba(46,165,155,0.10), var(--shadow);
  margin-bottom: 20px;
  position: relative;
  border-left: 5px solid var(--vibrant-pink);
  min-width: 220px;
  max-width: 480px;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 6px;
  text-align:center;
}
.testimonial-card span {
  color: var(--secondary);
  font-size: 0.97rem;
  font-weight: 600;
}
.testimonials .testimonial-card {
  margin-right: 26px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* HERO */
.hero {
  padding-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(100deg, #F9FBFD 70%, #FFC300 120%);
  box-shadow: 0 2px 40px 0 rgba(255,35,172,0.04), var(--shadow);
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
  position: relative;
}
.hero h1 {
  color: var(--vibrant-purple);
  font-size: 2.8rem;
}
.hero .subheadline {
  color: var(--vibrant-yellow);
  font-weight: 700;
  text-shadow: 0 2px 8px #fff;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 32px;
    border-radius: 0 0 24px 24px;
    margin-bottom: 34px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* BUTTONS & CTA */
.cta {
  background: linear-gradient(90deg, var(--vibrant-pink) 35%, var(--vibrant-yellow) 95%);
  color: #fff;
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 15px 32px;
  border: none;
  border-radius: 33px;
  box-shadow: 0 2px 14px 0 rgba(255,35,172,0.13);
  margin-top: 14px;
  cursor: pointer;
  display: inline-block;
  transition: background 0.18s, box-shadow 0.25s, transform 0.15s;
  letter-spacing: 0.07rem;
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, var(--vibrant-pink) 15%, var(--vibrant-purple) 85%);
  box-shadow: 0 4px 20px 0 rgba(133,54,255,0.18);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

button,
input[type='submit'],
input[type='button'] {
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 11px 28px;
  border-radius: 28px;
  box-shadow: 0 2px 14px 0 rgba(46,165,155,0.08);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.25s, transform 0.13s;
}
button:hover, button:focus,
input[type='submit']:hover,
input[type='submit']:focus {
  background: var(--vibrant-purple);
  box-shadow: 0 4px 18px 0 rgba(133,54,255,0.15);
}

.button-secondary {
  background: var(--primary);
  color: #fff;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--vibrant-yellow);
  color: var(--primary);
}
.button-danger {
  background: var(--danger);
  color: #fff;
}
.button-danger:hover, .button-danger:focus {
  background: #c62828;
}

/* NAVBAR STYLES */
header {
  width: 100%;
  background: #fff;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(28,36,64,0.07);
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 20px 20px;
  justify-content: flex-start;
}
.main-nav a {
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.03rem;
  padding: 6px 10px;
  border-radius: 12px;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: background 0.14s, color 0.12s, border 0.18s;
  margin-bottom: 0;
}
.main-nav a.cta {
  background: linear-gradient(90deg,var(--vibrant-pink) 25%, var(--vibrant-yellow) 85%);
  color:#fff;
  border: none;
  margin-left: auto;
  font-size: 1.12rem;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--vibrant-pink);
  border: 2px solid var(--vibrant-pink);
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: linear-gradient(90deg, var(--vibrant-purple) 10%, var(--vibrant-pink) 90%);
  color: #fff;
  border: none;
}
.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 20px;
}

/* Responsive NAVBAR - show burger on small screens */
.mobile-menu-toggle {
  display: none;
  background: var(--vibrant-pink);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  padding: 5px 14px 5px 14px;
  position: absolute;
  top: 17px;
  right: 24px;
  z-index: 1001;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 12px 0 rgba(255,195,0,0.13);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--vibrant-yellow);
  outline: none;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
    padding-left: 10px;
    padding-right:10px;
  }
  .main-nav a.cta {
    font-size: 1rem;
    padding: 7px 18px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 0.99rem;
  }
  .main-nav img {
    margin-right: 8px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU – SLIDING OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 95vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 44px 0 rgba(28,36,64,0.22);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.78,.23,.12,.89);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.37s cubic-bezier(.78,.23,.12,.89);
}
.mobile-menu-close {
  background: var(--vibrant-pink);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2002;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--danger);
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 80px;
}
.mobile-nav a {
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 600;
  padding: 20px 45px 18px 36px;
  border-bottom: 1px solid #F6F6F6;
  transition: background 0.14s, color 0.18s;
  border-radius: 0 18px 18px 0;
}
.mobile-nav a:first-child {
  border-top: 1px solid #F6F6F6;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--vibrant-yellow);
  color: #fff;
  outline: none;
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* LEGAL/TEXT SECTIONS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 6px;
}
.text-section img {
  height: 19px;
  width: 19px;
  vertical-align: middle;
  margin-right: 6px;
}
.legal .text-section h2, .legal .text-section h3 {
  margin-top: 12px;
  margin-bottom: 10px;
}

/* LISTS & ICONS */
.features ul,
.services ul,
.latest-reviews ul,
.latest-reports ul,
.startup_stories ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 0;
  margin-bottom: 0;
}
.features li {
  display: flex;
  align-items: center;
  font-size: 1.07rem;
  gap: 12px;
  font-weight: 600;
  background: none;
  color: var(--primary);
}
.features li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.services li {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px 20px 14px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  border-left: 4px solid var(--vibrant-purple);
  transition: box-shadow 0.22s, border 0.13s;
}
.services li:hover {
  border-left: 4px solid var(--vibrant-pink);
  box-shadow: 0 4px 18px 0 rgba(133,54,255,0.09), var(--shadow);
}
.latest-reviews li, .latest-reports li, .startup_stories li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.latest-reviews a,.latest-reports a, .startup_stories a {
  color: var(--vibrant-purple);
  transition: color 0.15s, text-decoration 0.13s;
  text-decoration: underline;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.latest-reviews a:hover, .latest-reports a:hover, .startup_stories a:hover {
  color: var(--vibrant-pink);
  text-decoration: underline wavy 1.5px var(--vibrant-pink);
}

/* FOOTER */
footer {
  background: #1C2440;
  color: #fff;
  padding: 36px 0 20px 0;
  width: 100%;
  box-shadow: 0 -2px 14px 0 rgba(28,36,64,0.06);
}
footer .container {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.footer-nav a {
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  opacity: 0.82;
  transition: color 0.16s, opacity 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--vibrant-yellow);
  opacity: 1;
}
.branding {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.branding img {
  height: 31px;
  width: auto;
}
.branding span {
  color: #fff;
  opacity: 0.90;
  font-size: 0.98rem;
}
@media (max-width: 768px) {
  .footer-nav {
    gap: 10px;
    font-size: 0.92rem;
  }
  .branding img { height: 23px; }
}

/* FORM & INPUTS (for contact/soon forms) */
input, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #dadbe6;
  border-radius: 9px;
  padding: 11px 14px;
  margin-bottom: 14px;
  background: #fff;
  transition: border 0.18s;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--vibrant-pink);
  outline: none;
}
label {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 5px;
}

/* CONFIRMATION */
.confirmation {
  background: linear-gradient(110deg, var(--vibrant-yellow) 25%, var(--vibrant-pink) 100%);
  color: #fff;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 32px 0 rgba(28,36,64,0.16);
}
.confirmation h1 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 14px;
}
.confirmation .text-section a.cta {
  background: #fff;
  color: var(--vibrant-pink);
  margin-top: 20px;
}
.confirmation .text-section a.cta:hover {
  background: var(--vibrant-pink);
  color: #fff;
}

/* RESPONSIVE UTILITIES */
@media (max-width: 600px) {
  h1, .h1 { font-size: 1.5rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  .testimonial-card { padding: 14px 8px; }
}
@media (max-width: 500px) {
  .testimonial-card { min-width: unset; max-width: 99vw; }
}

/* COOKIE CONSENT BANNER - Fixed Bottom */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  border-top: 3px solid var(--vibrant-pink);
  box-shadow: 0 -4px 26px 0 rgba(28,36,64,0.09);
  z-index: 5001;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 1.01rem;
  gap: 14px;
  transition: transform 0.36s;
}
.cookie-banner.hide {
  transform: translateY(150%);
  pointer-events: none;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-banner .cookie-banner-buttons button {
  font-size: 0.92rem;
  padding: 10px 20px;
  border-radius: 18px;
  font-weight: 600;
}
.cookie-banner .cookie-accept {
  background: linear-gradient(90deg, var(--vibrant-pink) 5%, var(--vibrant-yellow) 85%);
  color: #fff;
}
.cookie-banner .cookie-accept:hover {
  background: linear-gradient(90deg, var(--vibrant-purple) 45%, var(--vibrant-pink) 100%);
}
.cookie-banner .cookie-settings {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .cookie-settings:hover {
  background: var(--vibrant-yellow);
  color: var(--primary);
}
.cookie-banner .cookie-reject {
  background: var(--danger);
  color: #fff;
}
.cookie-banner .cookie-reject:hover {
  background: #c62828;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 8px;
    font-size: 0.96rem;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5002;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,36,64,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(133,54,255,0.16), var(--shadow);
  min-width: 300px;
  max-width: 98vw;
  width: 385px;
  padding: 32px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeInPopup 0.32s cubic-bezier(.79,.17,.36,1.13);
}
@keyframes fadeInPopup {
  from { transform: translateY(30px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1;}
}
.cookie-modal-header {
  font-size: 1.3rem;
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: var(--vibrant-pink);
  margin-bottom: 7px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}
.cookie-modal-close {
  background: transparent;
  color: var(--vibrant-pink);
  border: none;
  font-size: 1.6rem;
  position: absolute;
  top: 18px;
  right: 20px;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--danger);
}
.cookie-modal-content {
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  padding: 9px 0;
}
.cookie-category .cookie-toggle {
  margin-left: auto;
}
/* Custom styled switches for toggles */
.cookie-toggle {
  position: relative;
  width: 46px;
  height: 24px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e0e1e6;
  transition: 0.24s;
  border-radius: 30px;
}
.cookie-toggle input:checked + .cookie-slider {
  background: linear-gradient(90deg, var(--vibrant-purple) 30%, var(--vibrant-pink) 80%);
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background: #fff;
  box-shadow: 0 0 1px #0003;
  border-radius: 50%;
  transition: 0.27s;
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-category.disabled label {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 11px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  font-size: 0.98rem;
  padding: 10px 20px;
  border-radius: 18px;
  font-weight: 600;
}

/* Animations for modal/banner */
@media (max-width: 480px) {
  .cookie-modal {
    padding: 16px 6px 10px 8px;
    min-width: unset;
    width: 98vw;
  }
  .cookie-modal-header { font-size: 1.02rem; }
}

/* MICRO-INTERACTIONS & SHADOWS */
.card, .testimonial-card, .services li {
  transition: box-shadow 0.18s, border 0.13s, transform 0.21s;
}
.card:focus-within, .testimonial-card:focus-within, .services li:focus-within {
  box-shadow: 0 4px 30px 0 rgba(255,195,0,0.10), 0 2px 16px 0 rgba(28,36,64,0.10);
  transform: scale(1.01);
  outline: none;
}
a, button, .cta {
  outline: none;
}

/* ADDITIONAL VIBRANT EFFECTS */
::-webkit-scrollbar {
  width: 9px;
  background: #F6F6F6;
}
::-webkit-scrollbar-thumb {
  background: var(--vibrant-pink);
  border-radius: 9px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--vibrant-purple);
}

/* Selection color */
::selection {
  color: #fff;
  background: var(--vibrant-pink);
}

/* MINIMUM CARD/SECTION GAPS */
.section > *,
.features > *,
.services > *,
.latest-reviews > *,
.latest-reports > *,
.testimonials > *,
.startup_stories > *,
.contact > *,
.about > *,
.confirmation > *,
.legal > * {
  margin-bottom: 20px;
}
.section > *:last-child,
.features > *:last-child,
.services > *:last-child,
.latest-reviews > *:last-child,
.latest-reports > *:last-child,
.testimonials > *:last-child,
.startup_stories > *:last-child,
.contact > *:last-child,
.about > *:last-child,
.confirmation > *:last-child,
.legal > *:last-child {
  margin-bottom: 0;
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* END STYLES */
