/* ================== 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, main, section, header, footer, nav, article, aside, details, figcaption, figure, hgroup, menu, output, ruby, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body { 
  line-height: 1.4;
  background: #181c21;
  color: #f5f5f5;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: inline-block; vertical-align: middle; }
a { text-decoration: none; color: #D4AF37; transition: color 0.2s; }
a:hover, a:focus { color: #fff066; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* =========== INDUSTRIAL MODERN THEME VARIABLES ============ */
:root {
  --color-primary: #22354C;
  --color-secondary: #D4AF37;
  --color-accent: #F5F5F5;
  --color-bg-dark: #181c21;
  --color-metal: #8D909A;
  --color-nav: #232833;
  --color-bg-section: #212936;
  --color-footer-bg: #1B1F26;
  --color-shadow: rgba(22,30,44,0.32);
  --radius-card: 12px;
  --shadow-card: 0 3px 16px var(--color-shadow);
  --transition: 0.25s cubic-bezier(.68,.30,.15,1.02);
  --font-display: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
}

/* ============== TYPOGRAPHY & HEADINGS ============== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 1px;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
.text-section h2, .text-section h3 {
  color: var(--color-secondary);
}
p, ul, ol, li, span, a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
p { font-size: 1rem; margin-bottom: 16px; color: #f5f5f5; }
strong { color: var(--color-secondary); font-weight: 700; }

/* ============== GENERAL CONTAINERS & SPACING ============== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
main > section {
  margin-bottom: 60px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section:last-child, main > section:last-child {
  margin-bottom: 0;
}

/* ============== HEADER & NAVIGATION ============== */
header {
  background: var(--color-nav);
  box-shadow: 0 2px 8px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  color: #f5f5f5;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 4px;
  border-bottom: 2px solid transparent;
  letter-spacing: 1.5px;
  transition: color 0.12s, border-color 0.13s;
}
header nav a:hover, header nav a.active {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}
/* CTA Button in header */
.cta-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  cursor: pointer;
  margin-left: 20px;
  box-shadow: 0 2px 8px rgba(212,175,55,0.08);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #f4ce5e;
  color: #161b25;
  box-shadow: 0 6px 24px rgba(212,175,55,0.19);
  transform: translateY(-1px) scale(1.045);
}

/* ============== MOBILE MENU ============== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-secondary);
  cursor: pointer;
  transition: color var(--transition);
  position: relative;
  z-index: 200;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #171a22cc;
  backdrop-filter: blur(7px);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.56,1.59,.79,.87);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 35px 10% 0 10%;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2.2rem;
  cursor: pointer;
  margin-bottom: 25px;
  align-self: flex-end;
  z-index: 1001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
}
.mobile-nav a {
  color: #f5f5f5;
  font-size: 1.35rem;
  font-family: var(--font-display);
  letter-spacing: 1.2px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}

/* Hide desktop nav/CTA btn on mobile */
@media (max-width: 1024px) {
  header nav, header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
}

/* ============== HERO SECTION ============== */
.hero {
  background: linear-gradient(132deg, #232936 30%, #181c21 100%);
  border-bottom: 3px solid var(--color-secondary);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 5px 24px var(--color-shadow);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 230px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 10px #23293699,0 1px 0 #2d3e56;
}
.hero p {
  color: #e2e6ec;
  margin-bottom: 0;
}
.hero .cta-btn {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .hero .container {
    padding: 38px 9px 24px 9px;
  }
}

/* ============== FLEX LAYOUT UTILITIES ============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-section);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.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;
}

/* ============== FEATURE GRID ============== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  width: 100%;
}
.feature-grid > div {
  background: #191d23;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 14px var(--color-shadow);
  min-width: 260px;
  flex: 1 1 260px;
  padding: 26px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition), background var(--transition), transform var(--transition);
  border: 1.5px solid #23293566;
}
.feature-grid > div:hover {
  background: #242633;
  box-shadow: 0 12px 46px #22354c33;
  transform: translateY(-5px) scale(1.03);
}
.feature-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .feature-grid {
    gap: 16px;
  }
  .feature-grid > div {
    min-width: 170px;
    padding: 18px 10px 18px 14px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div {
    width: 100%;
    min-width: unset;
    align-items: flex-start;
  }
}

/* ============== TEXT SECTIONS ============== */
.text-section {
  background: none;
  border-radius: 0;
  padding: 0;
  color: #e4e5eb;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul {
  margin-bottom: 14px;
  padding-left: 22px;
  list-style: disc;
}
.text-section li {
  margin-bottom: 7px;
  color: #f5f5f5;
  line-height: 1.5;
}
.text-section a {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
  font-weight: 500;
  transition: color var(--transition), border-color var(--transition);
}
.text-section a:hover {
  color: #fff;
  border-color: #fff;
}

/* ============== OFFER / LISTS ============== */
ul, ol {
  margin-bottom: 14px;
  margin-left: 18px;
  color: #ededed;
}
ul > li, ol > li {
  margin-bottom: 7px;
  padding-left: 6px;
  letter-spacing: .1px;
}
li strong {
  font-weight: 700;
}

/* ============== TESTIMONIALS ============== */
.testimonial-card {
  background: #f5f5f5;
  color: #22354C;
  border-left: 7px solid var(--color-secondary);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 12px #22354c24;
  margin-bottom: 20px;
  margin-top: 10px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px #22354c38;
  border-color: #e6c04b;
}
.testimonial-card p {
  color: #22354C;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: #333940;
  font-size: 0.97rem;
  font-weight: 600;
}
@media (max-width: 840px) {
  .testimonial-card { padding: 14px 14px; }
}

/* ============== BUTTONS & LINK STYLES ============== */
button, .cta-btn {
  appearance: none;
  outline: none;
}
button:active, .cta-btn:active { opacity: .98; }

/* ============== FOOTER ============== */
footer {
  width: 100%;
  background: var(--color-footer-bg);
  color: #e7e7e7;
  font-size: 1rem;
  letter-spacing: .1px;
  padding-top: 34px;
  padding-bottom: 18px;
  box-shadow: 0 -2px 12px #181a21aa;
}
footer .container {
  display: flex;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}
.footer-about {
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav {
  flex: 2 1 340px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: #e9e4d6;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .6px;
  margin-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.17s, border-color 0.15s;
}
.footer-nav a:hover {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
}
.footer-contact {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.footer-contact li {
  color: #f5f5f5;
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 0;
}
.footer-contact li img {
  height: 20px;
  width: 20px;
  filter: grayscale(100%) brightness(1.8);
}
.footer-social {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-top: 19px;
}
.footer-social a img {
  filter: brightness(1.45) contrast(.8) grayscale(55%);
  width: 28px;
  height: 28px;
  transition: filter 0.21s;
}
.footer-social a:hover img {
  filter: none;
}
@media (max-width: 1024px) {
  footer .content-wrapper { flex-direction: column; gap: 27px; }
  .footer-about, .footer-contact, .footer-nav { flex: 1 1 100%; }
}
@media (max-width: 650px) {
  footer { padding-top: 20px; }
  footer .container { padding: 0 5px; }
  footer .content-wrapper { gap: 12px; }
}

/* ============ RESPONSIVE FLEX — FOR LAYOUTS ============= */
@media (max-width: 900px) {
  .content-wrapper { gap: 20px; }
}
@media (max-width: 768px) {
  .content-wrapper, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .footer-contact li { font-size: 0.96rem; }
}

/* ============== CARD ELEMENTS ============== */
.card {
  background: var(--color-bg-section);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 22px 18px;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1.5px solid #23293554;
  margin-bottom: 20px;
}
.card:hover {
  box-shadow: 0 7px 32px #22354c48;
  transform: translateY(-4px) scale(1.024);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* ============== COOKIE CONSENT BANNER + MODAL ============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #252A34fa;
  color: #f5f5f5;
  box-shadow: 0 -4px 12px #181b217e;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 20px 22px 18px 22px;
  animation: fadeUpCookieBanner 0.5s 1;
}
@keyframes fadeUpCookieBanner {
  0% { transform: translateY(64px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #f5f5f5;
  font-size: 1rem;
  margin-bottom: 6px;
  text-align: center;
}
.cookie-btns {
  display: flex;
  gap: 18px;
  margin-top: 0;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-bottom: 0;
  transition: background var(--transition), color var(--transition);
}
.cookie-accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-accept:hover { background: #e6c04b; color: #181c21; }
.cookie-reject {
  background: #232936;
  color: #f5f5f5;
  border: 1.2px solid #D4AF37;
}
.cookie-reject:hover { background: #383f4c; color: var(--color-secondary); }
.cookie-settings {
  background: transparent;
  color: var(--color-secondary);
  border: 1.2px solid #d4af37;
}
.cookie-settings:hover { background: #333c4a; color: var(--color-secondary); }

/* Cookie modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #232936cc;
  z-index: 2050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-backdrop.open { opacity: 1; pointer-events: all; }
.cookie-modal {
  min-width: 320px;
  max-width: 95vw;
  background: #1e232d;
  color: #f5f5f5;
  border-radius: 16px;
  box-shadow: 0 15px 40px #22354c79;
  padding: 38px 22px 22px 22px;
  z-index: 2100;
  animation: popCookieModal .36s cubic-bezier(.5,.67,.5,1.5) 1;
}
@keyframes popCookieModal {
  0% { transform: scale(.85) translateY(40px); opacity: 0; }
  85% { transform: scale(1.07) translateY(-2px); }
  100% { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.15rem;
  color: var(--color-secondary);
  margin-bottom: 12px;
  margin-top: 0;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 9px 0 0 0;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 16px;
  height: 16px;
}
.cookie-modal-btns {
  margin-top: 22px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal .cookie-accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-modal .cookie-reject {
  background: #232936;
  color: #f5f5f5;
  border: 1.2px solid #D4AF37;
}
.cookie-modal .cookie-settings {
  background: transparent;
  color: var(--color-secondary);
  border: 1.2px solid #d4af37;
}
.cookie-toggle-locked {
  color: #aaa;
  font-size: 0.98rem;
  margin-left: 10px;
}

@media (max-width: 600px) {
  .cookie-banner { padding: 12px 7px 12px 7px; }
  .cookie-modal { padding: 19px 5px 15px 5px; min-width: 90vw; }
}

/* ============== ANIMATIONS & MICROINTERACTIONS ============== */
.cta-btn, button, .feature-grid > div, .card, .testimonial-card, header nav a, .footer-nav a, .mobile-nav a {
  transition: color 0.21s, background 0.21s, border-color 0.19s, box-shadow 0.15s, transform 0.19s;
}

/* ============== SCROLLBAR (Custom, for modern industrial look) ============ */
::-webkit-scrollbar {
  width: 11px;
  background: #222633;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, #232936 50%, #363a45 100%);
  border-radius: 16px;
  border: 2px solid #222633;
}
::-webkit-scrollbar-thumb:hover { background: #444b56; }

/* ============= PLACEHOLDER & FORM ELEMENTS ================= */
::placeholder {
  color: #464b54;
  opacity: 1;
}
input, textarea, select {
  background: #232936;
  color: #f5f5f5;
  border-radius: 8px;
  border: 1.3px solid #394057;
  padding: 12px 15px;
  margin-bottom: 12px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(22,30,44,0.07);
  transition: border-color 0.19s, box-shadow 0.11s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
  outline: none;
  box-shadow: 0 0 0 2px #d4af3722;
}

/* ================ MEDIA QUERIES EXTRAS ================ */
@media (max-width: 420px) {
  html { font-size: 15px; }
  .hero, .section { padding: 14px 3px; }
  .feature-grid > div { padding: 11px 4px 15px 9px; }
  .footer-social { margin-top: 7px; gap: 11px; }
}
