/* =======================
   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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-family: 'Lato', Arial, sans-serif;
  background-color: #191C1A;
  color: #E2F5D5;
  line-height: 1.5;
  scroll-behavior: smooth;
  min-height: 100%;
  height: 100%;
}

body {
  font-size: 16px;
  background: #191C1A;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  min-width: 320px;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: block;
}

a {
  color: #F2B705;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E2F5D5;
}

/* ===================
   BRAND TYPOGRAPHY
   =================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  margin-bottom: 16px;
  color: #E2F5D5;
  letter-spacing: 1px; /* urban/industrial touch */
  font-weight: 700;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.12;
  text-shadow: 0 2px 8px #12281A88;
  color: #F2F2F2;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  color: #E2F5D5;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: #F2B705;
}

p, ul, ol, li {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

strong {
  color: #F2B705;
  font-weight: 700;
}

/* ===================
   LAYOUT & SPACING
   =================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.section,
section:not(.hero):not(.policy):not(.thank-you):not(.testimonials):not(.testimonials-preview):not(.cta) {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.card {
  background: #232323;
  color: #E2F5D5;
  border-radius: 10px;
  box-shadow: 0 2px 18px #11151155;
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #374E45;
  min-width: 260px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 6px 28px #00000099;
  transform: translateY(-4px) scale(1.03);
}

.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;
  background: #FAFAFA;
  color: #232323;
  border-radius: 12px;
  box-shadow: 0 2px 18px #11151133;
  padding: 20px 24px;
  margin-bottom: 20px;
  border: 1.5px solid #C0C5C1;
  min-width: 260px;
  transition: box-shadow 0.22s, transform 0.22s;
  font-size: 1.05rem;
}
.testimonial-card strong {
  color: #20613A;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 5px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px #10101044;
  transform: translateY(-2px) scale(1.01);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

ul, ol {
  padding-left: 26px;
}
li {
  margin-bottom: 10px;
  list-style-type: disc;
  font-size: 1rem;
}

.text-section ul, .text-section ol {
  padding-left: 30px;
  margin-bottom: 16px;
}
.text-section li {
  color: #E2F5D5;
}

/* Slim accent line next to h2 (urban/industrial) */
h2::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 0.88em;
  background: #F2B705;
  margin-right: 10px;
  border-radius: 2px;
  position: relative;
  top: -3px;
}

.policy, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.hero {
  background: linear-gradient(90deg, #232323 60%, #20613A 99%);
  padding: 72px 0 60px 0;
  margin-bottom: 60px;
  color: #E2F5D5;
  box-shadow: 0px 12px 38px -16px #191C1A50;
}
.hero h1 {
  color: #fff;
}
.hero p {
  color: #CCEED7;
}

.cta {
  margin-bottom: 60px;
  padding: 45px 20px 60px 20px;
  background: #232323;
  border-radius: 12px;
  box-shadow: 0 2px 14px #10101036;
  display: flex;
}
.cta h2 {
  color: #F2B705;
}

/**** Feature-list and grids ****/
.features, .services-list, .benefits {
  padding: 40px 20px;
  margin-bottom: 60px;
}
.feature-grid, .benefits ul, .services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
}
.feature-grid li, .benefits li {
  min-width: 240px;
  flex: 1 1 225px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #252B29;
  border-radius: 8px;
  border: 1px solid #374E45;
  color: #E2F5D5;
  font-size: 1.04rem;
  font-family: 'Lato', Arial, sans-serif;
  padding: 17px 19px;
  box-shadow: 0 2px 14px #17291C22;
  transition: background 0.19s;
}
.feature-grid li img, .benefits li img {
  width: 30px;
  height: 30px;
  filter: grayscale(10%) brightness(0.8) contrast(1.25);
}
.feature-grid li:hover, .benefits li:hover {
  background: #232F22;
}

/***** Pricing table (industrial/modern style) *****/
.pricing table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  background: #232323;
  color: #E2F5D5;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  font-size: 1rem;
  box-shadow: 0 2px 18px #11151133;
}
.pricing th, .pricing td {
  padding: 14px 10px;
  border-bottom: 1px solid #374E45;
  text-align: left;
}
.pricing th {
  background: #1A1A1A;
  color: #F2B705;
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  letter-spacing: 1px;
  font-size: 1.08rem;
  font-weight: 700;
}
.pricing tr:last-child td {
  border-bottom: none;
}

/***** TESTIMONIAL SLIDER & RATING *****/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.overall-rating {
  margin: 30px 0 10px 0;
  font-size: 1.2rem;
  color: #F2B705;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.overall-rating .stars {
  color: #F2B705;
  font-size: 1.3em;
  letter-spacing: 0.18em;
}

/***** FOOTER & CONTACT *******/
footer {
  background: #1C1E1C;
  border-top: 2px solid #374E45;
  padding: 38px 0 0 0;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #E2F5D5;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  transition: color 0.2s;
  letter-spacing: 0.5px;
  font-size: 1rem;
}
.footer-nav a:hover {
  color: #F2B705;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 1rem;
  color: #E2F5D5;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contact-info p, .contact-info li {
  display: flex;
  align-items: center;
  gap: 13px;
}
.contact-info img {
  width: 20px;
  height: 20px;
  filter: grayscale(40%) brightness(1) contrast(0.75);
}

/***** BUTTONS & CTA *****/
.cta-main {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  font-weight: 700;
  background: #F2B705;
  color: #191C1A;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  margin-top: 16px;
  font-size: 1.15rem;
  letter-spacing: 1.4px;
  box-shadow: 0 8px 32px -16px #F2B70545;
  text-shadow: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.21s, color 0.16s, box-shadow 0.18s, transform 0.16s;
  outline: none;
  text-align: center;
}
.cta-main:hover, .cta-main:focus {
  background: #cca106;
  color: #fff;
  box-shadow: 0 6px 30px -10px #F2B70577;
  transform: scale(1.04);
}

button {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}

/***** HEADER & BURGER MENU *****/
header {
  background: #1A1A1A;
  box-shadow: 0px 2px 18px #191C1A22;
  position: relative;
  z-index: 100;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.header-bar img {
  width: 130px;
  height: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  color: #E2F5D5;
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.4px;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F2B705;
  border-bottom: 2px solid #F2B705;
}

/***** MOBILE MENU ******/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 26px;
  z-index: 201;
  background: #232323;
  color: #F2B705;
  border-radius: 7px;
  font-size: 2rem;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 2px solid #F2B705;
  transition: background 0.2s, color 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F2B705;
  color: #191C1A;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #222825ee;
  z-index: 202;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.65,0.01,0.32,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: 25px 28px 0 0;
  background: none;
  color: #F2B705;
  font-size: 2em;
  border: 2px solid #F2B705;
  border-radius: 7px;
  width: 44px;
  height: 44px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2B705;
  color: #191C1A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 68px 0 0 38px;
  width: 80vw;
}
.mobile-nav a {
  color: #E2F5D5;
  font-size: 1.10rem;
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.1px;
  border-radius: 5px;
  padding: 13px 11px;
  margin-right: 10px;
  background: none;
  border: none;
  transition: background 0.14s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F2B705;
  background: #232F22;
}

/***** Cookie consent banner & modal *****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  box-shadow: 0 -2px 22px #191C1A45;
  background: #232323;
  color: #E2F5D5;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 3000;
  font-size: 1rem;
  flex-wrap: wrap;
  transition: transform 0.34s;
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-text {
  flex: 2 1 260px;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 3px;
}
.cookie-banner .accept {
  background: #20613A;
  color: #fff;
  transition: background 0.15s;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #409d60;
}
.cookie-banner .reject {
  background: #474747;
  color: #F2B705;
  border: 2px solid #F2B705;
  transition: background 0.15s, color 0.13s;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F2B705;
  color: #191C1A;
}
.cookie-banner .settings {
  background: #232323;
  color: #F2B705;
  border: 1.5px dashed #F2B705;
  transition: background 0.14s, color 0.11s;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F2B705;
  color: #191C1A;
}

.cookie-modal {
  position: fixed;
  z-index: 3100;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(25,28,26,0.90);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.29s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #232323;
  color: #E2F5D5;
  padding: 38px 26px;
  border-radius: 13px;
  box-shadow: 0 10px 40px #000a1c60;
  max-width: 400px;
  width: 92vw;
  min-width: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-content h2 {
  color: #F2B705;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 32px;
  height: 18px;
  border-radius: 18px;
  background: #474747;
  position: relative;
  transition: background 0.18s;
  outline: none;
  margin-right: 7px;
}
.cookie-toggle:checked {
  background: #20613A;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
  box-shadow: 0 2px 5px #0002;
}
.cookie-toggle:checked::after {
  left: 17px;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-modal-content button {
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #20613A;
  color: #fff;
  transition: background 0.14s;
}
.cookie-modal-content button.close {
  background: #222;
  color: #F2B705;
  margin-left: 12px;
  border: 1.5px dashed #F2B705;
}
.cookie-modal-content button.close:hover, .cookie-modal-content button.close:focus {
  background: #F2B705;
  color: #191C1A;
}

/******* RESPONSIVE DESIGN (MOBILE-FIRST) **********/
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .header-bar {
    flex-direction: column;
    gap: 16px;
  }
  .main-nav {
    gap: 18px;
  }
  .footer-nav {
    gap: 16px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .feature-grid, .benefits ul {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .contact-info {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .header-bar .main-nav, .header-bar .cta-main {
    display: none; /* Hide main nav & cta on mobile */
  }
  .mobile-menu-toggle {
    display: flex;
  }

  .content-grid,
  .testimonial-slider,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }

  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero, .cta {
    padding: 48px 0 32px 0;
    margin-bottom: 32px;
  }
  .section, .policy, .thank-you, .testimonials, .testimonials-preview {
    margin-bottom: 32px;
    padding: 24px 7px;
  }
  .footer-nav, .contact-info {
    flex-direction: column;
    gap: 10px;
    font-size: 0.97rem;
  }
  .card, .testimonial-card {
    padding: 19px 11px;
    min-width: 170px;
    font-size: 0.98rem;
  }
  table {
    font-size: 0.94rem;
  }
}
@media (max-width: 540px) {
  html {
    font-size: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 13px 7px;
    font-size: 0.97rem;
  }
  .cookie-modal-content {
    padding: 21px 9px;
  }
  h1, h2, h3 {
    margin-bottom: 10px;
  }
  .hero, .cta {
    padding: 28px 0 18px 0;
  }
  .section, .policy, .thank-you, .testimonials, .testimonials-preview {
    margin-bottom: 18px;
    padding: 10px 2px;
  }
}

/* =====================
   SELECTION & SCROLLBAR
   ===================== */
::selection {
  background: #F2B705;
  color: #232323;
}
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-thumb {
  background: #374E45;
  border-radius: 12px;
}
::-webkit-scrollbar-track {
  background: #191C1A;
}

/* Utility: visually-hidden for accessibility */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

/* INDUSTRIAL DETAILS & ACCENT */
hr {
  border: none;
  height: 2px;
  margin: 32px 0;
  background: repeating-linear-gradient(90deg,#374E45 0 6px,#191C1A 7px 14px);
}

/* Visually industrial font/lettering for tags or badges */
.badge {
  display: inline-block;
  background: #191C1A;
  color: #F2B705;
  font-family: 'Montserrat', monospace;
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
  box-shadow: 0 1px 4px #11151129;
  margin-bottom: 4px;
}

/**** END OF STYLE.CSS ****/
