/*---------------------------------------------------
  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: #181C2A;
  color: #E7ECEF;
}
ul, ol {
  list-style: none;
}
a {
  background: none;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
*:focus {
  outline: 2px solid #FF6E40;
  outline-offset: 2px;
}

/*---------------------------------------------------
  BRAND VARIABLES (fall back for no CSS vars)
----------------------------------------------------*/
:root {
  --color-primary: #1A2239;
  --color-secondary: #FF6E40;
  --color-accent: #E7ECEF;
  --color-bg: #181C2A;
  --color-text: #E7ECEF;
}

/*---------------------------------------------------
  TYPOGRAPHY
----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400|Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-accent);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.015em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; }
p, li, ul, ol, a, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-accent);
  letter-spacing: 0.009em;
}
strong, b {
  color: var(--color-secondary);
  font-weight: 700;
}

/*---------------------------------------------------
  LAYOUT PATTERNS
----------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 660px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #222948;
  border-radius: 18px;
  box-shadow: 0 2px 24px 2px rgba(32, 231, 255, 0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid #242c46;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 4px 32px 2px rgba(255, 110, 64, 0.12);
  transform: translateY(-5px) scale(1.02);
  border-color: #FF6E40;
}
.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 28px;
  background: #F4F7F6;
  color: #191A22;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 24px 0 rgba(32,231,255,0.09);
  border-left: 5px solid #FF6E40;
}
.testimonial-card p {
  color: #1A2239;
  font-weight: 500;
}
.testimonial-card strong {
  color: #FF6E40;
}
.stars img {
  height: 20px;
  width: 20px;
  margin-right: 4px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #21253A;
  border-radius: 10px;
  padding: 22px;
}
.footer-section {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.usp-bullets li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 14px;
}
.usp-bullets li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: #00FFE7;
  border-radius: 100%;
  box-shadow: 0 0 6px #00FFE7, 0 0 2px #00FFE7;
}

/*---------------------------------------------------
  HEADER & NAVIGATION
----------------------------------------------------*/
header {
  width: 100%;
  background: #191B29;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 0;
  min-height: 70px;
  box-shadow: 0 2px 14px 0 rgba(26, 34, 57, 0.02);
  position: relative;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 70px;
  padding: 0 20px;
}
.logo {
  display: flex;
  align-items: center;
  height: 52px;
  transition: filter 0.3s;
}
.logo img {
  max-height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px #00ffe7cc);
  transition: filter 0.2s;
}
.logo:hover img { filter: drop-shadow(0 0 16px #FF6E40); }

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
nav a {
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: relative;
}
nav a:not(.cta-primary):hover,
nav a:focus {
  background: #23293c;
  color: #FF6E40;
  box-shadow: 0 0 6px 1px #FF6E40;
}
nav a.cta-primary {
  background: linear-gradient(90deg, #FF6E40 60%, #FF70b7 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.07rem;
  letter-spacing: 1.1px;
  box-shadow: 0 2px 20px 0px #FF6E4060;
  border-radius: 28px;
  padding: 8px 22px;
  margin-left: 10px;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.14s;
}
nav a.cta-primary:hover, nav a.cta-primary:focus {
  background: linear-gradient(90deg, #FF6E40 20%, #1A2239 100%);
  color: #fff;
  box-shadow: 0 0 34px 2px #FF6E4080;
  transform: translateY(-1px) scale(1.045);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #FF6E40;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  margin-left: 14px;
  z-index: 110;
  padding: 6px 9px 6px 9px;
  border-radius: 10px;
  transition: background 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #23293c;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26,34,57,0.98);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.83, 0, 0.17, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 18px 18px 18px;
  box-shadow: 4px 0 32px #00ffe715, 4px 0 72px #1A223930;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FF6E40;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 10100;
  padding: 6px 11px;
  border-radius: 6px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #23293c;
}
.mobile-nav {
  margin-top: 54px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100vw;
  max-width: 340px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 8px;
  background: rgba(34, 41, 72, 0.78);
  width: 100%;
  text-align: left;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FF6E40;
  color: #fff;
}

/* Hide nav and show burger on mobile */
@media (max-width: 1000px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    padding: 22px 8px 8px 8px;
    max-width: 100vw;
  }
  .mobile-nav a {
    font-size: 1rem;
    padding: 10px 13px;
  }
}

/*---------------------------------------------------
  SECTIONS AND HERO
----------------------------------------------------*/
main {
  width: 100%;
  min-height: 80vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.section {
  background: #1A2239;
  border-radius: 22px;
}
section .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* HERO */
section:first-of-type {
  background: linear-gradient(120deg, #1A2239 80%, #FF6E40 120%);
  box-shadow: 0 8px 20px 0px #FF6E4010;
  border-radius: 0 0 28px 28px;
}
section:first-of-type h1 {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.1;
  text-shadow: 0 0 13px #00FFE799, 0 2px 10px #222948cc;
}
section:first-of-type p {
  color: #E7ECEF;
  font-size: 1.18rem;
}
section:first-of-type .cta-primary {
  margin-top: 14px;
}

@media (max-width: 700px) {
  .content-wrapper.text-section {
    align-items: stretch;
    text-align: left;
  }
  section:first-of-type h1 {
    font-size: 1.7rem;
  }
}

/* Feature grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.feature-grid li {
  background: #222948;
  padding: 22px 18px 18px 18px;
  border-radius: 14px;
  border: 1.5px solid #2A314A;
  color: #E7ECEF;
  min-width: 222px;
  max-width: 320px;
  box-shadow: 0 2px 16px 1px #00ffe740;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 32px 0px #FF6E4088;
  border-color: #FF6E40;
  transform: translateY(-3px) scale(1.025);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 7px #00ffe740);
}
.feature-grid strong {
  color: #FF6E40;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
}
.feature-grid p {
  font-size: 0.97rem;
  color: #D9DCEA;
}

/* Pricing table */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 32px 0 32px 0;
}
.plan {
  background: #191b29;
  border-radius: 15px;
  border: 1.5px solid #FF6E40;
  padding: 34px 28px 22px 28px;
  color: #fff;
  box-shadow: 0 2px 28px 1px #00ffe738;
  display: flex;
  flex-direction: column;
  gap: 17px;
  min-width: 235px;
  max-width: 375px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.plan:hover {
  box-shadow: 0 6px 32px 0px #FF6E4088;
  transform: scale(1.04) translateY(-2px);
}
.plan h3 {
  color: #FF6E40;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.price {
  font-size: 2rem;
  font-weight: 700;
  color: #1AebFF;
}
.plan ul {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan ul li {
  position: relative;
  padding-left: 18px;
}
.plan ul li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #1AebFF;
  border-radius: 100%;
  position: absolute;
  left: 0; top: 7px;
  opacity: 0.9;
  box-shadow: 0 0 6px #1AebFF;
}
.plan .cta-primary,
.plan .cta-secondary {
  margin-top: 22px;
}
.plan-features-comparison {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 19px 0 7px 0;
  font-size: 0.97rem;
}
.plan-features-comparison strong {
  color: #FF6E40;
}

/* FAQ & Steps */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 20px;
  margin-bottom: 14px;
}
.faq-section h3 {
  color: #1AebFF;
  font-size: 1.12rem;
  margin-bottom: 6px;
}
.faq-section p, .faq-section a {
  font-size: 0.98rem;
  color: #E7ECEF;
}
.steps-section ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  list-style: none;
  counter-reset: steps;
}
.steps-section li {
  background: #191C30;
  border-radius: 13px;
  padding: 18px 20px;
  min-width: 210px;
  max-width: 275px;
  flex: 1 1 210px;
  box-shadow: 0 2px 12px 2px #00ffe729;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  position: relative;
  border-left: 4px solid #FF6E40;
}
.steps-section img {
  width: 34px;
  height: 34px;
  margin-bottom: 4px;
}
.steps-section strong {
  color: #FF6E40;
  font-size: 1.07rem;
}
.steps-section p {
  color: #E7ECEF;
}

/* Contact info */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-top: 10px;
}
.contact-section ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-section li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1AebFF;
  font-size: 1.06rem;
}
.contact-section li strong {
  color: #FF6E40;
}
.contact-section img {
  height: 20px;
  width: 20px;
}
.map-embed {
  background: #21253A;
  color: #E7ECEF;
  border-radius: 11px;
  padding: 18px;
  font-size: 0.98rem;
  min-width: 175px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.map-embed img {
  filter: drop-shadow(0 0 8px #00ffe7);
  width: 24px;
  height: 24px;
}

/*---------------------------------------------------
  BUTTONS & CTA
----------------------------------------------------*/
.cta-primary,
button.cta-primary,
input[type='submit'].cta-primary {
  background: linear-gradient(90deg, #FF6E40 30%, #1AebFF 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  padding: 12px 34px;
  border-radius: 30px;
  font-size: 1.08rem;
  box-shadow: 0 2px 26px 0 #FF6E4010;
  cursor: pointer;
  transition: background 0.20s, box-shadow 0.20s, transform 0.16s;
  letter-spacing: 0.015em;
  outline: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #1AebFF 27%, #FF6E40 100%);
  box-shadow: 0 6px 32px 0 #FF6E4065;
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary,
button.cta-secondary {
  background: none;
  color: #FF6E40;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: 2px solid #FF6E40;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, border-color 0.15s, transform 0.13s;
  cursor: pointer;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #FF6E40;
  color: #fff;
  border-color: #1AebFF;
  transform: scale(1.035);
}

/* Simple links */
a {
  color: #1AebFF;
  transition: color 0.18s, border-bottom 0.2s;
}
a:hover, a:focus {
  color: #FF6E40;
  text-decoration: underline;
}

/*---------------------------------------------------
  FOOTER
----------------------------------------------------*/
footer {
  width: 100%;
  background: #1A2239;
  color: #E7ECEF;
  padding: 28px 0 5px 0;
  border-radius: 28px 28px 0 0;
  font-size: 1rem;
  box-shadow: 0 -2px 16px #00ffe710;
}
footer .footer-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 8px;
  padding-bottom: 16px;
}
footer nav {
  gap: 10px;
  font-size: 0.98rem;
}
footer nav a {
  color: #1AebFF;
  font-size: 0.99rem;
  padding: 3px 6px;
  border-radius: 5px;
  background: none;
}
footer nav a:hover, footer nav a:focus {
  background: #FF6E40;
  color: #fff;
  box-shadow: 0 0 10px #FF6E40;
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.brand-info p {
  color: #9297AE;
}
.brand-info ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.98rem;
}
.brand-info li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1AebFF;
}
.brand-info li img {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 4px #00ffe790);
}

/*---------------------------------------------------
  BLOG ARTICLES
----------------------------------------------------*/
.content-wrapper article {
  background: #232948;
  border-radius: 12px;
  padding: 23px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px #00ffe740;
  border-left: 4px solid #FF6E40;
  transition: transform 0.17s, box-shadow 0.17s;
}
.content-wrapper article h3 {
  color: #FF6E40;
  font-size: 1.17rem;
  margin-bottom: 11px;
}
.content-wrapper article a {
  color: #1AebFF;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.content-wrapper article a:hover {
  color: #FF6E40;
}

/*---------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
----------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10020;
  background: #232948;
  box-shadow: 0 -2px 24px #00ffe720;
  color: #fff;
  padding: 22px 10px 22px 20px;
  border-top: 3px solid #FF6E40;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
  min-height: 76px;
  animation: fadeInBtm 0.6s ease;
}
@keyframes fadeInBtm {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-banner button, .cookie-banner .cta-primary, .cookie-banner .cta-secondary {
  font-size: 1rem;
  min-width: 140px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 18px;
}
.cookie-banner .cta-primary {
  background: linear-gradient(90deg,#FF6E40 40%,#1AebFF 100%);
  color: #fff;
  border: none;
}
.cookie-banner .cta-secondary {
  background: none;
  color: #FF6E40;
  border: 2px solid #FF6E40;
}
.cookie-banner .cta-primary:hover, .cookie-banner .cta-secondary:hover {
  background: #FF6E40;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: none;
  border: 1.5px solid #1AebFF;
  color: #1AebFF;
  border-radius: 8px;
  padding: 8px 15px;
  margin-left: 6px;
  transition: background 0.17s, color 0.17s;
  font-weight: 600;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #1AebFF;
  color: #181B29;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-55%) scale(1);
  z-index: 10050;
  background: #181B29;
  color: #fff;
  min-width: 345px;
  max-width: 98vw;
  min-height: 290px;
  padding: 38px 28px 24px 28px;
  border-radius: 20px;
  box-shadow: 0 12px 56px #00ffe7aa, 0 4px 36px #FF6E4030;
  animation: fadeInCookieModal 0.2s cubic-bezier(.83,0,.17,1);
  display: flex;
  flex-direction: column;
  gap: 23px;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; transform: translate(-50%,-65%) scale(0.9); }
  to   { opacity: 1; transform: translate(-50%,-55%) scale(1); }
}
.cookie-modal h2 {
  color: #FF6E40;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 8px 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  color: #1AebFF;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 23px;
  border-radius: 16px;
  background: #232948;
  border: 2px solid #FF6E40;
  cursor: pointer;
  appearance: none;
  position: relative;
  transition: background 0.15s, border 0.15s;
}
.cookie-modal .cookie-toggle:checked {
  background: #FF6E40;
  border-color: #1AebFF;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2.5px;
  top: 1.8px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 2px 12px #FF6E4077;
}
.cookie-modal .cookie-toggle:checked:before {
  transform: translateX(14px);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  margin-top: 19px;
  flex-wrap: wrap;
}
.cookie-modal .close-modal {
  background: none;
  color: #FF6E40;
  border: none;
  font-size: 1.34rem;
  position: absolute;
  top: 18px;
  right: 19px;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: #1AebFF;
}
.cookie-modal .cta-primary, .cookie-modal .cta-secondary, .cookie-modal .cookie-settings-btn {
  min-width: 134px;
}

/* Essential always enabled (greyed) */
.cookie-category.essential label {
  color: #A8ADB7;
}
.cookie-category.essential .cookie-toggle {
  background: #5A5E6D;
  border: 2px solid #666C7F;
  cursor: not-allowed;
}
.cookie-category.essential .cookie-toggle:before {
  background: #A8ADB7;
}

/*---------------------------------------------------
  RESPONSIVE DESIGN (MOBILE FIRST)
----------------------------------------------------*/
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 8px; }
  .content-wrapper, .footer-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .text-image-section, .card-container, .feature-grid, .pricing-table, .content-grid, .steps-section ol, .testimonial-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .footer-section { align-items: flex-start; }
  section {
    margin-bottom: 36px;
    padding: 24px 0;
  }
  .section { padding: 24px 8px; }
  .testimonials { flex-direction: column; }
  .card { padding: 19px 11px; }
  .plan { padding: 19px 11px 12px 11px; }
  .feature-grid li, .steps-section li {
    min-width: 169px;
    max-width: 100%;
  }
  .map-embed { padding: 12px; }
  .faq-section { gap: 18px; }
  .testimonial-card { padding: 14px 12px; }
}

@media (max-width: 430px) {
  html { font-size: 14px; }
  .container { padding: 0 3vw; }
  .section, section { padding: 12px 0; }
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.07rem; }
  .card, .plan, .testimonial-card { border-radius: 8px; }
  .feature-grid li, .steps-section li { border-radius: 8px; }
}

/*---------------------------------------------------
  MODERN EFFECTS AND MICRO-INTERACTIONS
----------------------------------------------------*/
.card, .plan, .testimonial-card, .feature-grid li, .steps-section li, .content-wrapper article {
  transition: box-shadow 0.19s, transform 0.21s, border-color 0.16s;
}
.plan:hover, .card:hover, .feature-grid li:hover, .steps-section li:hover, .content-wrapper article:hover {
  box-shadow: 0 8px 32px #FF6E4055, 0 0px 50px 0px #1AebFF21;
  transform: scale(1.015);
  border-color: #1AebFF;
}
button, .cta-primary, .cta-secondary, .cookie-banner button, .cookie-settings-btn {
  transition: background 0.21s, color 0.21s, box-shadow 0.17s, transform 0.12s;
}

/*---------------------------------------------------
  MISC UTILS
----------------------------------------------------*/
.mt-1 { margin-top: 8px; }
.mb-1 { margin-bottom: 8px; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.text-center { text-align: center; }
.hide { display: none !important; }

/*---------------------------------------------------
  ENSURE NO GRID OR ABSOLUTE FOR CONTENT
----------------------------------------------------*/
/* (All layout containers use only flexbox above. No grid, columns, or abs position used for content.) */
