/* ==========================================================================
   CSS RESET & NORMALIZE (industrial_modern basis)
   ========================================================================== */
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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; background: #181B20; color: #F5F8FC; min-height: 100vh; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }
table { border-collapse: collapse; width: 100%; }

/* =====================================================================
   BRAND & FONT SETUP
   ===================================================================== */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
:root {
  --color-primary: #21406E;
  --color-secondary: #85A3B2;
  --color-accent: #F5F8FC;
  --color-bg-dark: #181B20;
  --color-bg-elevated: #23262B;
  --color-metal: #bfc6ce;
  --color-cta: #1F73B7;
  --color-error: #B63232;
  --color-success: #68B36B;
  --shadow-elevated: 0 4px 24px rgba(33, 43, 60, 0.18), 0 1.5px 3px rgba(62,72,93,0.10);
  --shadow-card: 0 2.5px 12px rgba(15,20,30,0.15);
  --radius-card: 12px;
  --radius-btn: 8px;
  --transition-main: .19s cubic-bezier(.4,0,.2,1);
  --font-display: 'Roboto Slab', serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-dark);
  color: var(--color-accent);
  font-size: 16px;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin: 0 0 16px 0;
  letter-spacing: 0.01em;
  color: var(--color-accent);
  font-weight: 700;
  line-height: 1.19;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
}
strong { color: var(--color-metal); font-weight: 700; }

p, ul, ol {
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}
li { padding-left: 0; margin-bottom: 10px; }

/* Headings in cards/sections */
.section h2 {
  color: var(--color-metal);
  margin-bottom: 24px;
}

/* =============================================================
   LAYOUT + CONTAINERS
   ============================================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-elevated);
  margin-bottom: 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  position: relative;
  transition: box-shadow var(--transition-main), transform var(--transition-main);
}
.card:hover { box-shadow: 0 7px 30px 2px rgba(15,20,30,0.21); transform: translateY(-2px) scale(1.015); }
.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;
  background: #f5f8fc;
  border-radius: var(--radius-card);
  color: #23262B;
  margin-bottom: 20px;
  min-width: 0;
  box-shadow: 0 2px 10px rgba(33,64,110,0.06);
  position: relative;
  transition: box-shadow .16s;
}
.testimonial-card:hover { box-shadow: 0 6px 22px rgba(33,64,110,0.13); }
.testimonial-card p { color: #1d2026; font-size: 1.06rem; margin: 0 0 4px 0; }
.testimonial-card span { font-size: 0.92rem; color: var(--color-metal); font-style: italic; }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  color: var(--color-metal);
}

/* General list item icon style for industrial feel */
.features ul li img, .features ul li svg {
  width: 26px; height: 26px; margin-right: 14px; filter: grayscale(50%) contrast(1.4); opacity: .83;
  display: inline-block; vertical-align: middle;
}
.features ul li {
  display: flex;
  align-items: center;
  background: rgba(41,60,80,0.09);
  border-radius: 7px;
  margin-bottom: 13px;
  font-size: 1.05rem;
  padding: 10px 14px 10px 6px;
  color: var(--color-metal);
}

@media (max-width: 900px) {
  .container { padding: 0 12px; }
  .section { padding: 22px 6px; }
}
@media (max-width: 768px) {
  .content-wrapper, .text-image-section, .content-grid { flex-direction: column; gap: 14px; }
  .testimonial-card { flex-direction: column; gap: 7px; padding: 17px; }
  .card-container, .content-grid { gap: 14px; }
}

/* =====================================================================
   MAIN NAVIGATION & HEADER
   ===================================================================== */
header {
  background: var(--color-bg-elevated);
  box-shadow: 0 1px 12px rgba(33,64,110,.04);
  padding-top: 0.5rem;
  position: relative;
  z-index: 22;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 64px;
}
.main-nav a img {
  width: 170px;
  min-width: 120px;
  height: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav ul li a {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-metal);
  font-size: 1rem;
  padding: 10px 8px;
  border-radius: 6px;
  transition: background .13s, color .13s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: var(--color-accent);
  background: rgba(41,64,110,0.37);
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: var(--radius-btn);
  font-size: 1.09rem;
  padding: 11px 28px;
  margin-left: 22px;
  font-weight: 700;
  letter-spacing: 0.021em;
  box-shadow: 0 2px 14px rgba(33,64,110,0.10);
  border: none;
  cursor: pointer;
  transition: background var(--transition-main), transform var(--transition-main), box-shadow .17s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #183054;
  color: #f5f8fc;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 20px 0 rgba(33,64,110,0.18);
}
.main-nav .cta-primary { margin-left: 30px; }

/* Hide nav on small screens, activate mobile menu */
@media (max-width: 900px) {
  .main-nav ul, .main-nav .cta-primary { display: none; }
  .main-nav a img { width: 110px; }
}

/* =====================================================================
   MOBILE BURGER MENU
   ===================================================================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 17px;
  right: 17px;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.1rem;
  z-index: 90;
  cursor: pointer;
  line-height: 1;
}
.mobile-menu {
  display: none;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; height: 100vh; width: 100vw;
    background: linear-gradient(90deg, rgba(24,27,32,0.97) 88%, #21406e 120%);
    z-index: 1102;
    transform: translateX(-110vw);
    transition: transform 0.32s cubic-bezier(.4,0,.2,1);
    box-shadow: 6px 0 24px rgba(33,64,110,0.13);
  }
  .mobile-menu.open {
    transform: translateX(0);
    transition: transform 0.40s cubic-bezier(.36,0,.2,1);
  }
  .mobile-menu-close {
    background: none;
    border: none;
    color: #bfc6ce;
    font-size: 2.25rem;
    align-self: flex-end;
    margin: 17px 22px 0 0;
    cursor: pointer;
    transition: color var(--transition-main);
  }
  .mobile-menu-close:hover { color: var(--color-accent); }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 32px 24px 24px 35px;
  }
  .mobile-nav a {
    display: flex;
    padding: 14px 18px;
    color: #F5F8FC;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.11rem;
    letter-spacing: 0.01em;
    border-radius: 8px;
    margin-bottom: 8px;
    background: none;
    transition: background .14s, color .11s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus { background: #21273b; color: #85a3b2; }
}

/* Prevent main scroll when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* =====================================================================
   HERO SECTION / LANDING BLOCKS
   ===================================================================== */
.hero {
  background: linear-gradient(110deg, #26334a 90%, #21406E 125%);
  padding: 54px 0 56px 0;
  margin-bottom: 46px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 600px;
}
.hero h1 {
  color: #F5F8FC;
  font-size: 2.7rem;
  text-shadow: 0 2px 14px rgba(33,64,110,.08);
}
.hero p {
  font-size: 1.25rem;
  color: var(--color-metal);
  margin-bottom: 11px;
}
.hero .cta-primary {
  margin-top: 15px;
  font-size: 1.14rem;
}

@media (max-width: 600px) {
  .hero {
    padding: 28px 0 33px 0;
    margin-bottom: 25px;
  }
}

/* =====================================================================
   FEATURES & CARDS
   ===================================================================== */
.features h2, .features ul {
  margin-bottom: 0;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Card-like look for certain list items */
.features ul li {
  border: 1.5px solid #323844;
  font-weight: 500;
  background: rgba(41,60,80,0.13);
}
.features ul li strong {
  color: var(--color-accent);
  font-size: 1.02em;
}

/* =====================================================================
   PRICING TABLE
   ===================================================================== */
.price-list table {
  width: 100%;
  margin-bottom: 24px;
  border-collapse: collapse;
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.price-list th, .price-list td {
  padding: 15px 12px;
  font-size: 1.05rem;
  text-align: left;
  border-bottom: 1px solid #2f3a46;
}
.price-list th {
  font-family: var(--font-display);
  font-weight: 700;
  background: #22324a;
  color: var(--color-accent);
  letter-spacing: 0.01em;
}
.price-list tr:last-child td { border-bottom: none; }
.price-list .hint {
  font-size: 0.93rem;
  color: #85a3b2;
}

@media (max-width: 600px) {
  .price-list th, .price-list td {
    padding: 10px 5px;
    font-size: 1rem;
  }
}

/* =====================================================================
   FAQ ENTRIES
   ===================================================================== */
.faq-entry {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-card);
  margin-bottom: 24px;
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
}
.faq-entry h2 {
  font-size: 1.1rem;
  color: var(--color-metal);
  margin-bottom: 5px;
}
.faq-entry p {
  color: var(--color-accent);
  font-size: 1rem;
}

.faq-list h1 {
  margin-bottom: 12px;
}

/* =====================================================================
   CTA BLOCKS & CALL-TO-ACTION
   ===================================================================== */
.cta-block .cta-primary, .contact-teaser .cta-primary {
  margin: 0 auto;
}

.contact-teaser {
  margin-bottom: 54px;
  background: linear-gradient(93deg, #1f222a 80%, #23262B 100%);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.contact-teaser h2 {
  color: var(--color-metal);
}

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-form-placeholder {
  background: none;
  border-radius: var(--radius-card);
  padding: 8px 0 18px 0;
}
.form-hint {
  font-size: 0.96rem;
  color: #85a3b2;
  margin-top: 5px;
}
.contact ul li { margin-bottom: 7px; }

/* =====================================================================
   LEGAL/INFO PAGES
   ===================================================================== */
.legal h1, .legal h2 {
  color: var(--color-metal);
}
.legal ul {
  margin-bottom: 18px;
  margin-left: 17px;
  list-style-type: disc;
}
.legal ul li {
  margin-bottom: 7px;
  color: var(--color-accent);
}

/* =====================================================================
   THANK YOU PAGE
   ===================================================================== */
.thank-you {
  text-align: center;
  margin: 50px 0 55px 0;
  padding: 38px 12px 30px 12px;
  background: linear-gradient(97deg, #21222d 75%, #21406e 120%);
  border-radius: var(--radius-card);
  box-shadow: 0 7px 30px rgba(33,64,110,0.13);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
footer {
  background: #191E26;
  color: #c4c8cc;
  box-shadow: 0 -1.5px 16px rgba(33,64,110,0.07);
  padding: 28px 0 16px 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #bfc6ce;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 7px 10px;
  border-radius: 5px;
  transition: background .13s, color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F5F8FC;
  background: #21406e;
}
.footer-contact {
  text-align: center;
  color: #919ca9;
  font-size: 0.97rem;
}
.footer-contact a { color: #85a3b2; text-decoration: underline; word-break: break-all; }

@media (max-width: 600px) {
  .footer-nav { gap: 10px; font-size: 0.97rem; }
  .footer-contact { font-size: 0.93rem; line-height: 1.65; }
  footer { padding: 20px 0 9px 0; }
}

/* =====================================================================
   SPACING & FLEXBOX UTILITY CLASSES
   ===================================================================== */
.mb-24 { margin-bottom: 24px !important; }
.flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.flex-col { flex-direction: column; }

/* =====================================================================
   BUTTONS, INTERACTIONS & TRANSITIONS
   ===================================================================== */
button, .cta-primary {
  outline: none;
  border: none;
  font-family: var(--font-display);
  cursor: pointer;
}
button:focus, .cta-primary:focus { outline: 2px solid var(--color-secondary); }

/* General button/inactive state */
button, .btn {
  background: var(--color-bg-elevated);
  color: var(--color-metal);
  border-radius: var(--radius-btn);
  padding: 11px 28px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  transition: background .18s, color .12s, transform .13s, box-shadow .15s;
  box-shadow: 0 2.5px 12px rgba(15,20,30,0.13);
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: #273148;
  color: #f5f8fc;
  transform: translateY(-1px) scale(1.018);
}

/* =====================================================================
   MICRO-INTERACTIONS (INDUSTRIAL)
   ===================================================================== */
a, button, .cta-primary, .card, .testimonial-card {
  transition: background var(--transition-main), color var(--transition-main), box-shadow .14s, transform .15s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* =====================================================================
   COOKIE CONSENT BANNER
   ===================================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1400;
  width: 100vw;
  background: #23262b;
  color: #f5f8fc;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 14px 17px 14px;
  font-size: 1rem;
  box-shadow: 0 -2.5px 16px rgba(33,64,110,0.15);
  border-top: 3px solid var(--color-primary);
  animation: cookieBannerFadeIn .6s cubic-bezier(.6,0,.29,1);
}
@keyframes cookieBannerFadeIn {
  from { opacity: 0; transform: translateY(19px); }
  to { opacity: 1; transform: none; }
}
.cookie-consent-banner .btn {
  margin-left: 12px;
  margin-right: 6px;
  min-width: 108px;
  font-size: 1rem;
}
.cookie-consent-banner .btn-accept {
  background: var(--color-primary);
  color: #F5F8FC;
}
.cookie-consent-banner .btn-accept:hover, .cookie-consent-banner .btn-accept:focus {
  background: #2e4e81;
  color: #fff;
}
.cookie-consent-banner .btn-reject {
  background: #2e353e;
  color: #bfc6ce;
}
.cookie-consent-banner .btn-reject:hover, .cookie-consent-banner .btn-reject:focus {
  background: #181d24;
  color: #F5F8FC;
}
.cookie-consent-banner .btn-settings {
  background: var(--color-secondary);
  color: #14243a;
}
.cookie-consent-banner .btn-settings:hover, .cookie-consent-banner .btn-settings:focus {
  background: #a7bcc9;
  color: #14243a;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 15px 6px;
  }
  .cookie-consent-banner .btn { min-width: 75px; font-size: .97rem; }
}

/* Cookie modal backdrop and box */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1500;
  inset: 0;
  background: rgba(24,27,32,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cmFadeIn .32s;
}
@keyframes cmFadeIn {from{opacity:0;} to{opacity:1;}}
.cookie-modal {
  background: #23262b;
  color: #f5f8fc;
  border-radius: var(--radius-card);
  padding: 32px 20px 20px 20px;
  max-width: 410px;
  width: 97vw;
  box-shadow: 0 12px 46px rgba(33,64,110,0.24);
  animation: cmModalEntry .45s cubic-bezier(.4,.0,.2,1);
  position: relative;
}
@keyframes cmModalEntry {from{transform: scale(0.84) translateY(18px); opacity:0;} to{transform:none; opacity:1;}}
.cookie-modal h3 {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.22rem;
  margin-bottom: 11px;
}
.cookie-modal label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 9px;
  font-size: 1.05em;
  color: var(--color-metal);
  font-weight: 500;
}
.cookie-modal .toggle {
  appearance: none;
  width: 34px; height: 19px;
  background: #23262B;
  border: 1.5px solid #85A3B2;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background .13s, border .14s;
  cursor: pointer;
}
.cookie-modal .toggle:checked {
  background: var(--color-primary);
  border-color: var(--color-secondary);
}
.cookie-modal .toggle::before {
  content: '';
  position: absolute; left: 3px; top: 2px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #bfc6ce;
  transition: transform .14s;
}
.cookie-modal .toggle:checked::before {
  transform: translateX(14px);
  background: #f5f8fc;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 19px;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal-close {
  position: absolute;
  right: 13px;
  top: 13px;
  font-size: 2rem;
  background: none;
  color: #bfc6ce;
  border: none;
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal-close:hover { color: var(--color-secondary); }
.cookie-modal-category-desc {
  font-size: 0.97rem;
  color: #a3b4c3;
  margin-bottom: 9px;
  font-weight: 400;
}
.cookie-modal .category-essential label,
.cookie-modal .category-essential .toggle {
  opacity: .64;
  pointer-events: none;
}

@media (max-width:500px) {
  .cookie-modal {
    padding: 19px 7px 7px 7px;
    max-width: 99vw;
  }
}

/* =====================================================================
   INDUSTRIAL METAL LINES & ACCENTS
   ===================================================================== */
.section, .card, .content-wrapper, .legal, .faq-list, .contact, .thank-you {
  border-left: 3.5px solid var(--color-primary);
  border-bottom: 1.5px solid #2a3442;
}
@media (max-width:700px) {
  .section, .card, .content-wrapper, .legal, .faq-list, .contact, .thank-you {
    border-left-width: 2px;
    border-bottom-width: 1px;
  }
}

/* =====================================================================
   MISC: SCROLLBAR, SELECT, INPUTS etc.
   ===================================================================== */
::-webkit-scrollbar {
  width: 10px; background: #21273b;
}
::-webkit-scrollbar-thumb {
  background: #263252; border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3a4d6e;
}
select, input, textarea {
  background: #23262B;
  color: #f5f8fc;
  border: 1.5px solid #85a3b2;
  border-radius: 7px;
  padding: 8px 12px;
  font-size: 1rem;
  font-family: var(--font-body);
}
input:focus, select:focus, textarea:focus { border-color: var(--color-primary); background: #2c3542; color: #f5f8fc; }

/* =====================================================================
   RESPONSIVE ADJUSTMENTS (mobile-first)
   ===================================================================== */
@media (max-width:600px) {
  body { font-size: 0.98rem; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .card, .faq-entry, .testimonial-card { padding: 11px 9px; }
  .hero .content-wrapper { max-width: 95vw; }
  .footer-contact { line-height: 1.44; }
}

/* --- END --- */