/* ===================================================================
   CSS RESET + BASELINE NORMALIZATION
   =================================================================== */
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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #20272b;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: block;
}
table { border-collapse: collapse; border-spacing: 0; }

/* ===================================================================
   TYPOGRAPHY – Industrial Modern, Font Hierarchy, Contrast
   =================================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:800,700,600,400|Open+Sans:400,600,700&display=swap');
:root {
  --primary: #284B63;
  --primary-dark: #1D3445;
  --secondary: #F9F7F3;
  --background: #20272b;
  --accent: #FF9212;
  --accent-dark: #C66400;
  --steel: #c9d0d5;
  --metal: #49525c;
  --border: #343a40;
  --card-dark: #252B31;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--secondary);
  font-size: 16px;
  background: var(--background);
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.03em;
  color: var(--steel);
  font-weight: 800;
}
h1 { font-size: 2.4rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 1.8rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
.subheadline {
  color: var(--metal);
  font-size: 1.15rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 28px;
}
p, li, th, td {
  font-size: 1rem;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
  color: var(--accent);
}

/* ===================================================================
   LAYOUT, CONTAINER, SECTION SPACING – FLEX ONLY
   =================================================================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 12px rgba(30,34,38, 0.11), 0 0px 1px 1px rgba(32,75,99, 0.08);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  transition: box-shadow 0.22s cubic-bezier(.37,.88,.92,.5);
  min-width: 220px;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(255,146,18,0.14), 0 1px 6px var(--accent-dark);
  border-color: var(--accent);
}

.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: #fff;
  color: #23282e;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(35, 40, 46, 0.08), 0 0.5px 1px 1px rgba(55, 64, 70, 0.09);
  margin-bottom: 24px;
  min-width: 200px;
  border: 1.5px solid var(--border);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.45;
  border-left: 3.5px solid var(--accent);
  padding-left: 17px;
  margin-right: 18px;
  color: #272c2e;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 20px;
}
.feature-grid > div {
  background: var(--card-dark);
  border-radius: 8px;
  box-shadow: 0 2px 9px rgba(40, 75, 99, 0.05); 
  border: 1px solid var(--metal);
  padding: 24px 22px 24px 22px;
  min-width: 210px;
  flex: 1 0 210px;
  transition: box-shadow 0.22s, border-color 0.22s;
}
.feature-grid > div:hover {
  box-shadow: 0 3.5px 17px 2px var(--accent);
  border-color: var(--accent);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: grayscale(35%) contrast(1.15);
}
.unique-features-list li {
  margin-bottom: 7px;
  padding-left: 20px;
  position: relative;
}
.unique-features-list li::before {
  content: '\25A0'; /* steel square */
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 1rem;
  top: 0.16em;
}

/* SECTION SPACING - Cards, testimonials, etc. */
.section > * + * {
  margin-top: 32px;
}

/* ===================================================================
   HEADER, NAVIGATION, BURGER MENU
   =================================================================== */
header {
  background: var(--primary-dark);
  box-shadow: 0 1.5px 14px 0 rgba(28,30,38, 0.12);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}
header img {
  height: 54px;
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--steel);
  padding: 6px 0px;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.02em;
  transition: color 0.18s, border 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  outline: none;
}

/* HEADER CTA BUTTON */
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 32px;
  border: none;
  padding: 11px 28px;
  background: var(--accent);
  color: #1d232a;
  box-shadow: 0 2px 12px rgba(255,146,18,0.10);
  cursor: pointer;
  transition: background 0.23s, color 0.18s, box-shadow 0.25s;
}
.cta.primary {
  background: var(--accent);
  color: #20272b;
}
.cta:hover, .cta:focus, .cta.primary:hover, .cta.primary:focus {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 3px 19px rgba(255,146,18,0.18);
  outline: none;
}

/* Burger Menu Button */
.mobile-menu-toggle {
  position: fixed;
  right: 20px;
  top: 18px;
  z-index: 220;
  width: 48px;
  height: 48px;
  background: var(--card-dark);
  border: none;
  border-radius: 7px;
  color: var(--accent);
  font-size: 2.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(32, 75, 99, 0.18);
  transition: background 0.17s, box-shadow 0.17s, color 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: #fff;
}

/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40, 75, 99, 0.97);
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.39s cubic-bezier(.74,-0.01,.63,1.2);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin-top: 22px;
  margin-left: 18px;
  background: transparent;
  color: var(--accent);
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 58px 0 0 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.5rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.02em;
  transition: color 0.14s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: rgba(255,146,18,0.07);
  outline: none;
}

/* Hide main nav/menu button on desktop, show/hide on mobile */
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===================================================================
   HERO, FEATURES & FLEX LAYOUT PATTERNS
   =================================================================== */
.hero {
  background: linear-gradient(90deg, var(--primary) 70%, var(--background) 100%);
  padding-top: 56px;
  padding-bottom: 56px;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 640px;
}

.features, .feature-grid, .unique-features-list, .feature-item {
  width: 100%;
}
.features .content-wrapper, .feature-grid {
  padding-bottom: 0;
}
.features h2 {
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
button, .cta {
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
}
button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}

/* TABLES */
table {
  width: 100%;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: var(--card-dark);
  color: var(--secondary);
  border-radius: 7px;
  box-shadow: 0 1.5px 8px rgba(40, 75, 99, 0.04);
  overflow: hidden;
  margin-bottom: 18px;
  margin-top: 15px;
}
thead { background: var(--primary-dark); }
th, td {
  padding: 13px 10px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
tr:last-child td { border-bottom: none; }

/* ===================================================================
   ABOUT, CONTACT, FOOTER
   =================================================================== */
footer {
  background: var(--primary-dark);
  color: var(--steel);
  padding: 34px 0 10px 0;
  margin-top: 50px;
  border-top: 3px solid var(--metal);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand img {
  height: 42px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 1rem;
  color: var(--steel);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  padding: 4px 0;
  border-bottom: 1.7px solid transparent;
  transition: color 0.16s, border-color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  border-bottom: 1.7px solid var(--accent);
  outline: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98em;
  margin-top: 2px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  filter: grayscale(50%) brightness(1.1);
}

/* CONTACT DATA ICONS */
.contact-data ul,
.about ul,
.services ul,
.features ul {
  padding-left: 0;
  list-style: none;
}
.contact-data li,
.about li,
.services li,
.features li {
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
  color: var(--secondary);
  font-size: 1.05rem;
}
.contact-data li img {
  position: absolute;
  left: 0;
  top: 4px;
  width: 19px;
  height: 19px;
  filter: grayscale(55%) brightness(1.1);
}

/* ===================================================================
   COOKIE CONSENT BANNER AND MODAL
   =================================================================== */
.cookie-banner {
  position: fixed;
  z-index: 1000;
  left: 0; bottom: 0;
  width: 100vw;
  background: var(--card-dark);
  color: #E5EAF0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 21px 16px 20px 16px;
  box-shadow: 0 -2px 24px 2px rgba(40,75,99,0.19);
  border-top: 2.5px solid var(--metal);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: 1;
  animation: cookiebanner-slidein 0.5s cubic-bezier(.37,.88,.92,.5);
}
@keyframes cookiebanner-slidein {
  0% { transform: translateY(70px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  flex: 1 1 240px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-left: 10px;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 23px;
  border: none;
  background: var(--metal);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin: 0 3px;
  transition: background 0.18s, color 0.18s, box-shadow 0.21s;
}
.cookie-btn.accept {
  background: var(--accent);
  color: #1d232a;
}
.cookie-btn.reject {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--metal);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 2px 17px rgba(255,146,18,0.13);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,37,43,0.72);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--secondary);
  color: var(--primary-dark);
  border-radius: 16px;
  padding: 38px 28px 28px 28px;
  min-width: 320px;
  max-width: 97vw;
  box-shadow: 0 4px 36px 8px rgba(40, 75, 99, 0.16);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.23rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 12px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
}
.cookie-category .toggle {
  width: 38px;
  height: 22px;
  border-radius: 15px;
  background: var(--metal);
  position: relative;
  cursor: pointer;
  margin-left: 7px;
}
.cookie-category .toggle input {
  display: none;
}
.cookie-category .slider {
  position: absolute;
  top: 2px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.17s, background 0.18s;
  box-shadow: 0 2px 5px rgba(40, 75, 99, 0.07);
}
.cookie-category .toggle input:checked + .slider {
  left: 18px;
  background: var(--accent);
}
.cookie-category.essential .toggle {
  background: #adb7c1;
  cursor: default;
}
.cookie-category.essential .slider {
  background: #fff;
}
.cookie-modal .cookie-btns {
  justify-content: flex-end;
  gap: 13px;
}
.cookie-modal .cookie-btn {
  font-size: 1.02rem;
  padding: 8px 23px;
}

/* ===================================================================
   RESPONSIVE DESIGN: Mobile-first
   =================================================================== */
@media (max-width: 1023px) {
  .footer .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .hero {
    padding-top: 37px;
    padding-bottom: 37px;
    min-height: 225px;
  }
  .hero .content-wrapper {
    padding: 0;
    max-width: 100%;
  }
  .main-nav {
    display: none !important;
  }
  .section {
    padding: 30px 7px;
    margin-bottom: 36px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 10px;
    font-size: 0.97rem;
  }
  .footer .container, footer .container {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 14px;
  }
  .content-grid, .card-container {
    flex-direction: column !important;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}
@media (max-width: 560px) {
  html { font-size: 14px; }
  h1 { font-size: 1.5rem; margin-bottom: 13px; }
  h2 { font-size: 1.15rem; margin-bottom: 10px; }
  .hero {
    min-height: 145px;
    padding-top: 18px;
    padding-bottom: 24px;
  }
  .testimonial-card {
    padding: 10px;
    margin-bottom: 13px;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(35,40,46,0.06);
  }
  .card {
    padding: 15px 9px;
    border-radius: 7px;
    margin-bottom: 13px;
  }
}

/* ===================================================================
   MICRO INTERACTIONS: HOVER, FOCUS, TRANSITIONS
   =================================================================== */
a {
  transition: color 0.18s, border 0.18s;
}
a:focus, button:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
}
.card, .feature-grid > div, .testimonial-card, .cta, .cookie-btn {
  transition: box-shadow 0.18s, border-color 0.18s, background 0.15s, color 0.12s;
}
.card:active, .feature-grid > div:active, .testimonial-card:active {
  box-shadow: 0 0 4px 1.5px var(--accent);
  border-color: var(--accent-dark);
}

/* ===================================================================
   INDUSTRIAL MODERN ACCENTS: BORDERS, SHADOWS, METALLIC
   =================================================================== */
h1, h2, h3, h4 {
  text-shadow: 0 1.1px 0 var(--border), 0 2.9px 8px rgba(66, 108, 135, 0.11);
}
section, .card, .feature-grid > div {
  border-radius: 13px;
}

.card {
  border: 1.7px solid var(--metal);
  background: linear-gradient(112deg, var(--card-dark) 98%, #323a45 100%);
}
.feature-grid > div {
  border: 1.2px solid var(--metal);
}

/* Simulate brushed metal accent for hero bar */
.hero {
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 9px 60px 0 rgba(200,150,100, 0.10) inset;
}
/* Nav bar top with metallic shimmer */
header {
  border-bottom: 3px solid #8e979e;
}

/* ===================================================================
   UTILITY CLASSES
   =================================================================== */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 18px; }
.mb-2 { margin-bottom: 18px; }
.mt-4 { margin-top: 38px; }

/* ===================================================================
   PRINT (Hide nav/menu/banner)
   =================================================================== */
@media print {
  header, .main-nav, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}

/* ===================================================================
   END OF STYLE.CSS –
   By: Senior CSS Dev, for Phantasm Glide, industrial_modern aesthetic 
   =================================================================== */