/* 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,
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,
main, 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #18191B;
  color: #F5F5F5;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: #18191B;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #00E7FE;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #27FF94;
}
ul, ol {
  list-style: none;
}

/* CUSTOM PROPERTIES (fallbacks for old browsers) */
:root {
  --primary: #263238;
  --primary-dark: #171C1F;
  --secondary: #7A5C32;
  --accent: #F5F5F5;
  --surface: #23272A;
  --neon: #00E7FE;
  --neon-glow: #27FF94;
  --fg-hero: #F5F5F5;
  --text-dark: #212121;
  --text-light: #F5F5F5;
  --card-bg: #23272A;
  --border-radius: 18px;
  --shadow: 0 4px 32px rgba(0,241,255,0.07), 0 2px 6px rgba(38,50,56,0.12);
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.01em;
  color: var(--fg-hero);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  color: var(--neon);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--neon-glow);
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--fg-hero);
}
p, ul, ol, li {
  font-family: var(--font-body);
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  color: var(--neon);
  font-weight: 700;
}

/* CONTAINER AND SPACING */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* BUTTONS / CTA */
.cta,
button.cta, .footer-navigation .cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  background: linear-gradient(90deg, #00E7FE 0%, #27FF94 100%);
  color: #18191B;
  text-shadow: 0 0 8px rgba(0,231,254,0.1);
  box-shadow: 0 2px 16px rgba(0,231,254,.12);
  margin-top: 10px;
  margin-bottom: 10px;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
}
.cta:hover, .cta:focus, .footer-navigation .cta:hover {
  background: linear-gradient(90deg, #27FF94 0%, #00E7FE 100%);
  color: #18191B;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 32px 0 #00e7fe4d;
  outline: none;
}

button,
button:active,
button:focus {
  font-family: var(--font-body);
  outline: none;
}

/* HEADER & NAVIGATION */
header {
  background: var(--primary-dark);
  box-shadow: 0 1px 16px 0 rgba(0,241,255,0.01);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 16px;
}
header img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--neon);
  padding: 4px 10px;
  border-radius: 8px;
  position: relative;
  transition: color var(--transition), box-shadow var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: #18191B;
  background: var(--neon);
  box-shadow: 0 0 8px #27FF94;
}
.main-nav .cta {
  margin-left: 14px;
  color: #18191B !important;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  background: transparent;
  color: var(--neon);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 16px;
  display: none;
  z-index: 120;
  transition: color var(--transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--neon-glow);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,25,27,.965);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .37s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--neon);
  margin: 22px 32px 0 0;
  cursor: pointer;
  z-index: 201;
  transition: color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--neon-glow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin-top: 40px;
  margin-left: 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--neon);
  text-align: left;
  display: block;
  padding: 10px 0 10px 4px;
  border-radius: 10px;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active
{
  background: var(--neon);
  color: #18191B;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #263238 60%, #171C1F 100%);
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 56px 0 44px 0;
  box-shadow: 0 8px 48px 0 #00e7fe0c;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: var(--fg-hero);
  text-shadow: 0 4px 32px #00e7fe13;
  margin-bottom: 20px;
}
.hero p {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 20px;
  max-width: 640px;
}
.hero .cta {
  box-shadow: 0 0 24px 0 #27FF9440;
  margin-top: 12px;
}

/* FLEXBOX LAYOUTS */
.features, .feature-grid, .card-container, .card-grid, .content-grid, .testimonial-cards, .footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container, .card-grid {
  justify-content: space-between;
  gap: 24px;
}
.content-grid {
  justify-content: space-between;
  gap: 20px;
}
.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: 12px;
  padding: 20px 28px;
  background: var(--surface);
  color: #23272A;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border-left: 4px solid var(--neon);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card p {
  color: #23272A;
  font-size: 1.05rem;
}
.testimonial-card strong {
  color: var(--primary);
}
.testimonial-card:hover {
  border-color: var(--neon-glow);
  box-shadow: 0 0 36px #27FF9440;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SECTION/CONTENT CARDS */
.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px 18px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 4px 48px 0 #00E7FE42;
  transform: translateY(-2px) scale(1.02);
}

/* ICON GRID & FEATURE GRID */
.icon-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 14px;
}
.icon-grid > div, .feature-grid > div {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 34px 22px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 325px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
  margin-bottom: 20px;
  position: relative;
}
.icon-grid > div:hover, .feature-grid > div:hover {
  box-shadow: 0 0 32px #00e7fe3a;
  transform: translateY(-4px) scale(1.03);
}
.icon-grid img, .feature-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
}

/* SPECIAL PREVIEW SECTIONS */
.about-preview, .services-preview {
  background: linear-gradient(115deg, #23272A 80%, #263238 100%);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 32px #00E7FE06;
  margin-bottom: 60px;
  padding: 40px 0;
}
.about-preview h2, .services-preview h2 {
  color: var(--neon-glow);
}
.about-preview a, .services-preview a {
  color: var(--neon);
  font-weight: 600;
  transition: color var(--transition);
}
.about-preview a:hover, .services-preview a:hover {
  color: var(--neon-glow);
  text-decoration: underline;
}

@media (max-width: 800px) {
  .icon-grid, .feature-grid {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
  }
  .icon-grid > div, .feature-grid > div {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

/* FORMATTING FOR LISTS and FAQ */
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
ull li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list > div {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  margin-bottom: 20px;
}
.faq-list h2 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--neon);
}
.faq-list p {
  margin-bottom: 0;
}

/* FOOTER */
footer {
  background: #171C1F;
  padding: 48px 0 20px 0;
  color: var(--accent);
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}
.footer-navigation a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--neon);
  padding: 6px 8px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.footer-navigation a:hover{
  background: var(--neon);
  color: #18191B;
}
.footer-navigation .cta {
  margin-left: 8px;
  background: linear-gradient(90deg, #27FF94, #00E7FE);
  color: #18191B !important;
}
.footer-legal {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 0.98rem;
  justify-content: center;
  margin-bottom: 18px;
  color: #82a1ae;
}
.footer-legal a {
  color: #82a1ae;
  transition: color var(--transition);
}
.footer-legal a:hover,#footer-legal a:focus {
  color: var(--neon);
}
.footer-contact {
  text-align: center;
  color: #D3D6DB;
  font-size: 0.96rem;
  margin-bottom: 0;
  padding-bottom: 12px;
}
.footer-contact span {
  display: inline-block;
  margin: 0 6px 8px 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: #23272A;
  color: var(--accent);
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -4px 32px #00e7fe18;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  z-index: 3000;
  transition: transform .38s cubic-bezier(.4,0,.2,1), opacity .3s linear;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  flex: 2 1 60%;
  font-size: 1rem;
  margin-right: 12px;
}
.cookie-banner__actions {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 10px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-banner__accept {
  background: var(--neon);
  color: #18191B;
  font-weight: 600;
}
.cookie-banner__accept:hover {
  background: var(--neon-glow);
}
.cookie-banner__reject {
  background: #28323d;
  color: var(--neon);
  font-weight: 500;
  border: 1.5px solid var(--neon);
}
.cookie-banner__reject:hover {
  background: #1b1c1f;
}
.cookie-banner__settings {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid var(--neon);
}
.cookie-banner__settings:hover {
  background: var(--neon-glow);
  color: #18191B;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left:0; width: 100vw; height: 100vh;
  background: rgba(38,50,56,0.82);
  z-index: 3500;
  display: none;
  align-items: flex-end;
  justify-content: center;
  animation: none;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeIn .29s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #23272A;
  color: var(--accent);
  padding: 38px 26px 22px 26px;
  border-radius: 20px 20px 0 0;
  width: 100vw;
  max-width: 450px;
  box-shadow: 0 0 32px #00e7fe38;
  animation: slideUp .38s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
@keyframes slideUp {
  from { transform: translateY(50%); } to { transform: translateY(0); }
}
.cookie-modal__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--neon);
}
.cookie-modal__close {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--neon);
  cursor: pointer;
  transition: color var(--transition);
}
.cookie-modal__close:hover {
  color: var(--neon-glow);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0;
  padding: 10px 0;
  border-bottom: 1.5px solid #445;
}
.cookie-category__label {
  font-weight: 500;
}
.cookie-category__toggle {
  accent-color: var(--neon);
  width: 21px;
  height: 21px;
  margin-left: 8px;
}
.cookie-category--essential .cookie-category__toggle {
  pointer-events: none;
  opacity: 0.6;
}
.cookie-modal__actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.cookie-modal__save {
  background: var(--neon);
  color: #18191B;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  padding: 10px 28px;
  cursor: pointer;
}
.cookie-modal__save:hover {
  background: var(--neon-glow);
  color: #18191B;
}
.cookie-modal__cancel {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--neon);
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
}
.cookie-modal__cancel:hover {
  background: #18191B;
}

/* BREADCRUMB, TIMELINE, ROADMAP (OPTIONAL) */
.process-timeline {
  margin: 20px 0 10px 0;
  border-left: 3px solid var(--neon);
  padding-left: 20px;
  color: var(--accent);
  font-size: 1.13rem;
}

/* THANK YOU PAGE */
.thank-you-section {
  background: linear-gradient(90deg, #263238 80%, #1B2228 100%);
  border-radius: 20px;
  margin: 60px 0;
  padding: 60px 0;
  text-align: center;
  box-shadow: var(--shadow);
}
.thank-you-section h1 {
  color: var(--neon-glow);
}
.thank-you-section p {
  margin: 12px 0;
}

/*  GENERAL SECTION SPACING--MANDATORY */
.section, 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* RESPONSIVE DESIGN (MOBILE FIRST) */
@media (max-width: 1100px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .main-nav {
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, section {
    padding: 30px 5px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .text-image-section, .content-grid, .card-container, .icon-grid, .feature-grid, .footer-navigation {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }
  .card, .icon-grid > div, .feature-grid > div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
    gap: 10px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.1rem; }
  .cta, .cookie-banner button, .cookie-modal__save {
    font-size: 0.98rem;
    padding: 10px 16px;
  }
  .cookie-modal {
    padding: 20px 3vw 20px 3vw;
  }
}

/* SMALL UTILITIES */
.text-section ul {
  margin-left: 0;
  padding-left: 0;
}
.text-section li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  color: var(--accent);
}
.text-section img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0px 0px 6px #00e7fe28);
}

/* MODAL OVERLAY UTILITY  */
[hidden] { display: none!important; }

/* MICRO INTERACTIONS */
.cta:active, .cookie-banner__accept:active {
  transform: scale(0.97);
}
.icon-grid > div:active, .feature-grid > div:active, .card:active {
  transform: scale(0.98);
}

/* SCROLLBAR: FUTURISTIC TOUCH */
::-webkit-scrollbar {
  width: 8px;
  background: #1c2227;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #00E7FE44 20%, #27FF9444 80%);
  border-radius: 8px;
}

/* HIGH CONTRAST TEXT FOR TESTIMONIALS/REVIEWS */
.testimonial-card, .testimonial-card p {
  color: #23272A;
  background: #f5f5f5;
}
.testimonial-card strong {
  color: #23272A;
}

/* ACCENTED GRADIENT ELEMENTS, SUBTLE DECORATIVE */
.hero::before {
  content: '';
  pointer-events: none;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, #00E7FE60 0%, transparent 80%);
  filter: blur(48px);
  z-index: 0;
}
@media (max-width: 900px){
  .hero::before{ display:none; }
}

/* TOASTS, ERRORS, SUCCESS (Optional: Not shown) */
.toast-success {
  background: #212121;
  border-left: 6px solid #27FF94;
  color: var(--neon-glow);
}

/* ANCHOR FOCUS RING */
a:focus{ outline: 2px solid #27FF94; outline-offset: 2px;}

/* END OF CSS */
