/* ==== CSS RESET & BASE ==== */
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 {
  box-sizing: border-box;
  font-family: 'Open Sans', Arial, sans-serif;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #232c3d;
  color: #f6fafd;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #FCD116;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #ffe995;
  text-decoration: underline;
}
ul, ol {
  margin: 18px 0 18px 20px;
}
li {
  padding-left: 5px;
  margin-bottom: 5px;
}

/* ==== BRAND COLORS ==== */
:root {
  --color-primary: #2D4052;
  --color-secondary: #FCD116;
  --color-accent: #ffffff;
  --color-bg: #232c3d;
  --color-panel: #293246;
  --color-card: #273043;
  --color-link: #FCD116;
  --color-link-hover: #ffe995;
  --color-neon: #26ffe6;
  --color-neon-glow: #0fffd9a0;
  --color-shadow: rgba(34,76,130,0.21);
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.14;
  margin-bottom: 18px;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4, h5, h6 { font-size: 1rem; }
p {
  margin-bottom: 16px;
}
strong, b {
  color: var(--color-secondary);
  font-weight: 700;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  width: 100%;
  background: var(--color-primary);
  padding: 0;
  box-shadow: 0 1px 16px 0 var(--color-shadow);
  z-index: 88;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 0 20px;
}
header a img {
  height: 46px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.015em;
  padding: 8px 0;
  position: relative;
}
nav a:after {
  content: '';
  display: block;
  margin: 4px auto 0 auto;
  width: 0%;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 1px;
  transition: width 0.22s cubic-bezier(.4,0,.2,1);
}
nav a:hover:after, nav a:focus:after {
  width: 60%;
}

.cta-primary {
  background: var(--color-neon);
  color: #19212b;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 28px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 var(--color-neon-glow);
  cursor: pointer;
  text-shadow: 0 3px 8px var(--color-bg);
  margin-left: 32px;
  letter-spacing: 0.05em;
  transition: background 0.17s, color 0.21s, box-shadow 0.2s;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ffe995;
  color: #2d4052;
  box-shadow: 0 3px 20px 0 var(--color-neon-glow);
}

.cta-secondary {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 28px;
  font-size: 1rem;
  box-shadow: 0 2px 9px 0 var(--color-shadow);
  margin-top: 14px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: color 0.16s, background 0.13s, border 0.14s, box-shadow 0.16s;
  outline: none;
  text-shadow: none;
  display: inline-block;
  text-align: center;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-secondary);
  color: #232c3d;
  box-shadow: 0 2px 13px 0 var(--color-secondary);
}

/* ==== HERO & FEATURES - TECH FUTURISTIC ==== */
.hero {
  background: linear-gradient(135deg, #232c3d 60%, #2D4052 100%);
  min-height: 300px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 30px 0 var(--color-shadow);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px 20px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
  max-width: 640px;
  background: rgba(36,56,90,0.20);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 2px 40px 4px var(--color-shadow);
  border: 1px solid #2D4052;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--color-neon);
  text-shadow: 0 2px 24px var(--color-neon-glow);
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 22px;
}
.hero .cta-primary {
  font-size: 1.16rem;
}

.features {
  background: var(--color-panel);
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 1px 21px 0 var(--color-shadow);
}
.features h2 {
  color: var(--color-secondary);
  font-size: 2rem;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 16px;
}
.feature-grid > div {
  background: var(--color-card);
  border-radius: 14px;
  padding: 28px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: 0 2px 13px 0 var(--color-shadow);
  transition: box-shadow 0.19s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid img {
  width: 36px;
  filter: drop-shadow(0 0 10px var(--color-neon-glow));
  margin-bottom: 6px;
}
.feature-grid h3 {
  color: var(--color-neon);
  margin-bottom: 5px;
  font-size: 1.21rem;
}
.feature-grid p {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 0;
}

/* ==== SERVICES BOXES ==== */
.services {
  background: var(--color-panel);
  border-radius: 17px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 1px 21px 0 var(--color-shadow);
}
.services h2 {
  color: var(--color-secondary);
  margin-bottom: 15px;
}
.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.service-cards > div, .service-list > div {
  background: var(--color-card);
  border-radius: 14px;
  box-shadow: 0 3px 12px 0 var(--color-shadow);
  padding: 28px 24px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, border 0.17s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-cards > div:hover, .service-list > div:hover {
  box-shadow: 0 6px 22px 2px var(--color-neon-glow);
  border: 1.5px solid var(--color-neon);
  z-index: 2;
}
.service-cards strong, .service-list b {
  color: var(--color-neon);
  font-weight: 700;
}

/* ==== CATEGORY/FEATURE/BENEFITS GRIDS ==== */
.category-grid, .benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}
.category-grid > div, .benefits-grid > div {
  background: var(--color-card);
  color: var(--color-accent);
  border-radius: 13px;
  padding: 18px 12px;
  min-width: 130px;
  flex: 1 1 130px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  transition: box-shadow 0.16s, background 0.22s;
  cursor: pointer;
}
.category-grid > div:hover, .benefits-grid > div:hover {
  background: #232c3d;
  box-shadow: 0 3px 18px 2px var(--color-neon-glow);
}
.category-grid h3, .benefits-grid h3 {
  color: var(--color-secondary);
  font-size: 1.1rem;
}
.benefits-grid img {
  width: 32px;
  filter: drop-shadow(0 0 6px var(--color-neon-glow));
  margin-bottom: 7px;
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 10px;
}
.filter-controls select {
  padding: 7px 14px;
  border-radius: 9px;
  border: none;
  background: var(--color-bg);
  color: var(--color-accent);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: box-shadow 0.11s;
  box-shadow: 0 1px 5px 0 var(--color-shadow);
}

/* ==== LIFE HACK CARDS ==== */
.life-hacks-cards, .product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 16px;
}
.life-hacks-cards > div, .product-cards > div {
  background: var(--color-card);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 26px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, border 0.12s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.life-hacks-cards > div:hover, .product-cards > div:hover {
  box-shadow: 0 5px 19px 2px var(--color-neon-glow);
  border: 1.5px solid var(--color-neon);
  z-index: 2;
}

.product-cards a.cta-secondary {
  margin-top: 12px;
}

/* ==== TESTIMONIALS ==== */
.testimonials, .testimonial-list {
  margin-top: 28px;
}
.testimonials h2, .testimonials h3 {
  color: var(--color-secondary);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fffbe7;
  color: #232c3d;
  border-radius: 13px;
  padding: 20px;
  min-width: 260px;
  max-width: 340px;
  box-shadow: 0 2px 14px 0 var(--color-shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.10s, transform 0.17s;
  border: 2px solid #fcf5d2;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px 2px #fcd11642;
  transform: translateY(-2px) scale(1.02);
}
.testimonial-stars {
  color: #FFC700;
  font-size: 1.35rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
  font-weight: bold;
}
.testimonial-name {
  color: #2D4052;
  font-weight: 500;
  margin-top: 5px;
}

/* ==== FAQ ==== */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
}
.faq-list > div {
  background: var(--color-card);
  color: var(--color-accent);
  border-radius: 13px;
  padding: 18px 20px;
  box-shadow: 0 2px 9px 0 var(--color-shadow);
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.12s;
}
.faq-list > div:hover {
  box-shadow: 0 4px 12px 2px var(--color-neon-glow);
}

/* ==== CONTACT ==== */
.contact-snippet {
  background: var(--color-card);
  color: var(--color-accent);
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  margin-top: 22px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-snippet b {
  color: var(--color-secondary);
}

/* ==== FOOTER ==== */
footer {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-accent);
  border-top: 3px solid var(--color-secondary);
  margin-top: 60px;
  letter-spacing: 0.03em;
}
footer .content-wrapper {
  flex-direction: column;
  gap: 22px;
  padding: 28px 8px 10px 8px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.footer-top img {
  height: 34px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 12px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.98rem;
}
.footer-links a {
  color: var(--color-accent);
  transition: color 0.17s;
  font-weight: 500;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--color-neon);
}
.footer-bottom {
  border-top: 1px solid #384359;
  padding-top: 8px;
  font-size: 0.94rem;
  color: #94a4c1;
}

/* ==== TABLES ==== */
table { border-collapse: collapse; width: 100%; margin-bottom: 24px; }
th, td { border: 1px solid #394a5c; padding: 9px 15px; text-align: left; font-size: 0.98rem; }
th { background: var(--color-card); }

/* ==== FORMS, INPUTS ==== */
input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 8px;
  border: none;
  padding: 9px 12px;
  background: #232c3d;
  color: var(--color-accent);
  font-size: 1rem;
  margin-top: 12px;
  margin-bottom: 12px;
  box-shadow: 0 1px 5px 0 var(--color-shadow);
  outline: none;
  transition: box-shadow 0.16s, border 0.14s;
}
input:focus, select:focus, textarea:focus {
  box-shadow: 0 2px 15px 0 var(--color-neon-glow);
  border: 1.7px solid var(--color-neon);
}

/* ==== SPACING & ALIGNMENT PATTERNS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--color-card);
  border-radius: 12px;
  box-shadow: 0 2px 11px 0 var(--color-shadow);
  padding: 22px 18px;
  transition: box-shadow 0.13s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

/* ==== RESPONSIVENESS ==== */
@media (max-width: 1024px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 16px;
  }
  nav, .footer-links {
    gap: 16px;
  }
  .feature-grid, .category-grid, .benefits-grid,
  .life-hacks-cards, .service-cards, .product-cards,
  .testimonial-list, .faq-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding: 0 8px;
    min-height: 52px;
  }
  nav {
    display: none !important;
  }
  .cta-primary {
    display: none !important;
  }
  .footer-top {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .hero .content-wrapper {
    padding: 22px 11px;
  }
  .feature-grid, .category-grid, .benefits-grid,
  .life-hacks-cards, .service-cards, .product-cards,
  .testimonial-list, .faq-list, .footer-links {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .section {
    padding: 24px 7px;
    margin-bottom: 38px;
  }
  .footer-links {
    gap: 12px;
  }
  .footer-bottom {
    font-size: 0.89rem;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.15rem; }
  .section {
    padding: 18px 1px;
    margin-bottom: 22px;
  }
  .hero .container, .hero .content-wrapper {
    padding: 10px 0 !important;
  }
  .card, .feature-grid > div, .category-grid > div,
  .benefits-grid > div, .service-cards > div, .product-cards > div, .faq-list > div {
    padding: 13px 6px;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2001;
  width: 44px;
  height: 44px;
  background: var(--color-neon);
  color: #19212b;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 2px 12px var(--color-neon-glow);
  display: none;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffe995;
  box-shadow: 0 2px 22px var(--color-neon-glow);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #181e2c;
  box-shadow: 0 8px 48px 8px var(--color-shadow);
  z-index: 2400;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.7,.15,.24,1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 23px;
  right: 28px;
  font-size: 2rem;
  background: var(--color-neon);
  color: #19212b;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  z-index: 2401;
  cursor: pointer;
  box-shadow: 0 1px 11px var(--color-neon-glow);
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe995;
}
.mobile-nav {
  margin: 98px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  width: 80vw;
  max-width: 340px;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.20rem;
  color: var(--color-accent);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  text-decoration: none;
  margin-bottom: 10px;
  background: none;
  padding: 19px 8px 8px 8px;
  border-radius: 10px;
  transition: background 0.16s, color 0.16s;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-neon);
  color: #181e2c;
}

@media (max-width: 400px) {
  .mobile-nav {
    padding: 0 10px;
  }
}

body.mobile-menu-open {
  overflow: hidden;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  pointer-events: none;
  background: none;
  animation: fadeInCookieBanner 0.3s {
    from { opacity: 0; } to { opacity: 1; }
  };
}
.cookie-banner-inner {
  pointer-events: auto;
  max-width: 480px;
  width: 97vw;
  background: #232c3d;
  color: #fffbe7;
  box-shadow: 0 -2px 28px 0 var(--color-neon-glow);
  border-radius: 16px 16px 0 0;
  margin: 0 12px 14px 12px;
  padding: 20px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1.5px solid var(--color-neon);
  animation: bannerSlideUp 0.4s cubic-bezier(.5,1.7,.7,.9);
}
.cookie-banner-text {
  color: #fffbe7;
  font-size: 1rem;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  justify-content: flex-end;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  background: var(--color-neon);
  color: #19212b;
  box-shadow: 0 2px 10px var(--color-neon-glow);
  transition: background 0.14s, box-shadow 0.18s;
}
.cookie-btn.cookie-reject {
  background: #fffbe7;
  color: #232c3d;
  border: 1.5px solid var(--color-card);
}
.cookie-btn.cookie-settings {
  background: var(--color-bg);
  color: var(--color-accent);
  border: 1px solid var(--color-neon);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ffe995;
  color: #232c3d;
  box-shadow: 0 3px 17px var(--color-neon-glow);
}

@keyframes bannerSlideUp {
  from { transform: translateY(30px); opacity:0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInCookieBanner {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(44,54,81,0.95);
  z-index: 3100;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInCookieModal 0.23s;
}
.cookie-modal {
  background: #232c3d;
  border-radius: 18px;
  max-width: 420px;
  width: 96vw;
  padding: 34px 28px 26px 28px;
  box-shadow: 0 4px 38px 6px var(--color-neon-glow);
  border: 2px solid var(--color-neon);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalSlideDown 0.33s cubic-bezier(.6,.06,.19,.97);
}
.cookie-modal h3 {
  color: var(--color-neon);
  margin-bottom: 7px;
  font-size: 1.22rem;
  text-shadow: 0 1px 6px var(--color-neon-glow);
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 1.85rem;
  background: var(--color-neon);
  color: #232c3d;
  border: none;
  border-radius: 13px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  box-shadow: 0 1px 8px var(--color-neon-glow);
  transition: background 0.17s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #ffe995;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 0;
  font-size: 1rem;
  color: #fffbe7;
}
.cookie-category.disabled {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1rem;
}
.cookie-switch {
  width: 46px;
  height: 24px;
  border-radius: 13px;
  background: #353c5a;
  display: inline-block;
  position: relative;
}
.cookie-switch input[type=checkbox] {
  display: none;
}
.cookie-slider {
  position: absolute;
  left: 4px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-neon);
  transition: left 0.14s, background 0.13s;
}
.cookie-switch input[type=checkbox]:checked + .cookie-slider {
  background: var(--color-secondary);
  left: 26px;
}

@keyframes modalSlideDown {
  from { transform: translateY(-50px); opacity:0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInCookieModal {
  from { opacity: 0; } to { opacity: 1; }
}

/* ==== UTILS ==== */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

::-webkit-scrollbar { width: 9px; background: #232c3d; }
::-webkit-scrollbar-thumb { background: #2D4052; border-radius: 11px; }

/* ==== MICRO-INTERACTIONS ==== */
.card, .feature-grid > div, .testimonial-card, .service-cards > div, .category-grid > div, .faq-list > div {
  transition: box-shadow 0.17s, transform 0.21s, border 0.13s, background 0.13s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover, .service-cards > div:hover, .category-grid > div:hover, .faq-list > div:hover {
  transform: translateY(-3px) scale(1.013);
}
.button:focus, .cta-primary:focus, .cta-secondary:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--color-neon);
  outline-offset: 2px;
}

/* ==== END OF CSS ==== */
