/* =========================================================
   Syneron ARC – style.css (Tech Futuristic, Flexbox only)
   ========================================================= */
/* ==== 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #20242C;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #F2F5FF;
  background: linear-gradient(135deg, #232833 0%, #20242C 100%);
  min-height: 100vh;
  font-size: 16px;
  /* Subtle nebula effect */
  background-attachment: fixed;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #F4A261;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff5e0;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: #232833;
  border: 1px solid #A9B3BC;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 16px;
}

/* ==== Typography ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: #fff;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #F4A261;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #61D7FE;
  font-weight: 600;
}
h4, h5, h6 {
  color: #A9B3BC;
  margin-bottom: 10px;
}
p, li, .text-section, .content-wrapper {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #E8EEF9;
  line-height: 1.7;
  margin-bottom: 16px;
}
strong, b {
  color: #F4A261;
  font-weight: 600;
}

/* ==== Brand Colors as CSS Custom Props ==== */
:root {
  --color-primary: #264653;
  --color-secondary: #A9B3BC;
  --color-accent: #F4A261;
  --color-bg: #20242C;
  --color-bg-light: #232833;
  --color-neon: #61D7FE;
  --color-surface: #273035;
  --color-card: #232833;
  --color-card-light: #29313D;
  --color-text: #E8EEF9;
  --color-heading: #fff;
  --color-footer-bg: #191C21;
}

/* ============================
   General Layout and Sections
   ============================ */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-card-light);
  border-radius: 22px;
  box-shadow: 0 10px 40px 0 rgba(97,215,254,0.12),0 1.5px 8px 0 rgba(36,69,83,.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* ==== Hero Section ==== */
.hero {
  background: linear-gradient(120deg, var(--color-primary) 65%, var(--color-neon) 100%);
  color: #fff;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  box-shadow: 0 5px 24px 0 rgba(36,69,83,.18);
}
.hero .container {
  padding-top: 44px;
  padding-bottom: 44px;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  text-shadow: 0 2px 16px #26465344;
}
.hero p {
  color: #E8EEF9;
  font-size: 1.2rem;
  margin-bottom: 32px;
}

/* ==== Call-To-Action ==== */
.cta {
  background: linear-gradient(90deg, #264653 55%, var(--color-neon) 120%);
  color: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 5px 16px 0 rgba(244,162,97,.07);
}
.cta .content-wrapper {
  background: transparent;
  box-shadow: none;
  padding: 30px 20px;
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
}
.cta .cta-btn {
  margin-top: 12px;
}

/* ==== Features List (Index) ==== */
.features {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-surface);
  border-radius: 18px;
  box-shadow: 0 1.5px 8px 0 rgba(36,69,83,.09);
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-card);
  border-radius: 12px;
  padding: 16px 24px;
  color: #E8EEF9;
  min-width: 250px;
  font-size: 1.04rem;
  margin-bottom: 20px;
  box-shadow: 0 2px 9px 0 rgba(36,69,83,.07);
}
.features ul li img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 4px #61D7FEcc);
  background: rgba(97,215,254,0.07);
  border-radius: 4px;
}

/* ==== Service List ==== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: space-between;
}
.service-list > div {
  background: var(--color-card);
  border-radius: 14px;
  flex: 1 1 250px;
  min-width: 240px;
  padding: 28px 20px 28px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px 0 rgba(36,69,83,.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  position: relative;
  border-left: 4px solid var(--color-neon);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-list > div:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 40px 0 #61d7fe36;
  border-left-color: var(--color-accent);
}
.service-list h3, .service-list h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-neon);
  margin-bottom: 6px;
  font-weight: 700;
}
.service-list p { color: #B9D2F4; margin-bottom: 0; }
.service-list span {
  margin-top: auto;
  font-size: 1.16rem;
  color: var(--color-accent);
  font-weight: bold;
  letter-spacing: 0.04em;
}
.service-list .cta-btn {
  margin-top: 8px;
  align-self: flex-end;
}
.service-list img {
  height: 32px;
  width: 32px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 5px #F4A26199);
}

/* === Category Grid (Guide) === */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  justify-content: space-between;
}
.category-grid > div {
  background: var(--color-card);
  flex: 1 1 220px;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 #61D7FE14;
  padding: 22px 18px;
  margin-bottom: 20px;
  color: #B9D2F4;
  border-bottom: 3px solid var(--color-accent);
  transition: box-shadow 0.22s, border-bottom 0.22s;
}
.category-grid > div:hover {
  box-shadow: 0 6px 24px 0 #F4A26133, 0 1.5px 8px 0 #61d7fe18;
  border-bottom-color: var(--color-neon);
}

/* ==== Article List === */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
  margin-top: 18px;
}
.article-list li {
  background: var(--color-card-light);
  border-radius: 10px;
  padding: 20px 18px;
  color: #E8EEF9;
  box-shadow: 0 1.5px 7px 0 #61D7FE18;
  margin-bottom: 12px;
}
.article-list strong {
  color: var(--color-neon);
}

/* ==== Testimonial Cards ===== */
.testimonials, .testimonial-card {
  width: 100%;
}
.testimonials .content-wrapper, .testimonial-card {
  margin-bottom: 20px;
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 200px;
  background: #ffffff4b;
  color: #232833;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 #61d7fe18;
  border: 1.5px solid #F4A26122;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-card span {
  color: var(--color-secondary);
  font-size: 0.98em;
}
.testimonial-card > div:last-child {
  color: #F4A261;
  font-size: 1.15em;
}

/* ==== Cards and Card-Containers ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  background: var(--color-card);
  margin-bottom: 20px;
  padding: 30px 20px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 2px 16px 0 #61D7FE18;
  transition: transform 0.2s, box-shadow 0.21s;
  color: var(--color-text);
}
.card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px 0 #F4A2611c, 0 1.5px 8px 0 #61d7fe18;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ===== UL lists in .text-section ===== */
.text-section ul {
  margin-top: 14px;
  margin-bottom: 16px;
  padding-left: 22px;
}
.text-section ul li {
  position: relative;
  margin-bottom: 10px;
  color: #B9D2F4;
  padding-left: 20px;
}
.text-section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: linear-gradient(135deg, #61D7FE 60%, #A9B3BC 100%);
  border-radius: 2px;
}

/* ================
   Buttons / CTAs
   ================ */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 32px;
  background: linear-gradient(90deg, #61D7FE 0%, #F4A261 90%);
  color: #181C21;
  font-weight: 700;
  box-shadow: 0 2px 22px 0 #61d7fe22;
  border: none;
  transition: filter 0.18s, box-shadow 0.2s, background 0.18s;
  cursor: pointer;
  margin-top: 8px;
  min-width: 170px;
}
.cta-btn:hover, .cta-btn:focus {
  filter: brightness(1.18) drop-shadow(0 0 8px #F4A261cc);
  box-shadow: 0 8px 32px 0 #F4A26133;
  color: #264653;
  outline: none;
}

/* ======= Header & Navigation ======== */
header {
  width: 100%;
  background: var(--color-bg);
  border-bottom: 2.5px solid #61D7FE44;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 28px;
  filter: drop-shadow(0 0 10px #61d7fe1b);
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 22px 0 0;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #B9D2F4;
  position: relative;
  transition: color 0.22s;
  padding: 4px 8px;
  border-radius: 4px;
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: #F4A261;
  background: rgba(97,215,254,0.1);
}

.cta-btn {
  margin-left: 16px;
}

/* =========== Responsive Burger Menu ========== */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #61D7FE;
  font-size: 2.1rem;
  z-index: 100;
  margin-left: 12px;
  border-radius: 7px;
  border: 2px solid #61D7FE38;
  padding: 4px 12px;
  transition: background 0.16s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #F4A261;
  background: rgba(97,215,254,0.1);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: linear-gradient(105deg,#232833 50%,#264653 100%);
  box-shadow: 0 6px 80px 0 #061019f2;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.63,.01,.27,1.03);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #F4A261;
  background: none;
  border-radius: 6px;
  padding: 6px 14px;
  align-self: flex-end;
  margin: 20px 18px 0 0;
  transition: color 0.18s, background 0.16s;
  z-index: 1001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: rgba(244,162,97,0.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  width: 100%;
  margin-top: 50px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.6rem;
  color: #B9D2F4;
  letter-spacing: 0.02em;
  background: none;
  padding: 10px 32px;
  border-radius: 10px;
  transition: background 0.17s, color 0.19s;
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: rgba(97,215,254,0.10);
}

/* ==== Footer ==== */
footer {
  background: var(--color-footer-bg);
  color: #A9B3BC;
  font-size: 15px;
  padding-top: 34px;
  padding-bottom: 18px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 7px;
}
.footer-main nav a {
  color: #88a9c1;
  transition: color 0.18s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.footer-main nav a:hover {
  color: #F4A261;
}
.footer-main img {
  width: 46px !important; height: 46px !important;
  border-radius: 8px;
  margin-right: 17px;
}
.contact-snippet {
  font-size: 1rem;
  margin-bottom: 8px;
}
.contact-snippet strong {
  color: #F4A261;
  display: block;
  margin-bottom: 2px;
}
.copyright {
  text-align: center;
  font-size: 0.93rem;
  color: #A9B3BC;
  letter-spacing: 0.01em;
}

/* ====== Misc Styles ======= */
details {
  background: #232833;
  color: #B9D2F4;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 13px 18px;
  box-shadow: 0 1.5px 8px 0 #61D7FE11;
}
details[open] {
  border-left: 3px solid var(--color-neon);
  background: #29313D;
}
details summary {
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #52b2e6;
  outline: none;
  font-weight: 600;
}
details summary::-webkit-details-marker {
  color: var(--color-neon);
}

/* ===================
   Cookie Consent Banner
   =================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 20000;
  width: 100vw;
  background: linear-gradient(90deg, #252F3B 0%, #264653 100%);
  color: #F4A261;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -6px 42px 0 #61D7FE22;
  border-radius: 20px 20px 0 0;
  transition: transform 0.38s, opacity 0.2s;
  font-size: 1rem;
  gap: 20px;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #fff;
  flex: 3 1 0;
}
.cookie-banner .banner-actions {
  flex: 2 1 0;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
}
.cookie-btn {
  background: #61D7FE;
  color: #232833;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  padding: 9px 22px;
  font-size: 1rem;
  margin-right: 0;
  font-weight: 600;
  transition: background 0.22s, color 0.18s, box-shadow 0.15s;
  box-shadow: 0 2px 18px #61D7FE22;
}
.cookie-btn.secondary {
  background: #F4A261;
  color: #232833;
}
.cookie-btn.settings {
  background: #29313D;
  color: #F4A261;
  border: 1.2px solid #F4A26155;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: var(--color-primary);
  outline: none;
}

/* === Cookie Preferences Modal === */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,33,38,0.92);
  z-index: 21000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  animation: fadeIn 0.33s;
}

@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #252F3B;
  color: #fff;
  border-radius: 21px;
  max-width: 360px;
  min-width: 280px;
  padding: 32px 26px 28px 26px;
  box-shadow: 0 6px 48px #26465388, 0 1.5px 8px #61d7fe10;
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 21002;
  animation: slideInY 0.3s;
}
@keyframes slideInY {
  from { transform: translateY(45px); opacity: 0; } to { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  color: #F4A261;
  margin-bottom: 12px;
  font-size: 1.19rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  color: #B9D2F4;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.cookie-modal input[type=checkbox]{
  accent-color: #61D7FE;
  width: 19px; height: 19px;
}
.cookie-category .always-on {
  font-size: 0.98em;
  color: #F4A261;
  margin-left: 5px;
}
.cookie-modal .close-modal {
  align-self: flex-end;
  background: none;
  color: #F4A261;
  font-size: 1.6rem;
  border-radius: 6px;
  padding: 2px 10px;
  border: none;
  margin-bottom: -10px;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  background: #29313D;
}

/* === Text-Sections === */
.text-section {
  background: transparent;
  color: #B9D2F4;
  font-size: 1.1rem;
  margin: 10px 0 12px 0;
}

/* === Responsive Queries (Mobile First) === */
@media (max-width: 1100px) {
  .footer-main {
    flex-wrap: wrap;
    gap: 36px;
    justify-content: flex-start;
  }
  .service-list, .category-grid, .card-container, .content-grid {
    gap: 17px;
  }
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .service-list > div, .category-grid > div {
    min-width: 160px;
    flex: 1 1 160px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 9px; padding-right: 9px;
  }
  .content-wrapper {
    padding: 28px 5px;
    gap: 14px;
  }
  .hero .container{
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.28rem;
    margin-bottom: 12px;
  }
  .section, .features {
    padding: 22px 7px;
  }
  .service-list, .category-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonials .content-wrapper, .testimonial-card {
    gap: 11px;
    margin-bottom: 15px;
  }
  .card {
    padding: 18px 6px 19px 12px;
    margin-bottom: 12px;
  }
  .cta {
    border-radius: 12px;
    margin-bottom: 30px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  nav.main-nav, .cta-btn {
    display: none !important;
  }
  .footer-main {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 550px) {
  .content-wrapper, .section, .features {
    padding: 10px 2px 13px 2px;
  }
  .footer-main nav {
    gap: 4px;
  }
  .hero h1 { font-size: 1.18rem; }
}

/* == Hide mobile menu when not open == */
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; }

/* Prevent mobile nav overlap on desktop */
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  nav.main-nav, .cta-btn {
    display: flex !important;
  }
}

/* ========== Animations ============ */
.cta-btn, .service-list > div, .card, .category-grid > div, .testimonial-card {
  transition: box-shadow 0.2s, background-color 0.2s, border-color 0.22s, transform 0.2s;
}
.card, .category-grid > div, .testimonial-card {
  will-change: transform, box-shadow;
}

/* Micro-interaction for card hover shadow */
.card:hover, .category-grid > div:hover {
  box-shadow: 0 8px 32px 0 #F4A26124;
}

/* =============================
   Accessibility: Focus Styles
   ============================= */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #F4A261;
  outline-offset: 2px;
}

/* ========== Form Elements ============ */
input[type="text"],
input[type="email"]  {
  border-radius: 8px;
  background: #232833;
  border: 1.2px solid #A9B3BC;
  color: #F4A261;
  font-size: 1rem;
}
input[type="text"]:focus, input[type="email"]:focus {
  border: 1.8px solid #61D7FE;
  background: #20242C;
  color: #fff;
}

/* == Misc Spacing Adjustment for last elements == */
.card-container > *:last-child, .service-list > *:last-child, .category-grid > *:last-child, .features ul li:last-child {
  margin-bottom: 0;
}

/* Remove number spinner in inputs on mobile/webkit */
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }

/* =========== Scrollbar Style =========== */
body::-webkit-scrollbar {
  width: 10px;
  background: #232833;
}
body::-webkit-scrollbar-thumb {
  background: #61D7FE55;
  border-radius: 10px;
}

/* =====================
   NO GRID PROPERTIES
   ===================== */