/* ---------------------------------------------------
    TECH FUTURISTIC CSS SYSTEM for Sable Voyage
    Author: AI Senior CSS Developer
    Color Scheme: #28343B (primary), #A6885B (secondary), #F4F2F0 (accent) + NEON (#62FFF9, #5DED2D)
    Typeface: Montserrat (display), Open Sans (body)
    All layouts: FLEXBOX ONLY (no grid/columns)
----------------------------------------------------*/

/* ---------------------------------------------------
   CSS RESET / NORMALIZING
----------------------------------------------------*/
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,
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; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; background: transparent; }
img { border: none; display: block; max-width: 100%; height: auto; }
table { border-collapse: collapse; border-spacing: 0; }
button, input, select, textarea { font-family: inherit; font-size: 100%; margin: 0; }
:focus { outline: none; }

/* Custom selection style */
::selection {
  background: #28343B;
  color: #F4F2F0;
}

/* ---------------------------------------------------
   BASE / BRAND TYPOGRAPHY
----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
  --color-primary: #28343B;
  --color-secondary: #A6885B;
  --color-accent: #F4F2F0;
  --color-neon-cyan: #62FFF9;
  --color-neon-green: #5DED2D;
  --color-dark: #181A1B;
  --color-mid: #3A474D;
  --color-white: #fff;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-primary) 60%, #323C46 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-neon-cyan);
}
h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 16px; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; color: var(--color-secondary); }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; color: var(--color-accent); }

p, ul, ol, address {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-accent);
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: var(--color-neon-green);
}
a { color: var(--color-secondary); transition: color 0.18s; }
a:hover, a:focus { color: var(--color-neon-cyan); text-shadow: 0 0 4px var(--color-neon-cyan); }

/* ---------------------------------------------------
   CONTAINERS & FLEXBOX SYSTEM
----------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.text-section { max-width: 820px; margin: 0 auto; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-mid);
  border-radius: 16px;
  box-shadow: 0 6px 34px -10px #000C, 0 0 0 2px var(--color-neon-cyan);
  transition: box-shadow 0.25s, transform 0.18s;
  color: var(--color-accent);
}
.card:hover {
  box-shadow: 0 10px 36px -6px var(--color-neon-cyan), 0 0 18px 2px var(--color-neon-green);
  transform: translateY(-6px) scale(1.02);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-accent);
  color: var(--color-dark);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 #0003, 0 0 0 1px var(--color-neon-cyan);
  min-width: 260px;
  max-width: 540px;
  transition: box-shadow 0.22s, transform 0.14s;
}
.testimonial-card p {
  color: #181A1B;
}
.testimonial-card strong { color: var(--color-secondary); font-weight: 700; }
.testimonial-card span { color: var(--color-neon-green); font-size: 1.1em; letter-spacing: 0.06em; }
.testimonial-card:hover {
  box-shadow: 0 4px 32px 0 var(--color-neon-green), 0 0 4px 2px var(--color-neon-cyan);
  transform: translateY(-4px) scale(1.01);
}

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

/* Layouts for specific feature and blog sections */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
  margin-bottom: 20px;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #323C46;
  padding: 24px 18px;
  border-radius: 12px;
  box-shadow: 0 1px 8px #0004, 0 0 0 1.5px var(--color-secondary);
  transition: box-shadow 0.20s, border-color 0.18s, transform 0.18s;
  min-width: 220px;
}
.feature-grid > div:hover {
  border-color: var(--color-neon-cyan);
  box-shadow: 0 6px 24px var(--color-neon-cyan), 0 0 12px 2px var(--color-neon-green);
  transform: scale(1.03);
}
.feature-grid img {
  width: 44px; height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 10px var(--color-neon-cyan));
}

.benefit-points li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.benefit-points li:before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-neon-cyan);
  font-weight: bold;
}

/* Blog list styling */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.blog-list article {
  background: #323C46;
  padding: 24px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 8px #0006, 0 0 0 1px var(--color-neon-cyan);
  color: var(--color-accent);
  width: 100%;
  min-width: 260px;
  max-width: 400px;
  flex: 1 1 280px;
  transition: box-shadow 0.20s, transform 0.18s;
}
.blog-list article:hover {
  box-shadow: 0 8px 26px 0 var(--color-secondary), 0 0 12px var(--color-neon-cyan);
  transform: translateY(-4px) scale(1.02);
}

.categories-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98em;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.categories-filter a {
  color: var(--color-neon-cyan);
  font-weight: 600;
  opacity: 0.85;
  padding: 2px 6px;
  border-radius: 6px;
  transition: background 0.23s, color 0.18s;
}
.categories-filter a:hover {
  background: var(--color-neon-cyan);
  color: #232b30;
  text-shadow: 0 0 4px var(--color-neon-green);
}

/* Accordions for faq */
.faq-accordion h3 {
  margin-top: 18px;
  margin-bottom: 6px;
  color: var(--color-neon-cyan);
  cursor: pointer;
  position: relative;
  transition: color 0.19s;
}
.faq-accordion h3:hover { color: var(--color-neon-green); text-shadow: 0 0 6px var(--color-neon-cyan); }
.faq-accordion p { margin-bottom: 0; }

/* ---------------------------------------------------
    BUTTONS & CALL TO ACTIONS
----------------------------------------------------*/
.cta, button, .cta.primary, .cta.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 6px;
  margin-bottom: 6px;
  box-shadow: 0 2px 22px -4px var(--color-neon-cyan), 0 0 0 1.5px var(--color-secondary);
  transition: background 0.22s, color 0.19s, box-shadow 0.18s, transform 0.19s;
}
.cta.primary,
button.cta.primary {
  background: var(--color-neon-cyan);
  color: #232B30;
  border-color: var(--color-neon-cyan);
  box-shadow: 0 0 24px 0 var(--color-neon-cyan);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-neon-green);
  color: #232b30;
  box-shadow: 0 6px 36px 0 var(--color-neon-green), 0 0 0 2px var(--color-secondary);
  transform: scale(1.04);
}
.cta.secondary {
  background: transparent;
  color: var(--color-neon-cyan);
  border: 1.5px solid var(--color-neon-cyan);
  box-shadow: 0 0 12px 0 var(--color-neon-cyan);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-neon-green);
  color: #232b30;
  border-color: var(--color-neon-green);
  box-shadow: 0 0 20px 4px var(--color-neon-green);
  transform: scale(1.02);
}
button:active,
.cta:active {
  transform: scale(0.97);
}

/* Form elements */
input, textarea {
  border: 2px solid var(--color-neon-cyan);
  border-radius: 10px;
  padding: 10px 14px;
  background: #232b30;
  color: var(--color-accent);
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 12px;
  box-shadow: 0 0 10px #0003 inset;
  transition: border-color 0.2s;
}
input:focus, textarea:focus {
  border-color: var(--color-neon-green);
  box-shadow: 0 0 8px var(--color-neon-green), 0 0 0 2px var(--color-secondary) inset;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---------------------------------------------------
    HEADER & NAVIGATION
----------------------------------------------------*/
header {
  width: 100%;
  background: #1D2227;
  box-shadow: 0 2px 38px -12px var(--color-neon-cyan);
  z-index: 70;
  padding: 0 0 6px 0;
}
header .container {
  min-height: 74px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-neon-cyan);
  font-weight: 600;
  position: relative;
  padding: 3px 4px;
  transition: color 0.17s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-neon-green);
  text-shadow: 0 0 4px var(--color-neon-green);
}

header img {
  height: 44px;
  max-width: 150px;
  margin-right: 20px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-neon-cyan);
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 15px;
  z-index: 200;
  transition: color 0.17s, transform 0.15s;
  padding: 3px 12px 3px 6px;
}
.mobile-menu-toggle:hover { color: var(--color-neon-green); transform: scale(1.13); }

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,40,44,0.96);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform 0.37s cubic-bezier(0.75,0,0.3,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: var(--color-neon-cyan);
  background: none;
  border: none;
  margin: 22px 18px 0 0;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.19s, transform 0.12s;
}
.mobile-menu-close:hover { color: var(--color-neon-green); transform: rotate(20deg); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: var(--color-neon-cyan);
  padding: 10px 0;
  border-bottom: 1px solid #293942;
  width: 80vw;
  text-align: center;
  transition: color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-neon-green);
  background: #20292c;
}

/* HIDE DESKTOP/NAV & SHOW MOBILE MENU ON MOBILE */
@media (max-width: 1020px) {
  header .container > nav,
  header .container > .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

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

/* ---------------------------------------------------
   MAIN/SECTION SPACING & FLEX ALIGNMENTS
----------------------------------------------------*/
section {
  width: 100%;
  background: transparent;
  margin-bottom: 60px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

address {
  font-style: normal;
  color: var(--color-accent);
  margin-bottom: 18px;
}
address p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
address img {
  width: 22px; height: 22px;
  filter: drop-shadow(0 0 3px var(--color-neon-cyan));
}

/* MAP EMBED stub styling */
.map-embed {
  width: 100%;
  min-height: 160px;
  background: #232b30;
  border-radius: 12px;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 0 0 1.5px var(--color-neon-cyan);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

/* ---------------------------------------------------
   FOOTER
----------------------------------------------------*/
footer {
  width: 100%;
  background: #20252B;
  padding: 32px 0 18px 0;
  box-shadow: 0 -8px 32px -14px var(--color-neon-cyan);
  color: var(--color-accent);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-menu {
  margin-bottom: 10px;
}
.footer-menu a {
  color: var(--color-neon-cyan);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-right: 8px;
  transition: color 0.14s;
}
.footer-menu a:hover {
  color: var(--color-neon-green);
}
.brand-address {
  display: flex; flex-direction: column;
  gap: 8px;
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 0.98rem;
  align-items: flex-start;
}
.brand-address img {
  width: 36px; height: 36px;
  filter: drop-shadow(0 0 6px var(--color-neon-green));
}
.contact-short {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}
.contact-short a img {
  width: 32px; height: 32px;
  transition: filter 0.16s, transform 0.16s;
}
.contact-short a:hover img {
  filter: drop-shadow(0 0 4px var(--color-neon-cyan));
  transform: scale(1.07);
}
.footer-social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
}
.footer-social-icons img {
  width: 28px;
  filter: drop-shadow(0 0 10px var(--color-neon-cyan));
  opacity: 0.88;
  transition: filter 0.14s, opacity 0.13s;
}
.footer-social-icons img:hover {
  filter: drop-shadow(0 0 12px var(--color-neon-green));
  opacity: 1;
}

footer a {
  color: var(--color-secondary);
  font-size: 0.97rem;
  padding: 0 2px;
  transition: color 0.13s;
}
footer a:hover { color: var(--color-neon-cyan); }

/* ---------------------------------------------------
   COOKIE BANNER & MODAL
----------------------------------------------------*/
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 12000;
  background: #262F36;
  border-top: 3px solid var(--color-neon-cyan);
  color: var(--color-accent);
  box-shadow: 0 -2px 24px -6px var(--color-neon-cyan);
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 22px 5vw 19px 5vw;
  gap: 28px;
  min-height: 64px;
  animation: fadeInBanner 0.7s cubic-bezier(.6,.09,.21,1);
}
@keyframes fadeInBanner { from { opacity: 0; transform: translateY(80px);} to { opacity: 1; transform: translateY(0); } }
#cookie-banner .cookie-text { max-width: 530px; }
#cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
#cookie-banner button {
  min-width: 120px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: bold;
  padding: 10px 22px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 6px;
  transition: background 0.13s, color 0.12s, box-shadow 0.15s, transform 0.10s;
}
#cookie-banner .cookie-accept {
  background: var(--color-neon-cyan);
  color: #232b30;
  box-shadow: 0 0 10px var(--color-neon-cyan);
}
#cookie-banner .cookie-accept:hover {
  background: var(--color-neon-green);
  color: #232b30;
  box-shadow: 0 0 12px var(--color-neon-green);
  transform: scale(1.04);
}
#cookie-banner .cookie-reject {
  background: transparent;
  border: 1.5px solid var(--color-neon-green);
  color: var(--color-neon-green);
}
#cookie-banner .cookie-reject:hover {
  background: var(--color-neon-green);
  color: #232b30;
  box-shadow: 0 0 8px var(--color-neon-green);
  transform: scale(1.03);
}
#cookie-banner .cookie-settings {
  background: transparent;
  border: 1.5px solid var(--color-secondary);
  color: var(--color-secondary);
}
#cookie-banner .cookie-settings:hover {
  background: var(--color-secondary);
  color: #232b30;
  box-shadow: 0 0 10px var(--color-secondary);
  transform: scale(1.03);
}

/* Cookie Modal */
#cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 13000;
  background: rgba(33,39,41,0.96);
  align-items: center;
  justify-content: center;
  animation: fadeInBanner 0.6s cubic-bezier(.4,.1,.21,1);
}
#cookie-modal.open { display: flex; }
#cookie-modal .modal-content {
  background: #232b30;
  border-radius: 16px;
  box-shadow: 0 8px 40px var(--color-neon-cyan), 0 0 0 3px var(--color-secondary);
  max-width: 370px;
  width: 96vw;
  padding: 38px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--color-accent);
  position: relative;
  animation: cookieModalScaleIn 0.35s cubic-bezier(.33,1.3,.28,1.53);
}
@keyframes cookieModalScaleIn { from { opacity: 0; transform: scale(0.85);} to { opacity: 1; transform: scale(1);} }
#cookie-modal .close-modal {
  position: absolute;
  top: 15px; right: 18px;
  background: none;
  border: none;
  color: var(--color-neon-cyan);
  font-size: 1.9rem;
  cursor: pointer;
  z-index: 13001;
}
#cookie-modal .close-modal:hover {
  color: var(--color-neon-green);
}
#cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  margin-bottom: 10px;
  user-select: none;
}
#cookie-modal input[type="checkbox"] {
  width: 20px; height: 20px;
  border-radius: 6px;
  accent-color: var(--color-neon-cyan);
  border: 2px solid var(--color-neon-cyan);
}
#cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#cookie-modal .cookie-actions-modal {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 12px;
}
#cookie-modal .cookie-accept, #cookie-modal .cookie-reject, #cookie-modal .cookie-save {
  border-radius: 999px;
  padding: 10px 20px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.12s, color 0.11s;
}
#cookie-modal .cookie-accept { background: var(--color-neon-cyan); color: #232b30; }
#cookie-modal .cookie-accept:hover { background: var(--color-neon-green); }
#cookie-modal .cookie-reject { background: transparent; color: var(--color-neon-green); border: 1.2px solid var(--color-neon-green); }
#cookie-modal .cookie-reject:hover { background: var(--color-neon-green); color: #232b30; }
#cookie-modal .cookie-save { background: var(--color-secondary); color: #232b30; }
#cookie-modal .cookie-save:hover { background: var(--color-neon-cyan); color: #1D2227; }
.category-always { opacity: 0.7; font-style: italic; }

/* ---------------------------------------------------
    MEDIA QUERIES – RESPONSIVENESS
----------------------------------------------------*/
@media (max-width: 1020px) {
  .container, footer .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  .footer-menu, .brand-address, .contact-short, .footer-social-icons {
    margin-bottom: 10px; margin-top: 0px;
    flex-basis: 100%;
  }
  .footer-menu {
    order: 1;
    text-align: left;
  }
}
@media (max-width: 900px) {
  .feature-grid, .blog-list, .content-grid {
    flex-direction: column;
    gap: 18px !important;
  }
  .footer .container {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .section, section {
    margin-bottom: 36px;
    padding: 23px 0;
  }
  .testimonial-card, .card, .feature-grid > div, .blog-list article {
    min-width: 0;
    max-width: 96vw;
  }
  .footer .container { flex-direction: column; gap: 18px; align-items: flex-start; }
  .content-wrapper {
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: stretch;
    gap: 18px;
  }
  .categories-filter {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  #cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 16px 8vw 16px 8vw;
    min-height: 52px;
  }
  .benefit-points li {
    padding-left: 11px;
    font-size: 0.98rem;
  }
}

@media (max-width: 500px) {
  body { font-size: 15px; }
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.08rem; }
  header .container, .container {
    padding: 0 4px;
  }
  .section, section {
    padding: 17px 0;
  }
  #cookie-banner {
    padding: 10px 2vw 10px 2vw;
  }
}

/* ---------------------------------------------------
   MICRO-INTERACTIONS & VISUAL ACCENTS
----------------------------------------------------*/
.feature-grid > div, .card, .testimonial-card, .blog-list article {
  border: 1.5px solid transparent;
  position: relative;
}
.feature-grid > div::after, .card::after, .testimonial-card::after, .blog-list article::after {
  content: '';
  position: absolute;
  left: 7px; top: 7px; right: 7px; bottom: 7px;
  border-radius: 8px;
  pointer-events: none;
  box-shadow: 0 0 28px 2px var(--color-neon-cyan) inset, 0 0 20px 2px var(--color-neon-green) inset;
  opacity: 0.06;
  z-index: 1;
}

.cta.primary, .cta.secondary, button {
  will-change: background, color, box-shadow, transform;
}

/* ---------------------------------------------------
   UTILITY CLASSES — margin, text, and helpers
----------------------------------------------------*/
.mt-0   { margin-top: 0 !important; }
.mt-8   { margin-top: 8px !important; }
.mb-8   { margin-bottom: 8px !important; }
.mb-16  { margin-bottom: 16px !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ---------------------------------------------------
   END — Tech Futuristic Sable Voyage CSS
----------------------------------------------------*/
