/* --------------------------------------------------
   RESET & NORMALIZE (Mobile-First)
--------------------------------------------------- */
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%; 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;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #232B38;
  color: #F5F7FA;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
*, *:before, *:after { box-sizing: inherit; }
button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #F5F7FA;
  letter-spacing: 0.04em;
}
h1 { font-size: 2.5rem; margin-bottom: 14px; line-height: 1.1; }
h2 { font-size: 1.8rem; margin-bottom: 12px; line-height: 1.2; }
h3 { font-size: 1.2rem; margin-bottom: 8px; line-height: 1.2; }
@media (min-width: 600px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.4rem; }
}
p, li {
  font-size: 1rem;
  color: #AAB8C2;
  line-height: 1.65;
}
strong { color: #fff; font-weight: bold; }

/* --------------------------------------------------
   BRAND COLORS (Futuristic Scheme) & SHADOWS
--------------------------------------------------- */
:root {
  --brand-primary: #2D3C4D;
  --brand-secondary: #AAB8C2;
  --brand-accent: #2BE3BF; /* Neon Mint accent for tech vibe */
  --brand-bg: #232B38;
  --brand-white: #F5F7FA;
  --brand-dark: #17202A;
  --neon-shadow: 0 0 8px #2BE3BF, 0 0 24px #2BE3BF44;
  --btn-gradient: linear-gradient(90deg,#1C7ED6 0%,#2BE3BF 100%);
  --btn-gradient-hover: linear-gradient(90deg,#2BE3BF 0%,#1C7ED6 100%);
}

/* --------------------------------------------------
   LAYOUT WRAPPERS & MAIN SECTIONS
--------------------------------------------------- */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1160px;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
  .section {
    padding: 60px 0;
    margin-bottom: 80px;
  }
}

/* --------------------------------------------------
   HEADER & NAVIGATION
--------------------------------------------------- */
header {
  width: 100%;
  background: #232B38cf;
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 1002;
  border-bottom: 1px solid #222B36;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 10px 0;
}
.main-nav .logo img {
  height: 44px;
  width: auto;
}
.main-nav ul {
  display: none;
}
.main-nav ul li {
  display: inline-flex;
  margin-right: 18px;
}
.main-nav ul li:last-child {
  margin-right: 0;
}
.main-nav ul li a {
  color: var(--brand-secondary);
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus,
.main-nav ul li.active a {
  background: #2BE3BF22;
  color: var(--brand-accent);
}
.main-nav .cta-btn {
  display: none;
}

@media (min-width: 900px) {
  .main-nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .main-nav .cta-btn {
    display: inline-block;
  }
}

/* --------------------------------------------------
   CTA BUTTONS & MICRO-INTERACTIONS
--------------------------------------------------- */
.cta-btn {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #232B38;
  background: var(--btn-gradient);
  border-radius: 32px;
  box-shadow: 0 2px 12px #2BE3BF38;
  padding: 12px 32px;
  margin-left: 10px;
  transition: background 0.25s, color 0.18s, box-shadow .22s;
  letter-spacing: 0.04em;
  border: none;
  outline: none;
  position: relative;
  text-shadow: 0 1px 12px #2BE3BF24;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--btn-gradient-hover);
  color: #fff;
  box-shadow: var(--neon-shadow);
}

/* --------------------------------------------------
   HERO SECTION
--------------------------------------------------- */
.hero {
  background: #232B38;
  background: radial-gradient(ellipse at 40% 0%, #253347 50%, #232B38 100%);
  min-height: 340px;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #2BE3BF10;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #fff;
  font-size: 2.1rem;
  text-shadow: 0 0 16px #2BE3BF44;
  line-height: 1.15;
}
.hero .subheadline {
  color: #2BE3BF;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 18px;
  margin-top: 3px;
}
@media (min-width: 600px) {
  .hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .hero h1 {
    font-size: 3.1rem;
  }
  .hero .subheadline {
    font-size: 1.32rem;
  }
}


/* --------------------------------------------------
   FLEXBOX ONLY: LAYOUT PATTERNS & MANDATED UTILITY CLASSES
--------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #2D3C4D;
  border-radius: 16px;
  box-shadow: 0 2px 20px #17202A70;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  transition: box-shadow 0.22s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 0 0 2px #2BE3BF, 0 2px 22px #2BE3BF33;
  transform: translateY(-3px) 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;
  margin-bottom: 20px;
  background: #F5F7FA;
  box-shadow: 0 2px 14px #2BE3BF25;
  border-radius: 13px;
  border-left: 5px solid #2BE3BF;
  color: #232B38;
  max-width: 640px;
  position: relative;
  transition: box-shadow 0.19s, border-color 0.17s;
}
.testimonial-card p {
  color: #232B38;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #205969;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 0 0 2px #2BE3BF33,0 6px 22px #2BE3BF33;
  border-color: #1C7ED6;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #2D3C4D;
  gap: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 12px #232B3840;
  padding: 22px 18px;
  min-width: 180px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border-left: 4px solid #2BE3BFcc;
  transition: box-shadow 0.20s,border-color 0.18s;
}
.feature-item img {
  width: 36px; height: 36px; margin-bottom: 7px;
}
.feature-item h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2px;
}
.feature-item p {
  color: #AAB8C2;
  font-size: 1rem;
}
.feature-price {
  display: inline-block;
  color: #2BE3BF;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 7px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: var(--neon-shadow);
  border-color: #1C7ED6;
}

/* Alternate service-card for .service-list */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-item {
  background: #232B38;
  border-radius: 13px;
  box-shadow: 0 2px 12px #1c7ed622;
  padding: 24px 20px;
  flex: 1 1 220px;
  color: #F5F7FA;
  margin-bottom: 20px;
  border-left: 5px solid #2BE3BFcc;
  min-width: 210px;
  transition: box-shadow 0.18s,border-color 0.16s;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 4px 20px #2BE3BF33,0 0 0 2px #2BE3BF55;
  border-color: #1C7ED6;
}
.service-item h3 { margin-bottom: 10px; }
.service-item strong {
  color: #2BE3BF;
  font-size: 1.06rem;
  margin-top: 8px;
}

/*********
 Responsive pattern for content flex containers
***********/
@media (max-width: 768px) {
  .feature-grid, .service-list, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
}
@media (min-width: 769px) {
  .feature-grid, .service-list, .content-grid, .card-container {
    flex-direction: row;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --------------------------------------------------
   ABOUT, LEGAL, THANK-YOU SPECIAL STYLES
--------------------------------------------------- */
.legal, .about, .thank-you {
  background: #253347;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 36px 16px 36px 16px;
  box-shadow: 0 2px 16px #2BE3BF18;
}
@media (min-width: 900px) {
  .legal, .about, .thank-you {
    padding: 54px 40px 54px 40px;
    margin-bottom: 80px;
  }
}

/***********
   CONTACT STYLES
***********/
.contact-info {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info li {
  font-size: 1.02rem;
  color: #2BE3BF;
  background: rgba(45,60,77,0.14);
  padding: 9px 12px;
  border-radius: 8px;
  margin-bottom: 5px;
}
.contact-info a { color: #1C7ED6; font-weight: 700; }

/***********
   CTA SPECIAL
***********/
.section.cta {
  background: #17202A;
  border-radius: 16px;
  box-shadow: 0 2px 16px #2BE3BF18;
  padding:40px 22px;
  margin-bottom: 60px;
  margin-top: 28px;
  text-align: center;
}
.section.cta h2 { color: #fff; }

/**********
   FOOTER
***********/
footer {
  background: #232B38;
  border-top: 2px solid #2BE3BF22;
  padding: 28px 0 8px 0;
  color: #AAB8C2;
  font-size: 0.96rem;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-nav img { width: 42px; margin-right: 12px; border-radius: 6px; }
.footer-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-nav nav a {
  color: #AAB8C2;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s, text-shadow .12s;
}
.footer-nav nav a:hover, .footer-nav nav a:focus {
  color: #2BE3BF;
  text-shadow: 0 2px 10px #2BE3BF55;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links a {
  color: #2BE3BF;
  font-size: 0.97rem;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.02em;
  transition: text-decoration 0.18s, color 0.18s;
}
.footer-links a:hover, .footer-links a:focus { color: #fff; text-decoration: underline; }
.footer-contact {
  font-size: 0.96rem;
  color: #AAB8C2;
}
footer address {
  font-style: normal;
  color: #fff;
}
@media (min-width: 900px) {
  footer .content-wrapper {
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer-nav,
  .footer-links,
  .footer-contact {
    flex: 1 1 240px;
  }
}

/* --------------------------------------------------
   MOBILE NAVIGATION (BURGER MENU)
--------------------------------------------------- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2BE3BF;
  color: #17202A;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  margin-left: auto;
  transition: background 0.18s, box-shadow 0.16s, color .16s;
  box-shadow: 0 2px 12px #2BE3BF33;
  margin-right: 2px;
  z-index: 2002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1C7ED6;
  color: #fff;
  box-shadow: var(--neon-shadow);
}
@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 388px;
  height: 100vh;
  background: #232B38df;
  box-shadow: -8px 0 40px #2BE3BF1f;
  z-index: 3006;
  display: flex;
  flex-direction: column;
  transform: translateX(104%);
  transition: transform 0.35s cubic-bezier(.31,.79,.49,1);
  pointer-events: none;
}
.mobile-menu.open {
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.0rem;
  color: #fff;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 20px 18px 12px 0;
  padding: 4px 8px;
  border-radius: 50%;
  background: #2BE3BF;
  color: #17202A;
  box-shadow: 0 2px 12px #2BE3BF22;
  transition: background .16s, color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1C7ED6;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-left: 20px;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.2rem;
  color: #F5F7FA;
  padding: 10px 0 10px 8px;
  border-radius: 8px;
  width: calc(100% - 16px);
  margin-bottom: 4px;
  transition: background 0.16s, color 0.15s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2BE3BF44;
  color: #2BE3BF;
}
@media (min-width: 900px) {
  .mobile-menu { display: none; }
}


/* Hide main menu + show cta button appropriately on mobile */
@media (max-width: 899px) {
  .main-nav ul,
  .main-nav .cta-btn {
    display: none !important;
  }
}

/* If menu open, overlay on rest of site */
.mobile-menu.open:after {
  content: '';
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #0005;
  z-index: -1;
  pointer-events: none;
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER & SETTINGS MODAL
--------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 7999;
  background: #232B38;
  color: #F5F7FA;
  box-shadow: 0 -1px 25px #2BE3BF32;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 14px 20px 18px;
  font-size: 1rem;
  gap: 16px;
  border-top: 2px solid #2BE3BF22;
  animation: cookieSlideIn .52s cubic-bezier(.11,.93,.56,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  max-width: 680px;
  flex: 1 1 300px;
  color: #AAB8C2;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  border: none;
  padding: 10px 22px;
  color: #232B38;
  background: var(--btn-gradient);
  margin-left: 0;
  transition: background .15s, color .13s, box-shadow .17s;
  box-shadow: 0 1px 9px #2BE3BF1A;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: var(--btn-gradient-hover);
  color: #fff;
  box-shadow: var(--neon-shadow);
}
.cookie-banner .cookie-settings {
  background: #253347;
  color: #2BE3BF;
  border: 1px solid #2BE3BF88;
  box-shadow: none;
  margin-left: 0;
  padding: 10px 20px;
  transition: background .15s, color .12s, border .14s;
}
.cookie-banner .cookie-settings:focus,
.cookie-banner .cookie-settings:hover {
  background: #2BE3BF;
  color: #17202A;
  border-color: #1C7ED6;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 7px 18px 7px;
  }
  .cookie-banner-actions {
    margin-left: 0; width: 100%; justify-content: flex-start;
  }
}

.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(23, 32, 42, 0.79);
  z-index: 8000;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .4s;
}
@keyframes fadeInModal {
  from { opacity: 0.1; }
  to { opacity: 1; }
}
.cookie-modal {
  min-width: 290px; max-width: 94vw; width: 420px;
  background: #253347;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px #2BE3BF33;
  padding: 32px 28px 29px 28px;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 30px;
  position: relative;
  animation: modalSlideIn .44s cubic-bezier(.12,.85,.43,1.13);
}
@keyframes modalSlideIn {
  from { transform: translateY(60px) scale(.98); opacity: 0.41; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 12px;
  background: #2BE3BF;
  color: #17202A;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  padding: 4px 11px 4px 11px;
  box-shadow: 0 1px 8px #2BE3BF22;
  cursor: pointer;
  transition: background .15s, color .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #1C7ED6; color: #fff;
}
.cookie-modal h3 {
  color: #2BE3BF; font-size: 1.19rem; margin-bottom: 10px; font-weight: 700;
}
.cookie-category {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.cookie-category strong { font-weight: 700; font-size: 1.04rem; color: #fff; margin-right: 8px; }
.cookie-category input[type="checkbox"] {
  accent-color: #2BE3BF;
  width: 19px;
  height: 19px;
  border-radius: 5px;
  margin-right: 11px;
}
.cookie-modal-actions {
  display: flex; gap: 14px; width: 100%;
  margin-top: 14px; flex-wrap: wrap;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 23px;
  padding: 9px 20px;
  background: var(--btn-gradient);
  color: #232B38;
  border: none;
  transition: background .13s, color .12s, box-shadow .13s;
  box-shadow: 0 1px 7px #2BE3BF29;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--btn-gradient-hover);
  color: #fff;
  box-shadow: var(--neon-shadow);
}

/* Essential cookies always enabled, show as disabled */
.cookie-category input[type="checkbox"][disabled] {
  accent-color: #AAB8C2;
  opacity: 0.52;
  cursor: not-allowed;
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 22px 8px 18px 8px;
    width: 96vw;
    min-width: 0;
    font-size: .96rem;
  }
}

/* --------------------------------------------------
   MICRO-ANIMATIONS & FOCUS STATES
--------------------------------------------------- */
.cta-btn, .feature-item, .service-item, .card, .testimonial-card, .footer-nav nav a, .footer-links a, .mobile-nav a, .main-nav ul li a, .cookie-banner button, .cookie-modal-actions button, .cookie-modal-close {
  outline: none;
}
:focus-visible {
  box-shadow: 0 0 0 2px #2BE3BF, 0 2px 10px #2BE3BF11;
  outline: none;
  z-index: 10;
}

/* --------------------------------------------------
   TYPOGRAPHY SPACING & UTILITY CLASSES
--------------------------------------------------- */
ul, ol { margin-left: 0; margin-bottom: 17px; }
ul li, ol li {
  padding-left: 0;
  margin-bottom: 8px;
  font-size: 1.01rem;
  color: #AAB8C2;
}
.text-section ul li {
  margin-bottom: 10px;
  padding-left: 0.8em;
  position: relative;
}
.text-section ul li:before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: 8px;
  background: #2BE3BF;
  box-shadow: 0 0 4px #2BE3BF;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

hr {
  border: none;
  height: 1px;
  background: #2BE3BF26;
  margin: 36px 0;
}

/***** Utility for cards, grids, sections *****/
.card, .testimonial-card, .feature-item, .service-item {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .service-list, .content-grid {
  gap: 24px;
}

/*****  Hide visually-only elements *****/
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --------------------------------------------------
   SCROLLBARS (Futuristic Thin)
--------------------------------------------------- */
body::-webkit-scrollbar {
  width: 7px;
  background: #17202A;
}
body::-webkit-scrollbar-thumb {
  background: #2BE3BF88;
  border-radius: 6px;
}

/* --------------------------------------------------
   INPUTS
--------------------------------------------------- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #253347;
  color: #fff;
  border-radius: 8px;
  border: 1px solid #2BE3BF44;
  padding: 12px 14px;
  margin-bottom: 16px;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #2BE3BF;
  outline: none;
}

/* --------------------------------------------------
   MISC
--------------------------------------------------- */
::-webkit-input-placeholder { color: #AAB8C2; opacity:1; }
::-moz-placeholder          { color: #AAB8C2; opacity:1; }
:-ms-input-placeholder      { color: #AAB8C2; opacity:1; }
::placeholder              { color: #AAB8C2; opacity:1; }

/* --------------------------------------------------
   RESPONSIVE ADJUSTMENTS
--------------------------------------------------- */
@media (max-width: 1140px) {
  .container {
    max-width: 98vw;
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .section { margin-bottom: 38px; padding: 20px 7px; }
  footer { padding: 16px 0 7px; font-size: 0.93rem; }
}
@media (max-width: 600px) {
  .section, .legal, .about, .thank-you {
    margin-bottom: 30px;
    padding: 20px 2px 20px 2px;
    border-radius: 8px;
  }
  .feature-item, .testimonial-card, .service-item { border-radius: 7px; }
  .hero { padding-top: 24px; padding-bottom: 24px; border-radius: 9px;}
  .footer-nav img { width: 32px; }
}

/****** Print ******/
@media print {
  body { background: #fff !important; color: #232B38; }
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}

/* --------------------------------------------------
 FONT LOAD (googlefonts fallback suggestion) 
--------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');