/* 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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #181E24;
  color: #E5EAF1;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #FDB813;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #fffcc2;
  text-decoration: underline;
}
strong, b {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Impact, 'Arial Narrow Bold', Arial, sans-serif;
  font-weight: 700;
  color: #E5EAF1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; line-height:1.15; margin-bottom: 24px; }
h2 { font-size: 1.5rem; line-height:1.2; margin-bottom: 20px; }
h3 { font-size: 1.125rem; line-height:1.2; margin-bottom: 12px; }

.subheadline {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: #AAB8C4;
  margin-bottom: 20px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- LAYOUT/FLEX SPACING ----- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #212832;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(16,55,92,0.12);
  border: 1px solid #232D3E;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, border 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(253,184,19,0.18);
  border: 1.5px solid #FDB813;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  gap: 12px;
}

.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;
}

/* Feature Items & Grids */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 20px 0;
}
.features-grid > div {
  background: #232D3E;
  border-radius: 12px;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 350px;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 9px rgba(16,55,92,0.08);
  border: 1.5px solid #232D3E;
  margin-bottom: 20px;
  transition: border 0.2s, box-shadow 0.25s;
}
.features-grid > div:hover {
  border: 1.5px solid #FDB813;
  box-shadow: 0 6px 16px rgba(253,184,19,0.11);
}
.features-grid img {
  width: 44px;
  height: 44px;
  filter: grayscale(15%) brightness(1.2) drop-shadow(0 2px 4px #181E24cc);
}
.features-grid h3 {
  font-size: 1.1rem;
  color: #FDB813;
  margin-bottom: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----- BUTTONS ----- */
.cta-btn, .cookie-btn {
  font-family: 'Oswald', Impact, 'Arial Narrow Bold', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #10375C;
  background: linear-gradient(90deg,#FDB813 75%,#eab200 100%);
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  margin-top: 18px;
  margin-bottom: 0;
  box-shadow: 0 2px 7px rgba(253,184,19,0.09);
  cursor: pointer;
  transition: background 0.19s, color 0.14s, transform 0.12s, box-shadow 0.17s;
  text-transform: uppercase;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cookie-btn:hover {
  background: #FFEBC8;
  color: #181E24;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 7px 24px 0 rgba(253,184,19,0.23);
}
.cta-btn:focus, .cookie-btn:focus {
  outline: 2.5px solid #FDB813;
}

/* ----- HEADER & NAVIGATION ----- */
header {
  background: #181E24;
  border-bottom: 1.5px solid #232D3E;
  box-shadow: 0 4px 16px rgba(16,55,92,0.07);
  position: sticky;
  top: 0;
  z-index: 120;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 72px;
  gap: 22px;
  padding: 12px 20px 8px 20px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  color: #E5EAF1;
  font-family: 'Oswald', Impact, 'Arial Narrow Bold', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.22s;
}
header nav a:hover, header nav a.active {
  color: #FDB813;
  border-bottom: 2px solid #FDB813;
}
header .cta-btn {
  font-size: 1rem;
  margin: 0 0 0 16px;
  padding: 10px 20px;
}
.mobile-menu-toggle {
  background: #1A2430;
  color: #FDB813;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  line-height: 1;
  padding: 3px 13px 5px 13px;
  cursor: pointer;
  display: none;
  margin-left: auto;
  transition: background 0.18s, color 0.17s;
  z-index: 140;
}
.mobile-menu-toggle:hover {
  background: #FDB813;
  color: #181E24;
}

/* ----- MOBILE MENU OVERLAY ----- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,30,36,0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.6,0,.34,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #FDB813;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 20px 26px 7px 0;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 12;
}
.mobile-menu-close:hover {
  color: #FFFCC2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0 0 36px;
}
.mobile-nav a {
  color: #FDB813;
  font-size: 1.25rem;
  font-family: 'Oswald', Impact, 'Arial Narrow Bold', Arial, sans-serif;
  letter-spacing: 0.05em;
  background: none;
  border-radius: 5px;
  padding: 10px 7px;
  transition: background 0.19s, color 0.17s, padding 0.13s;
  min-width: 180px;
  display: inline-block;
}
.mobile-nav a:active,
.mobile-nav a:hover {
  background: #232D3E;
  color: #fffcc2;
  padding-left: 20px;
}

/* ----- MAIN, SECTIONS, LAYOUT ----- */
main {
  min-height: 63vh;
  background: transparent;
  padding-bottom: 30px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
}

.service-list {
  margin: 0 0 24px 12px;
  padding-left: 0;
  list-style: disc inside;
  color: #AAB8C4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list strong {
  color: #FDB813;
  font-weight: 700;
}

/* ----- TABLE STYLES ----- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: #232D3E;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(16,55,92,0.10);
  overflow: hidden;
}
table caption {
  text-align: left;
  font-family: 'Oswald', Impact, 'Arial Narrow Bold', Arial, sans-serif;
  font-size: 1.1rem;
  color: #E5EAF1;
  margin-bottom: 15px;
}
thead, th {
  background: #181E24;
  color: #FDB813;
}
th, td {
  text-align: left;
  padding: 13px 14px;
  font-size: 1rem;
  border-bottom: 1px solid #232D3E;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ----- TESTIMONIALS ----- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 17px 22px;
  background: #F4F5F7;
  color: #1C2734;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(16,55,92,0.06);
  min-width: 250px;
  max-width: 365px;
  margin-bottom: 20px;
  border-left: 6px solid #FDB813;
  font-size: 1rem;
}
.testimonial-card strong {
  color: #10375C;
  font-family: 'Oswald', Impact, 'Arial Narrow Bold', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.testimonial-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* ----- CONTACT & SOCIAL ----- */
.contact-info {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 10px 0 18px 0;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 13px 0;
}
.footer-social a:hover {
  filter: brightness(1.4);
  transform: translateY(-2px);
}
.note {
  font-size: 0.98rem;
  color: #FDB813;
  margin-top: 6px;
}

/* ----- FOOTER ----- */
footer {
  background: #191F25;
  border-top: 1.5px solid #232D3E;
  box-shadow: 0 -2px 22px rgba(16,55,92,0.11);
  padding: 0 0 7px 0;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  padding: 30px 0 22px 0;
}
.footer-grid nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 1rem;
}
.footer-grid nav a {
  color: #AAB8C4;
  font-size: 1rem;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-bottom 0.16s;
}
.footer-grid nav a:hover {
  color: #FDB813;
  border-bottom: 2px solid #FDB813;
}
.footer-bottom {
  color: #AAB8C4;
  font-size: 0.96rem;
  margin-top: 4px;
}

/* ----- COOKIE CONSENT BANNER & MODAL ----- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #181E24;
  color: #E5EAF1;
  box-shadow: 0 -3px 26px 0 rgba(16,55,92,0.20);
  z-index: 3000;
  padding: 22px 22px 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
  transition: transform 0.30s cubic-bezier(.55,.06,.22,.99), opacity 0.3s cubic-bezier(.6,0,.34,1);
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  padding: 9px 22px;
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 7px;
  background: #FDB813;
  color: #1A2430;
  border: none;
  box-shadow: 0 1px 4px rgba(253,184,19,0.16);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-btn.secondary {
  background: #212832;
  color: #FDB813;
  border: 1.2px solid #FDB813;
}
.cookie-btn.secondary:hover {
  background: #FDB813;
  color: #1A2430;
}
.cookie-btn[disabled] {
  opacity: 0.7;
  pointer-events: none;
}

/* Cookie settings modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,30,36,0.92);
  z-index: 3100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.68,0,.32,1);
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #232D3E;
  color: #E5EAF1;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(16,55,92,0.30);
  padding: 38px 34px 30px 34px;
  width: 95vw;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 3200;
  position: relative;
  animation: popIn 0.35s cubic-bezier(.61, -0.1, .67, 1.02);
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.85) translateY(40px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  color: #FDB813;
  font-size: 1.13rem;
  margin-bottom: 9px;
}
.cookie-modal-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #181E24;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 7px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #E5EAF1;
}
.cookie-toggle {
  width: 46px;
  height: 24px;
  border-radius: 12px;
  background: #AAB8C4;
  position: relative;
  display: inline-block;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #FDB813;
  transition: transform 0.21s cubic-bezier(.7,0,.28,1);
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider {
  transform: translateX(20px);
}
.cookie-modal-close {
  background: none;
  color: #FDB813;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 18px;
  transition: color 0.18s;
}
.cookie-modal-close:hover {
  color: #fffcc2;
}

/* ----- MEDIA QUERIES ----- */
@media (max-width: 1100px) {
  .footer-grid, .content-grid, .features-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
}
@media (max-width: 950px) {
  header .container, .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  header nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid {
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  header nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  section, .section {
    padding: 32px 7px;
    margin-bottom: 42px;
  }
  .features-grid > div {
    min-width: 180px;
    padding: 17px 11px 15px 11px;
  }
  .testimonial-list {
    gap: 14px;
  }
  .footer-grid {
    flex-direction: column;
    gap: 13px;
    padding: 20px 0 9px 0;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 7px 13px 7px;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  .cta-btn {
    font-size: 0.98rem;
    padding: 9px 12px;
  }
}

/* Utility classes */
.hide { display: none !important; }

/* ----- BRAND CUSTOM SCROLLBAR (modern) ----- */
body::-webkit-scrollbar {
  width: 9px;
  background: #232D3E;
}
body::-webkit-scrollbar-thumb {
  background: #10375C;
  border-radius: 12px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #FDB813;
}

/* ----- FOCUS ACCESSIBILITY ----- */
a:focus, button:focus, input:focus {
  outline: 2px solid #FDB813;
  outline-offset: 1px;
}

/* ----- METALLIC/INDUSTRIAL DECORATIVE LINES/EFFECTS (subtle for modern look) ----- */
hr {
  border: none;
  border-top: 1.7px solid #323B49;
  margin: 32px 0 16px 0;
  background: linear-gradient(90deg,#232D3E,#FDB813 60%,#232D3E 100%);
  height: 1px;
}

/* ----- ICONS & IMAGES METALLIC ACCENTS ----- */
.features-grid img, .footer-social img, .contact-info img {
  filter: grayscale(25%) brightness(1.12) drop-shadow(0 2px 3px #181E24cc);
  transition: filter 0.2s;
}
.features-grid > div:hover img, .footer-social a:hover img {
  filter: grayscale(0%) brightness(1.19) drop-shadow(0 4px 8px #FDB81355) saturate(1.10);
}

/* ----- FORMS (if any in the future) ----- */
input[type=text], input[type=email], textarea {
  background: #212832;
  border: 1.2px solid #232D3E;
  color: #E5EAF1;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 7px;
  font-size: 1rem;
  padding: 10px 12px;
  margin-bottom: 16px;
  transition: border 0.15s, box-shadow 0.13s;
}
input[type=text]:focus,
input[type=email]:focus, textarea:focus {
  border: 1.4px solid #FDB813;
  box-shadow: 0 1px 4px #FDB81322;
}

/* ----- ANIMATIONS ----- */
.cta-btn, .cookie-btn {
  transition: background 0.18s, color 0.14s, box-shadow 0.15s, transform 0.1s;
}
.features-grid > div, .card, .testimonial-card {
  transition: box-shadow 0.18s, border 0.15s, transform 0.13s;
}
.features-grid > div:hover, .card:hover, .testimonial-card:hover {
  transform: translateY(-6px) scale(1.025);
}
.footer-social a {
  transition: filter 0.17s, transform 0.13s;
}

/* End of FaxatScapi INDUSTRIAL MODERN global CSS */
