/* ==================================================
   RESET & BASELINE NORMALIZATION (flexbox friendly)
   ================================================== */
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  background: #1a232a;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #e7eaef;
  background: #1a232a;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
}
b, strong {
  font-weight: bold;
}
a {
  color: #0ea57f;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #22ceaf;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Narrow Bold', Arial, sans-serif;
  color: #e7eaef;
  line-height: 1.1;
  margin-bottom: 0.5em;
  text-rendering: optimizeLegibility;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h1 {font-size: 2.4rem;}
h2 {font-size: 2rem;}
h3 {font-size: 1.4rem;}
h4 {font-size: 1.1rem;}
@media (min-width: 600px){
  h1 {font-size: 3rem;}
  h2 {font-size: 2.4rem;}
  h3 {font-size: 1.7rem;}
}
/* ===============
   FLEX UTILITY
   =============== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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: stretch;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* =======
 NAVBAR
 ======= */
header {
  background: #212a33;
  border-bottom: 1px solid #222f3a;
  box-shadow: 0 2px 8px rgba(24,36,46,0.07);
  position: relative;
  z-index: 100;
  min-height: 64px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 64px;
}
header img {
  height: 42px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #e7eaef;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #22313f;
  color: #0ea57f;
}
.main-nav a.cta {
  background: #0ea57f;
  color: #22313f;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(14,165,127, 0.15);
  border: 1px solid #068266;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #068266;
  color: #e7eaef;
  box-shadow: 0 4px 18px 0 rgba(14,165,127,0.25);
}
@media (max-width: 1040px){
  .main-nav {
    gap:16px;
  }
}
@media (max-width: 800px){
  .main-nav {
    display: none;
  }
}
/* ==========================
   MOBILE MENU + ANIMATION
   ========================== */
.mobile-menu-toggle {
  display: none;
  background: rgba(14,165,127,0.15);
  border: none;
  color: #0ea57f;
  font-size: 2.2rem;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 201;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #e7eaef;
  background: #0ea57f;
}
@media (max-width: 800px){
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #212a33;
  z-index: 200;
  padding: 36px 26px 26px 26px;
  transform: translateX(-102vw);
  transition: transform 0.39s cubic-bezier(.7,0,.24,1);
  box-shadow: 0 2px 32px 0 rgba(34,49,63,.33), 0 1px 2px 0 #10161b;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #e7eaef;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 24px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #0ea57f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.25rem;
}
.mobile-nav a {
  color: #e7eaef;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 4px;
  background: none;
  transition: background 0.15s, color 0.12s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: #0ea57f;
  background: #22313f;
}
/* ===============
   HERO SECTIONS
   =============== */
.hero {
  background: linear-gradient(120deg,#212a33 72%,#23343f 92%,#22313f 100%);
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 6px 44px 0 rgba(24,28,34,0.09);
}
.hero .container {
  min-height: 320px;
  justify-content: center;
  align-items: center;
}
.hero h1 {
  color: #e7eaef;
  text-shadow: 0 2px 12px #091014;
  font-size: 2.2rem;
}
@media (min-width: 700px){
 .hero h1 { font-size: 2.7rem;}
 .hero .container { min-height: 390px; }
}
.hero .subheadline {
  color: #c2c9d6;
  font-size: 1rem;
}
@media (min-width: 480px){
  .hero .subheadline { font-size: 1.15rem; }
}
.hero .cta {
  display: inline-block;
  margin-top: 32px;
  background: #0ea57f;
  color: #22313f;
  border: 1px solid #068266;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 20px 0 rgba(14,165,127, 0.18);
  letter-spacing: 1.4px;
  font-size: 1.1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.23s;
}
.hero .cta:hover, .hero .cta:focus {
  background: #068266;
  color: #e7eaef;
  box-shadow: 0 4px 28px 0 rgba(14,165,126,0.25);
}
/* ================
   SECTION STYLES
   ================ */
section {
  width: 100%;
  background: none;
  border-radius: 12px;
}
.features {
  background: #202b34;
  border-radius: 13px;
  box-shadow: 0 3px 20px 0 rgba(25,31,41,0.10);
  margin-bottom: 60px;
  padding: 36px 15px 42px 15px;
}
@media (min-width: 750px){
  .features {
    padding: 56px 24px 62px 24px;
  }
}
.features h2{
  color: #9db0c0;
  margin-bottom: 24px;
}
.feature-grid, .feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-grid > div, .feature-icons > div {
  background: #22313f;
  flex: 1 1 225px;
  min-width: 216px;
  max-width: 340px;
  padding: 26px 22px 21px 22px;
  border-radius: 11px;
  box-shadow: 0 2px 14px 0 rgba(34,49,63,.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid #2e4256;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.17s, box-shadow 0.2s;
}
.feature-grid > div:hover, .feature-icons > div:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 6px 34px 0 rgba(14,165,127,.13),0 1px 7px 0 #23313c;
  border-color: #0ea57f;
}
.feature-grid img, .feature-icons img {
  width: 36px;
  height: 36px;
  filter: grayscale(40%) brightness(1.15) contrast(1.2) drop-shadow(0 1px 2px #1114);
  margin-bottom: 12px;
}
.feature-grid h3, .feature-icons h3 {
  font-size: 1.05rem;
  color: #e7eaef;
}
.feature-grid p, .feature-icons p {
  color: #a2b0be;
  font-size: 1rem;
  font-family: 'Roboto','Arial',sans-serif;
}
/* List Styles in Features */
.features ul, .features ol {
  color: #aac7d6;
  margin-bottom: 0;
  font-size: 1rem;
}
.features ul li::marker {color: #0ea57f; font-weight: bold;}
/* === Highlight/Articles/Reviews Cards === */
.highlights, .reviews, .articles, .insights {
  background: #212a33;
  border-radius: 12px;
  margin-bottom: 60px;
  box-shadow: 0 2px 18px 0 rgba(34,49,63,0.10);
}
.article-list, .review-list-grid, .innovation-article-list, .software-review-list, .startup-review-list, .category-list, .smartphone-review-list, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 700px){
  .article-list, .review-list-grid, .innovation-article-list, .software-review-list, .startup-review-list, .category-list, .smartphone-review-list, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
}
.article-list li, .review-list-grid > div, .innovation-article-list li, .software-review-list li, .startup-review-list li, .smartphone-review-list li {
  background: #22313f;
  border: 1px solid #2e4256;
  border-radius: 8px;
  padding: 20px 18px 18px 18px;
  min-width: 220px;
  flex: 1 1 240px;
  box-shadow: 0 2px 14px 0 rgba(34,49,63,0.10);
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.14s, box-shadow 0.14s, border-color 0.15s;
}
.article-list li:hover, .review-list-grid > div:hover,
.innovation-article-list li:hover, .software-review-list li:hover, .startup-review-list li:hover, .smartphone-review-list li:hover {
  transform: translateY(-5px) scale(1.016);
  box-shadow: 0 8px 36px 0 rgba(14,165,127,.15);
  border-color: #0ea57f;
}
.article-list h3, .reviews h3, .innovation-article-list h3, .startup-review-list h3, .software-review-list h3 {
  color: #e7eaef;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.article-list p, .reviews p, .innovation-article-list p, .startup-review-list p, .software-review-list p {
  color: #c0ccdb;
  font-size: 0.99rem;
}
/* Categories & Filters */
.categories {
  background: #22313f;
  border-radius: 12px;
  margin-bottom: 60px;
  padding: 40px 16px;
  box-shadow: 0 2px 12px 0 rgba(20,29,40,0.17);
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.category-list li a {
  background: #202b34;
  color: #e7eaef;
  border: 1px solid #2e4256;
  padding: 10px 18px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.9px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.15s, color 0.16s, border-color 0.12s;
}
.category-list li a:hover, .category-list li a:focus {
  background: #0ea57f;
  color: #212a33;
  border-color: #0ea57f;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
  margin-bottom: 10px;
}
.filters a {
  color: #0ea57f;
  padding: 8px 14px;
  border-radius: 5px;
  border: 1px solid #0ea57f;
  font-size: 0.97rem;
  background: none;
  transition: color 0.17s, background 0.13s;
}
.filters a:hover, .filters a:focus {
  background: #0ea57f;
  color: #22313f;
}
.filters span {color: #8ea7b9; font-weight: 500; margin-right: 8px;}
/* ================
  TESTIMONIALS
 ================= */
.testimonials {
  background: #202b34;
  border-radius: 13px;
  box-shadow: 0 2px 22px 0 rgba(20,30,39,0.13);
  margin-bottom: 60px;
  padding: 36px 15px 42px 15px;
}
.testimonials h2 {
  color: #0ea57f;
  margin-bottom: 18px;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}
@media (max-width: 700px){
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
}
.testimonial-card {
  background: #e7eaef;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(34,49,63,0.10);
  font-style: italic;
  min-width: 220px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  border-left: 7px solid #0ea57f;
  color: #22313f;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 38px 0 rgba(34,49,63,0.21);
  transform: translateY(-7px) scale(1.03);
}
.testimonial-card p {
  color: #22313f;
  font-size: 1.09rem;
}
.testimonial-card .author {
  display: block;
  font-style: normal;
  font-weight: bold;
  color: #068266;
  font-size: 0.95rem;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
/* =============
  CTA + BUTTONS
  ============= */
.cta {
  display: inline-block;
  background: #0ea57f;
  color: #22313f !important;
  border-radius: 8px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1px solid #068266;
  font-size: 1.05rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s;
  margin-top: 12px;
  box-shadow: 0 1px 7px 0 rgba(14,165,126,.13);
  letter-spacing: 1.15px;
}
.cta:hover, .cta:focus {
  background: #068266 !important;
  color: #e7eaef !important;
  box-shadow: 0 7px 42px 0 rgba(14,165,127,0.26);
  outline: none;
}
button, input[type=button], input[type=submit] {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  padding: 11px 28px;
  background: #0ea57f;
  border: none;
  color: #22313f;
  font-weight:700;
  box-shadow: 0 1px 7px 0 rgba(14,165,127, 0.12);
  transition: background 0.18s, color 0.18s, box-shadow 0.13s;
  cursor: pointer;
}
button:hover, button:focus, input[type=button]:hover, input[type=submit]:hover {
  background: #068266;
  color: #e7eaef;
  box-shadow: 0 5px 16px 0 rgba(14,165,127,.31);
}
input, textarea, select {
  border-radius: 5px;
  border: 1px solid #3d4f62;
  background: #202b34;
  color: #e7eaef;
  padding: 11px 14px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 18px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #0ea57f;
}
/* ==== LEGAL/ABOUT/THANK YOU ==== */
.legal, .about, .thankyou, .contact {
  background: #1a2228;
  border-radius: 12px;
  box-shadow: 0 2px 15px 0 rgba(32,41,61,0.11);
  margin-bottom: 60px;
  padding: 40px 18px 35px 18px;
}
.legal h1, .about h1, .thankyou h1, .contact h1{
  color: #0ea57f;
  font-size: 2rem;
  margin-bottom: 18px;
}
.legal h2, .about h2, .contact h2{ color: #e7eaef; font-size: 1.24rem; }
.legal ul li, .about ul li{ color:#c2c9d6; margin-bottom:8px; }
.legal ul li::marker, .about ul li::marker{ color: #0ea57f; }
@media (max-width:650px) {
  section, .features, .reviews, .highlights, .testimonials, .cta, .about, .legal, .thankyou, .contact {
    padding: 26px 4px 22px 4px;
  }
}
/* ==========
   FOOTER
=========== */
footer {
  background: #1a232a;
  padding: 34px 0 0 0;
  border-top: 1px solid #222f3a;
  box-shadow: 0 -1px 20px 0 rgba(32,41,61, 0.11);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
  font-size: 0.97rem;
}
.footer-navigation a {
  color: #8ea7b9;
  transition: color 0.15s;
  text-transform: uppercase;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #0ea57f;
}
.contact-info, .social-links, .newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.99rem;
  color: #bcc3cc;
  margin-bottom: 12px;
}
.contact-info img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}
.social-links {
  flex-direction: row;
  gap: 16px;
}
.social-links a img {
  width: 23px;
  height: 23px;
  opacity: .85;
  filter: grayscale(.7) brightness(1.11);
  transition: filter 0.13s, opacity 0.13s;
}
.social-links a:hover img, .social-links a:focus img {
  filter: none;
  opacity: 1;
}
.newsletter-signup h4 {
  font-size: 1.2rem;
  color: #0ea57f;
  font-family: 'Montserrat',Arial,sans-serif;
}
.newsletter-signup p{
  color: #aac7d6;
  font-size: 0.98rem;
}
@media (max-width: 950px){
  footer .container {
    gap: 18px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items:flex-start;
  }
  .footer-navigation {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom:12px;
  }
}
/* ==============
   COOKIE BANNER
================= */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #1a232a;
  color: #e7eaef;
  z-index: 6000;
  box-shadow: 0 -2px 36px 0 rgba(34,49,63,0.17);
  border-top: 2px solid #0ea57f;
  padding: 28px 15px 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  font-size: 1rem;
  animation: cookiebannerfadein 0.45s cubic-bezier(.67,0,.26,1);
}
@keyframes cookiebannerfadein {
  0% { opacity: 0; transform: translateY(98px); }
  100%{ opacity:1; transform: none; }
}
.cookie-consent-banner p {
  color: #e7eaef;
  font-size: 0.98rem;
}
.cookie-consent-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-consent-btn {
  background: #0ea57f;
  color: #22313f;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  padding: 11px 24px;
  border: none;
  letter-spacing: 1px;
  font-size: 1rem;
  margin-right: 4px;
  transition: background 0.14s, color 0.14s, box-shadow 0.17s;
  box-shadow: 0 1px 7px 0 rgba(14,165,127,0.11);
  cursor: pointer;
}
.cookie-consent-btn.accept {
  background: #0ea57f;
  color: #22313f;
}
.cookie-consent-btn.reject {
  background: #e54a4a;
  color: #e7eaef;
}
.cookie-consent-btn.settings {
  background: #22313f;
  color: #e7eaef;
  border: 1px solid #0ea57f;
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus {
  background: #068266;
  color: #e7eaef;
  outline: none;
  box-shadow: 0 4px 21px 0 rgba(14,165,127,0.18);
}
.cookie-consent-btn.reject:hover, .cookie-consent-btn.reject:focus {
  background: #b61229;
  color: #fff;
}
/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  width:100vw; height:100vh;
  background: rgba(22,33,42, .71);
  z-index: 7000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiemodalfadein 0.19s cubic-bezier(.6,0,.26,1);
}
@keyframes cookiemodalfadein {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: #22313f;
  color: #e7eaef;
  border-radius: 15px;
  padding: 32px 18px 28px 27px;
  min-width: 320px;
  max-width: 97vw;
  box-shadow: 0 3px 55px 0 rgba(34,49,63,.17),0 8px 18px 0 rgba(14, 165, 127, 0.11);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookiemodalpop 0.33s cubic-bezier(.7,0,.11,1);
}
@keyframes cookiemodalpop {
  0% { transform: scale(0.93); opacity: 0.25; }
  100% { transform:none; opacity:1; }
}
.cookie-modal h3 {
  color: #0ea57f;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 9px;
  font-size: 1.18rem;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
}
.cookie-category label {
  color: #e7eaef;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.cookie-switch {
  width: 41px;
  height: 23px;
  position: relative;
  display: inline-block;
  margin-right: 7px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left:0; right:0; bottom:0;
  background: #b1b9c9;
  border-radius: 20px;
  transition: background .21s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #0ea57f;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 17px;
  width: 17px;
  left: 3px;
  bottom: 3px;
  background: #f7faf8;
  border-radius: 50%;
  transition: transform .21s;
  box-shadow: 0 1px 3px 0 rgba(14,165,127,0.14);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
  background: #22313f;
}
.cookie-category .description {
  color: #bac6d1;
  font-size: 0.93rem;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 13px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 1.4rem;
  background: none;
  color: #8ea7b9;
  border: none;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #0ea57f;
  outline: none;
}
/* ===========
   RESPONSIVE
 =========== */
@media (max-width: 820px){
  .main-nav, .footer-navigation, .content-wrapper, .container {
    gap: 13px !important;
  }
}
@media (max-width: 600px){
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.09rem; }
  .feature-grid > div, .feature-icons > div, .card, .testimonial-card { min-width: 90vw; max-width: 100vw; }
  .card-container, .feature-grid, .feature-icons, .testimonial-slider, .content-grid { flex-direction: column; gap:14px; }
}
/* ==== SPACING, Z-INDEX, SHADOWS ==== */
section, .feature-grid > div, .feature-icons > div, .card, .testimonial-card {
  margin-bottom: 20px;
}
/* FOCUS VISIBLE for accessibility */
:focus-visible {
  outline: 2px solid #0ea57f;
  outline-offset: 2px;
}
/* INDUSTRIAL MODERN EXTRAS & MICROINTERACTIONS */
/* Subtle metallic lines for "industrial" feel */
.section, .features, .testimonials, .reviews, .contacts, .footer {
  border-bottom: 1.5px solid #37495b;
}
hr {
  border: none;
  border-top: 1px solid #2e4256;
  margin: 30px 0 23px 0;
}
/* Micro shadow hover on all cards */
.card, .feature-grid > div, .feature-icons > div, .testimonial-card, .article-list li, .review-list-grid > div, .innovation-article-list li, .software-review-list li, .startup-review-list li, .smartphone-review-list li {
  will-change: transform, box-shadow;
}
/* ======================
   END OF STYLES
 ==================== */
