/*--- 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,
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 {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #0e1820;
  color: #dbe7f7;
  scroll-behavior: smooth;
  min-height: 100%;
}
body {
  font-size: 16px;
  background: linear-gradient(135deg, #182946 0%, #214159 80%);
  background-repeat: no-repeat;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.7;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #F37335;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #FFD392;
  outline: none;
  text-shadow: 0 0 3px #F37335,0 0 8px #fff1e0;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

/*--- TYPOGRAPHY ---*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 0 12px #243c57, 0 0 2px #111;
}
h2 {
  font-size: 2rem;
  color: #F37335;
  margin-bottom: 18px;
  text-shadow: 0 0 7px #F37335, 0 0 2px #fff;
}
h3 {
  font-size: 1.4rem;
  color: #FFF8F2;
  margin-bottom: 10px;
}
h4,h5,h6 {
  font-size: 1.1rem;
  color: #fff;
}
p, li, table, blockquote {
  font-size: 1rem;
  color: #dbe7f7;
}
strong {
  color: #FFD392;
  font-weight: 700;
}
blockquote {
  border-left: 4px solid #F37335;
  color: #fff;
  padding-left: 18px;
  font-style: italic;
}

/*--- GLOBAL CONTAINERS ---*/
.container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: rgba(22,38,56,0.84);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(18,32,48,0.22),0 1.5px 9px 0 #11234533;
  padding: 40px 32px;
  margin-bottom: 40px;
}
@media (max-width: 640px){
  .content-wrapper{
    padding: 22px 10px;
    margin-bottom: 24px;
  }
}

/*--- LAYOUT SPACING (MANDATORY CLASSES) ---*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 265px;
  background: #1c2636;
  border-radius: 16px;
  box-shadow: 0 4px 20px #11234544, 0 1px 3px #22242870;
  padding: 28px 24px;
  transition: box-shadow .22s, transform .22s;
  border: 1.5px solid #233255;
}
.card:hover, .card:focus {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 6px 32px #18396065, 0 1px 12px #F3733560;
  z-index: 2;
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #FFF8F2;
  color: #242434;
  border-radius: 18px;
  box-shadow: 0 8px 24px #18396031, 0 1px 3px #ffd6c340;
  border: 1px solid #F37335;
  min-width: 250px;
  max-width: 330px;
  margin-bottom: 20px;
  transition: box-shadow .22s, border-color .19s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 14px 44px #f3733530, 0 2px 8px #ffcbad60;
  border-color: #214159;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.feature-grid > div {
  background: #1c283b;
  border-radius: 14px;
  padding: 24px 18px 22px 18px;
  box-shadow: 0 2px 12px #283e5350;
  flex: 1 1 215px;
  min-width: 210px;
  max-width: 290px;
  margin-bottom: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1.5px solid #21415955;
  transition: box-shadow .2s, border-color .21s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px #F3733534, 0 1.2px 10px #fff8F180;
  border-color: #F37335;
}
@media (max-width: 900px) {
  .feature-grid {
    justify-content: center;
  }
}
@media (max-width: 670px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div {
    max-width: 100%;
  }
}

/***** TABLES (PRICING) *****/
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 34px;
  background: #172435;
  box-shadow: 0 2px 12px #243c5730;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Open Sans', Arial, sans-serif;
}
.pricing-table thead tr {
  background: #214159;
}
.pricing-table th, .pricing-table td {
  padding: 18px 10px;
  border-bottom: 1px solid #2d4560;
  text-align: left;
}
.pricing-table th {
  color: #FFD392;
  font-size: 1.11rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pricing-table td {
  color: #fff;
  font-size: 1rem;
}
.pricing-table tbody tr:nth-child(odd) {
  background: #1b2a3b;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/***** MANDATORY RESPONSIVE FLEX DIRECTION & CONTAINER STYLES *****/
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid {
    flex-direction: column;
    gap: 20px !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 550px) {
  .section {
    padding: 24px 6px;
    margin-bottom: 28px;
  }
}


/***** HEADER/NAVIGATION *****/
header {
  width: 100%;
  background: #192d41ee;
  border-bottom: 2px solid #27496d44;
  box-shadow: 0 2px 12px #15232d33;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 66px;
}
header img {
  height: 56px;
  width: auto;
  margin-right: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #fff;
  font-size: 1.06rem;
  background: transparent;
  border: none;
  padding: 5px 2px;
  border-bottom: 2.5px solid transparent;
  transition: color .17s, border-color .19s;
}
header nav a:hover, header nav a:focus {
  color: #F37335;
  border-color: #FFD392;
}
.cta-button {
  display: inline-block;
  background: #F37335;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 32px;
  margin-left: 18px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 3px 18px #fa7e3565;
  transition: background 0.22s, color 0.19s, box-shadow 0.22s;
  position: relative;
  text-shadow: 0 1px 8px #fff5, 0 0 6px #ff863760;
}
.cta-button:hover, .cta-button:focus {
  background: #FFD392;
  color: #214159;
  box-shadow: 0 7px 38px #ffd39266;
}

/***** MOBILE MENU BUTTONS *****/
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #FFD392;
  margin-left: 18px;
  cursor: pointer;
  z-index: 60;
  transition: color .18s, transform .22s;
  line-height: 1;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #fff;
  transform: scale(1.13);
}
@media (max-width: 960px) {
  header .container nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/***** MOBILE SLIDING MENU OVERLAY *****/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,38,56,0.96);
  backdrop-filter: blur(3px);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.76,0,.24,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 28px 4px 0;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #F37335;
  cursor: pointer;
  transition: color .2s, transform .2s;
  z-index: 10001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD392;
  transform: rotate(90deg) scale(1.13);
}
.mobile-nav {
  margin-top: 28px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding-left: 44px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  background: none;
  padding: 10px 2px;
  border-left: 6px solid transparent;
  transition: color .18s, border-color .2s, background .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFD392;
  border-color: #F37335;
  background: #23335599;
}
@media (min-width: 961px) {
  .mobile-menu {
    display: none !important;
  }
}


/***** MAIN CONTENT OVERRIDES *****/
main {
  width: 100%;
  padding: 0;
  background: transparent;
}

/***** FAQ SEARCH BAR *****/
.faq-search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.faq-search-bar input[type="search"] {
  flex: 1;
  background: #fff8f2cc;
  color: #214159;
  border: 1.5px solid #F3733555;
  border-radius: 12px;
  font-size: 1rem;
  padding: 10px 14px;
  box-shadow: 0 1.5px 7px #FFD39220;
  outline: none;
  transition: border-color .17s;
}
.faq-search-bar input[type="search"]:focus {
  border-color: #F37335;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item {
  background: #132130;
  border-radius: 12px;
  padding: 18px 18px 16px 18px;
  margin-bottom: 8px;
  box-shadow: 0 1px 6px #292e3850;
}
.faq-item h2 {
  color: #F37335;
  font-size: 1.14rem;
  margin-bottom: 9px;
}

/***** ADDRESS, CONTACT, SUPPORT BLOCKS *****/
.text-section, .address-block, .contact-details, .support-contact, .confirmation-block {
  background: #23325530;
  border-radius: 13px;
  padding: 16px 18px;
  margin-bottom: 16px;
  box-shadow: 0 1.5px 7px #21415930;
}
.map-block {
  margin: 22px 0 22px 0;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 1px 8px #FFD39220;
  background: #fff;
}

/***** SERVICE CARDS *****/
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
  width: 100%;
  justify-content: flex-start;
}
.service-cards > div {
  background: #1c2432;
  border-radius: 12px;
  box-shadow: 0 2px 15px #22315738;
  padding: 24px 16px 20px 16px;
  flex: 1 1 220px;
  min-width: 225px;
  margin-bottom: 20px;
  border-left: 4px solid #F37335;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .18s, border-left-color .2s;
}
.service-cards > div:hover {
  box-shadow: 0 2px 40px #F3733522, 0 2px 11px #ffb46755;
  border-left-color: #FFD392;
}
.service-cards h2 {
  margin-bottom: 6px;
  color: #FFD392;
}
@media (max-width: 860px) {
  .service-cards {
    flex-direction: column;
    gap: 16px;
  }
}

/* Info graphics */
.info-graphic {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #102940;
  border-radius: 11px;
  box-shadow: 0 2px 10px #21415933;
  padding: 14px 6px;
}

/***** TESTIMONIAL GRID AND CARDS (MANDATORY ACCESSIBILITY) *****/
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: flex-start;
}
@media (max-width: 720px) {
  .testimonial-grid {
    flex-direction: column;
    gap: 16px;
  }
}
.testimonial-card blockquote {
  color: #1c2630;
  font-size: 1.07rem;
  border-left: 4px solid #F37335;
  padding-left: 13px;
  background: none;
  line-height: 1.6;
}

/***** CONFIRMATION BLOCK (THANKS PAGE) *****/
.confirmation-block {
  background: #FFF8F2;
  color: #1c283b;
  border-radius: 18px;
  box-shadow: 0 3px 23px #FFD39211;
  border: 2px solid #FFD392;
  padding: 32px 20px;
  margin-bottom: 18px;
}
.confirmation-block a {
  margin-top: 16px;
}

/***** FOOTER *****/
footer {
  background: #19314a;
  border-top: 2px solid #21415933;
  box-shadow: 0 -1.5px 8px #21415930;
  width: 100%;
  padding: 0;
  margin-top: 25px;
  color: #dbe7f7;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
  max-width: 1160px;
  padding: 38px 20px 22px 20px;
}
footer img {
  height: 48px;
  margin-right: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #FFD392;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  margin-left: 4px;
  transition: color .18s;
}
footer nav a:hover, footer nav a:focus {
  color: #F37335;
}
.footer-contact {
  font-size: 0.98rem;
  color: #dbe7f7;
  margin-top: 2px;
  line-height: 1.4;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 26px 16px 15px 16px;
  }
  footer img {
    margin-bottom: 11px;
    margin-right: 0;
    height: 40px;
  }
}

/***** BUTTON STYLES (for Cookies, settings, general) *****/
button, .button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  padding: 12px 30px;
  margin: 2px 8px 2px 0;
  background: #214159;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 12px #21415920;
  transition: background .19s, color .17s, box-shadow .19s;
}
button:focus, .button:focus {
  outline: 2px solid #FFD392;
}
button:hover, .button:hover {
  background: #F37335;
  color: #1c283b;
  box-shadow: 0 7px 34px #ffd39233;
}
.cookie-accept-btn {
  background: #F37335;
  color: #fff !important;
  font-weight: 700;
}
.cookie-accept-btn:hover, .cookie-accept-btn:focus {
  background: #FFD392;
  color: #214159 !important;
}
.cookie-reject-btn {
  background: #214159;
  color: #FFD392 !important;
  border: 1.5px solid #FFD392;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #ffd392;
  color: #214159 !important;
}
.cookie-settings-btn {
  background: #fff8f2;
  color: #F37335 !important;
  border: 1.5px solid #F37335;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #fff1e0;
  color: #214159 !important;
  border-color: #FFD392;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #263959;
  color: #fff;
  font-size: 1.09rem;
  box-shadow: 0 -2px 16px #243c5730;
  border-top: 2.5px solid #F3733588;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 28px;
  padding: 20px 10px 16px 12px;
  z-index: 12000;
  transition: transform 0.33s cubic-bezier(.6,0,.4,1), opacity 0.22s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner-content {
  max-width: 520px;
  padding: 0 12px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
@media (max-width: 670px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 17px 8px 12px 8px;
  }
  .cookie-banner-content {
    max-width: 100%;
  }
  .cookie-banner-actions {
    gap: 7px;
  }
}

/***** COOKIE MODAL STYLES *****/
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(24,38,56,0.93);
  z-index: 13000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #FFF8F2;
  color: #203443;
  padding: 38px 22px 28px 22px;
  border-radius: 22px;
  max-width: 420px;
  min-width: 220px;
  width: 94vw;
  box-shadow: 0 8px 60px #F3733538, 0 3px 12px #21415922;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  text-align: left;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  background: none;
  border: none;
  color: #F37335;
  font-size: 2.2rem;
  z-index: 2;
  cursor: pointer;
  transition: color .19s, transform .16s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: #214159;
  transform: rotate(90deg) scale(1.19);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.cookie-category-toggle {
  width: 34px;
  height: 18px;
  border-radius: 20px;
  background: #ffd392;
  border: 1.5px solid #F37335;
  position: relative;
  cursor: pointer;
  transition: background .15s;
}
.cookie-category-toggle[aria-checked="true"] {
  background: #F37335;
}
.cookie-category-toggle-inner {
  display: block;
  position: absolute;
  top: 1.5px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px #25223411;
  transition: left .19s;
}
.cookie-category-toggle[aria-checked="true"] .cookie-category-toggle-inner {
  left: 17px;
}
.cookie-category-label {
  color: #203443;
  font-weight: 600;
  flex: 1;
}

/***** ANIMATION UTILITIES *****/
.fade-in {
  animation: fadeInAnim 0.41s cubic-bezier(.6,0,.4,1);
}
@keyframes fadeInAnim {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: none; }
}

/***** GENERAL UTILITY CLASSES *****/
.text-center { text-align: center; }
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mt-4 { margin-top: 28px; }
.mb-4 { margin-bottom: 28px; }
.gap-2 { gap: 12px; }
.gap-3 { gap: 22px; }

/***** SCROLLBAR & SELECTION (FUTURISTIC ACCENT) *****/
::-webkit-scrollbar {
  width: 8px;
  background: #233255;
}
::-webkit-scrollbar-thumb {
  background: #F37335;
  border-radius: 4px;
}
::selection {
  background: #F37335;
  color: #fff;
}

/***** NEON HIGHLIGHT ACCENT FOR TECH FEEL *****/
.neon {
  color: #fff;
  text-shadow: 0 0 4px #FFD392, 0 0 8px #F37335, 0 0 15px #F37335;
  background: linear-gradient(90deg, #FFD392 7%, #F37335 93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive font resizing for headings */
@media (max-width:740px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.24rem; }
  h3 { font-size: 1.02rem; }
}

/***** RESPONSIVE UTILITIES *****/
@media (max-width:540px) {
  .content-wrapper {
    padding: 12px 3px;
    margin-bottom: 10px;
  }
  .section {
    padding: 13px 3px;
    margin-bottom: 12px;
  }
}
