/* ===== 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;
}
article, aside, details, figcaption, figure, footer,
header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #222B36;
  color: #F4F4F4;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
a {
  color: #F9AA33;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff2c7;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
strong { font-weight: bold; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #F9AA33;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }

/* ====== BRAND COLORS ====== */
:root {
  --primary: #2C4251;
  --secondary: #F9AA33;
  --accent: #F4F4F4;
  --dark-bg: #222B36;
  --body-bg: #222B36;
  --text: #F4F4F4;
  --text-dark: #1B232A;
  --card-bg: #293544;
  --input-bg: #283544;
  --shadow: 0 4px 28px 0 rgba(32,54,95,0.2);
  --neon: #49FFE1;
}

/* ===== GLOBAL CONTAINERS & LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 20px;
  box-shadow: none;
}

@media (min-width: 720px) {
  .section {
    margin-bottom: 80px;
    padding: 60px 40px;
  }
}

/* ======= HEADER & NAVIGATION ====== */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 3px 30px 0 rgba(32,54,95,0.11);
  position: relative;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
header nav a {
  color: var(--accent);
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 6px;
  position: relative;
  transition: color 0.2s;
}
header nav a:hover, header nav a.active {
  color: var(--secondary);
}
.primary-cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 32px;
  padding: 12px 32px;
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(249,170,51,0.09);
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  margin-left: 14px;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, box-shadow 0.25s;
  display: inline-block;
  outline: none;
  text-shadow: 0 0 6px var(--neon), 0 0 3px transparent;
}
.primary-cta:hover, .primary-cta:focus {
  background: var(--neon);
  color: var(--primary);
  box-shadow: 0 0 10px var(--neon), 0 2px 20px rgba(73,255,225,0.09);
  outline: none;
}
.secondary-cta {
  display: inline-block;
  border: 2px solid var(--secondary);
  background: transparent;
  color: var(--secondary);
  padding: 10px 28px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 12px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-color 0.18s;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--neon);
  box-shadow: 0 0 10px var(--neon);
}
header img {
  height: 45px;
  max-width: 160px;
  display: block;
}

/* ====== MOBILE BURGER MENU ====== */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 6px;
  font-size: 2.4rem;
  cursor: pointer;
  margin-left: 16px;
  padding: 6px 16px;
  z-index: 201;
  box-shadow: 0 2px 8px rgba(249,170,51,0.1);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--neon);
  color: var(--primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #10131A;
  box-shadow: 0 0 44px rgba(32,54,95,0.33);
  z-index: 200;
  transform: translateX(-110vw);
  transition: transform 0.32s cubic-bezier(.72,.09,.36,1.21);
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: var(--secondary);
  border: none;
  font-size: 2.2rem;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--neon);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0 auto;
  padding-top: 40px;
  align-items: center;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.35rem;
  padding: 12px 0;
  letter-spacing: 0.03em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.2s, text-shadow 0.19s;
  text-shadow: 0 1px 16px #1c1f25, 0 0 2px rgba(73,255,225,0.07);
  border-radius: 4px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon);
  text-shadow: 0 0 16px var(--neon);
  outline: none;
}

@media (max-width: 1080px) {
  header .container nav {
    display: none;
  }
  header .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1081px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(98deg, #293F5B 0%, #232A37 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 60px rgba(44,66,81,0.12);
  margin-bottom: 60px;
  padding: 50px 0 50px 0;
}
.hero .container { flex-direction: column; }
.hero h1 {
  color: var(--accent);
  font-size: 2.7rem;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 0 16px var(--neon),0 3px 16px rgba(44, 66, 81,0.10);
}
.hero p {
  color: var(--accent);
  font-size: 1.25rem;
  margin: 16px 0 28px 0;
  font-family: 'Roboto',Arial,sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-shadow: 0 1px 12px #2c4251, 0 2px 8px rgba(73,255,225,0.04);
}
.hero .primary-cta {
  font-size: 1.15rem;
  font-weight: 700;
}

/* ========== FEATURE GRIDS (used in many pages) ========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.feature-grid > div {
  background: var(--card-bg);
  border-radius: 19px;
  box-shadow: 0 4px 26px 0 rgba(44,66,81,0.09);
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 310px;
  padding: 30px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid rgba(73,255,225,0.07);
  transition: box-shadow 0.18s, border 0.19s, transform 0.22s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 6px 36px 0 rgba(73,255,225,0.11), 0 0 24px var(--neon);
  border: 1.5px solid var(--neon);
  transform: translateY(-2px) scale(1.018);
  z-index: 2;
}
.feature-grid img {
  width: 54px;
  height: 54px;
  margin-bottom: 2px;
}
.feature-grid h3 {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
}
.feature-grid p {
  color: var(--accent);
  font-size: 15px;
  line-height: 1.35;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============== FLEX UTILITY CLASSES ============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.19s, border-color 0.18s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}
.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;
    align-items: flex-start;
  }
}

/* ========== TESTIMONIAL CARD ========== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F4F4F4;
  color: #1B232A;
  border-radius: 20px;
  padding: 20px 32px;
  box-shadow: 0 4px 19px 0 rgba(32,54,95,0.13);
  margin-bottom: 24px;
  position: relative;
  font-size: 1.12rem;
  border-left: 5px solid var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  transition: box-shadow 0.19s, border-color 0.18s;
}
.testimonial-card strong {
  margin-left: 24px;
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card p {
  color: #232a36;
  font-size: 1.14rem;
  flex: 1 1 auto;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 42px 0 rgba(49, 255, 173, 0.11), 0 0 20px var(--neon);
  border-color: var(--neon);
  z-index: 3;
}

/* ========== SECTION PREVIEWS & LISTS ========== */
.about-preview, .services-preview, .references-preview, .contact-cta, .benefits, .info, .confirmation {
  background: var(--card-bg);
  border-radius: 20px;
  margin-bottom: 40px;
  padding: 38px 20px 34px 20px;
  box-shadow: 0 6px 38px 0 rgba(44,66,81,0.08);
}
@media (min-width: 720px) {
  .about-preview, .services-preview, .references-preview, .contact-cta, .benefits, .info, .confirmation {
    margin-bottom: 48px;
    padding: 42px 48px 42px 48px;
  }
}

.services-preview ul, .services ul, .benefits ul, .stats ul, .project-list ul, .faq ul, .process ul, .process ol, .info ul, .contact .text-section ul {
  margin-left: 0;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.services-preview li, .services li, .benefits li, .stats li, .project-list li, .faq li, .process li, .info li, .contact .text-section li {
  color: var(--accent);
  font-size: 1.03rem;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.3;
}
.services-preview img,.services img,.info img,.contact .text-section img,.benefits li img {
  width: 31px;
  height: 31px;
  margin-right: 2px;
  flex-shrink: 0;
}

/* ========== GENERAL BUTTONS & INTERACTION ========== */
button, .primary-cta, .secondary-cta {
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, border 0.16s;
}
button:focus, .primary-cta:focus, .secondary-cta:focus {
  outline: 2px solid var(--neon);
  outline-offset: 1.5px;
}

/* ========== FORM & INPUT ========== */
input, textarea, select {
  background: var(--input-bg);
  color: var(--accent);
  padding: 10px 16px;
  border-radius: 7px;
  border: 1.2px solid #394E66;
  box-shadow: 0 1px 6px rgba(44,66,81,0.06);
  margin-bottom: 12px;
  font-size: 1rem;
  transition: border 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--neon);
  box-shadow: 0 0 4px var(--neon), 0 1px 12px rgba(73,255,225,0.04);
  background: #232b34;
}
label { font-weight: 500; font-size: 1.03rem; }

/* ========== FOOTER ========== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 40px 0 30px 0;
  border-top: 3px solid var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  position: relative;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.015em;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.16s, text-shadow 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--neon);
  text-shadow: 0 0 9px var(--neon);
}
.footer-contact {
  min-width: 215px;
  color: var(--accent);
  padding-top: 4px;
  font-size: 0.98rem;
}
.footer-contact a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.17s;
}
.footer-contact a:hover {
  color: var(--neon);
}
.footer-logo img {
  width: 64px;
  height: 64px;
  margin-top: 8px;
}

@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 22px; align-items: flex-start; }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #191E24;
  color: var(--accent);
  padding: 26px 20px 21px 20px;
  box-shadow: 0 -2px 22px 0 rgba(73,255,225,0.09);
  z-index: 5040;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-top: 3.5px solid var(--neon);
  animation: cookieBannerAppear 0.61s cubic-bezier(.75,-0.01,.42,1.09);
}
@keyframes cookieBannerAppear {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  font-size: 1.05rem;
  color: var(--accent);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 18px;
  margin-left: 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s;
  cursor: pointer;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--neon);
  color: var(--primary);
  box-shadow: 0 0 9px var(--neon);
}
.cookie-banner .cookie-settings-btn {
  background: none;
  color: var(--neon);
  border: 1.5px solid var(--neon);
  padding: 7px 16px;
  font-weight: 500;
  margin-left: 6px;
}
.cookie-banner .cookie-settings-btn:hover{
  background: var(--neon);
  color: var(--primary);
}

@media (max-width: 690px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 19px 10px 18px 10px;
    font-size: 1rem;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
  }
}

/* ========= COOKIE MODAL & ANIMATION ========= */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,28,36, 0.88);
  z-index: 5055;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.31s 0s;
}
.cookie-modal .cookie-modal-content {
  background: var(--card-bg);
  color: var(--accent);
  border-radius: 20px;
  box-shadow: 0 8px 45px 0 rgba(73,255,225,0.09), 0 3px 15px #10131a;
  max-width: 400px;
  padding: 38px 28px 31px 28px;
  min-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalAppear 0.41s cubic-bezier(.75,-0.01,.42,1.09);
}
@keyframes modalAppear {
  from { opacity: 0; transform: scale(0.95) translateY(32px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal .cookie-modal-content h2 {
  color: var(--secondary);
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.cookie-modal .modal-close-btn {
  align-self: flex-end;
  background: none;
  color: var(--neon);
  border: none;
  font-size: 2rem;
  margin-bottom: 12px;
  cursor: pointer;
  margin-top: -10px;
}
.cookie-modal .modal-close-btn:hover { color: var(--secondary); }
.cookie-modal .cookie-cat-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 6px 0 15px 0;
}
.cookie-modal .cookie-cat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-modal label {
  color: var(--accent);
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 36px;
  height: 20px;
  display: inline-block;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #394e66;
  border-radius: 19px;
  transition: background 0.19s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: var(--neon);
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .cat-desc {
  margin-left: 0;
  font-size: 0.95rem;
  color: #b2bbcc;
  font-style: italic;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .cookie-actions button {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 20px;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
  cursor: pointer;
}
.cookie-modal .cookie-actions button:last-child {
  background: none;
  border: 1.3px solid var(--secondary);
  color: var(--secondary);
  padding: 8px 18px;
}
.cookie-modal .cookie-actions button:hover {
  background: var(--neon);
  color: var(--primary);
  box-shadow: 0 0 8px var(--neon);
}
.cookie-modal .cookie-actions button:last-child:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--neon);
}

/* ======= LEGAL/INFO PAGES ======= */
.legal {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 4px 29px rgba(44,66,81,0.08);
  margin-bottom: 56px;
  padding: 32px 24px;
}
.legal h1, .legal h2 {
  color: var(--secondary);
  margin-bottom: 18px;
}
.legal ul {
  margin-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--accent);
  font-size: 1.07rem;
}
.legal li {
  line-height: 1.5;
  margin-bottom: 0;
  color: var(--accent);
}
.legal a { color: var(--neon); }
.legal a:hover { color: var(--secondary); text-decoration: underline; }

/* ========== CTA SECTION ========== */
.cta, .contact-cta {
  border: 2.5px solid var(--secondary);
  background: linear-gradient(92deg, #24334a 0%, #1F232B 100%);
  border-radius: 20px;
  box-shadow: 0 5px 28px 0 rgba(49,255,173,0.07);
}
.cta h2, .contact-cta h2 {
  color: var(--neon);
  text-shadow: 0 0 12px var(--neon);
}
.cta p, .contact-cta p {
  color: var(--accent);
  margin-bottom: 16px;
}

/* ========== CONFIRMATION PAGE ========== */
.confirmation h1 {
  color: var(--neon);
  font-size: 2.05rem;
}
.confirmation p {
  color: var(--accent);
  margin-bottom: 12px;
}

/* ================== RESPONSIVE DESIGN ================== */
@media (max-width: 991px) {
  .container { max-width: 95vw; }
  .feature-grid { gap: 16px; }
  .card-container, .content-grid { gap: 16px; }
  .feature-grid > div { min-width: 180px; max-width: 100%; }
  header img { height: 36px; max-width: 120px; }
}
@media (max-width: 720px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .content-wrapper { gap: 10px; }
  .hero { padding: 30px 0 30px 0; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.28rem; }
  .feature-grid > div { padding: 19px 12px 16px 12px; }
  .testimonial-card { flex-direction: column; gap: 7px; padding: 15px 12px; }
  .cta, .about-preview, .services-preview, .references-preview, .contact-cta, .benefits, .info, .confirmation, .legal { padding: 15px 10px; }
  .footer-nav { gap: 12px; font-size: 0.92rem; flex-wrap: wrap; }
  .footer-contact { font-size: 0.92rem; }
  .footer-logo img { width: 45px; height: 45px; }
}
@media (max-width: 480px) {
  .feature-grid { gap: 8px; }
  .feature-grid > div { min-width: 95vw; max-width: 100vw; }
  html { font-size: 92%; }
}

/* ========== FUTURISTIC NEON DECOR ELEMENTS (OPTIONAL) ========== */
.card::before, .feature-grid > div::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border-radius: 17px;
  border: 1.5px dashed rgba(73,255,225,0.045);
  pointer-events: none;
  z-index: 1;
}

/* ========== MICRO-INTERACTIONS & HOVER EFFECTS ========== */
.feature-grid > div,
.card,
.cta,
.testimonial-card {
  transition: box-shadow 0.19s, transform 0.21s, border 0.17s;
}
.feature-grid > div:hover,
.card:hover,
.cta:hover,
.testimonial-card:hover {
  box-shadow: 0 9px 38px 0 rgba(49,255,173,0.10),0 0 15px var(--neon);
  transform: translateY(-2px) scale(1.013);
  border-color: var(--neon);
}

/* ========== MISCELLANEOUS ========== */
::-webkit-scrollbar {
  width: 7px;
  background: #10131a;
}
::-webkit-scrollbar-thumb {
  background: #18202b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon);
}

/* ========== END OF STYLE.CSS ========== */
