/* RESET & BASELINE --------------------------- */
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 {
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #22262e;
  color: #F5F7FA;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #6AB7D8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  outline: none;
}
strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
}

/* TYPOGRAPHY ---------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #F5F7FA;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  font-weight: 700;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.35rem; line-height: 1.3; margin-bottom: 14px; }
h4 { font-size: 1.2rem; margin-bottom: 10px; }
.subheadline {
  font-size: 1.2rem;
  color: #B8BDC7;
  margin-bottom: 24px;
  font-family: 'Open Sans', sans-serif;
}
p, ul, ol, dl {
  margin-bottom: 16px;
}

/* INDUSTRIAL MODERN STYLES ------------------- */
body {
  background: #232730;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #242933;
  border-radius: 18px;
  box-shadow: 0 4px 30px 0 rgba(34, 40, 50, 0.1);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* HEADER / NAVIGATION ------------------------- */
header {
  background: #2C3442;
  box-shadow: 0 2px 16px 0 rgba(16,20,24,0.08);
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
  position: relative;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #F5F7FA;
  padding: 6px 8px;
  transition: color 0.15s, background 0.21s;
  border-radius: 6px;
}
.main-nav a:hover {
  background: #343d4a;
  color: #6AB7D8;
}
.cta.primary {
  display: inline-block;
  padding: 11px 28px;
  background: #6AB7D8;
  color: #1a232d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px 0 rgba(106,183,216,0.09) ,0 1.5px 0 #374151 inset;
  text-transform: uppercase;
  margin-left: 20px;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, transform 0.16s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #F5F7FA;
  color: #1a232d;
  transform: translateY(-2px) scale(1.045);
  outline: none;
}

/* Hamburger Mobile Button --------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #6AB7D8;
  padding: 12px 16px;
  margin-left: 16px;
  cursor: pointer;
  transition: color 0.16s, background 0.2s;
  border-radius: 6px;
}
.mobile-menu-toggle:hover {
  background: #232930;
  color: #fff;
}

/* MOBILE NAVIGATION --------------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 52, 66, 0.98);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-110%);
  transition: transform 0.36s cubic-bezier(.6,-0.28,.74,.05);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  margin: 28px 24px 18px auto;
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.35rem;
  color: #F5F7FA;
  cursor: pointer;
  transition: color 0.2s, background 0.13s;
  border-radius: 6px;
}
.mobile-menu-close:hover {
  background: #6AB7D8;
  color: #232930;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 30px 26px 18px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F5F7FA;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  padding: 16px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover {
  background: #6AB7D8;
  color: #22262e;
}

@media (max-width: 1060px) {
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1061px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO, GENERAL SECTIONS --------------------- */
main {
  width: 100%;
}
section {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section {
    padding: 18px 3vw;
    margin-bottom: 38px;
    border-radius: 10px;
  }
}
.content-wrapper {
  flex-direction: column;
  gap: 24px;
}

/* FLEXBOX UTILITIES --------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #2C3442;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(40, 48, 58, 0.13);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 22px 24px;
  transition: box-shadow 0.22s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(106,183,216,0.18), 0 2px 8px 0 #21283a;
  transform: translateY(-4px) scale(1.03);
}
.content-grid, .feature-grid, .service-list, .review-summary {
  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;
  background: #F5F7FA;
  color: #232730;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px 0 rgba(44,52,66,0.11);
  flex: 1 1 320px;
  min-width: 270px;
  max-width: 475px;
  flex-direction: column;
  position: relative;
}
.testimonial-card p {
  color: #232730;
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-style: italic;
}
.testimonial-card span {
  display: block;
  color: #374151;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-card span:last-child {
  color: #6AB7D8;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #232930;
  color: #F5F7FA;
  border-radius: 10px;
  padding: 16px 20px;
  min-width: 180px;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 2px 8px 0 rgba(44,52,66,0.08);
  margin-bottom: 12px;
  font-weight: 500;
}
.feature-grid img {
  height: 28px;
  width: auto;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-list li, .service-list .text-section {
  background: #232930;
  color: #F5F7FA;
  border-radius: 10px;
  padding: 16px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  flex: 1 1 300px;
}
.service-list em {
  color: #6AB7D8;
  font-style: normal;
  font-weight: 700;
}
.review-summary {
  background: #2C3442;
  color: #F5F7FA;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(44,52,66,0.12);
  padding: 18px 22px;
  margin-top: 30px;
  font-size: 1rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  color: #F5F7FA;
  font-family: 'Montserrat', Arial, sans-serif;
}
.contact-info img {
  width: 22px;
  height: 22px;
}
.example {
  color: #6AB7D8;
  font-style: italic;
  font-size: 0.98rem;
  margin-top: 10px;
}

/* TABLES / FAQ ------------------------------- */
.pricing-table {
  width: 100%;
  background: #232930;
  color: #F5F7FA;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(44,52,66,0.10);
  margin-bottom: 20px;
  border-spacing: 0;
  border-collapse: collapse;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table th, .pricing-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #323846;
}
.pricing-table th {
  background: #29313f;
  color: #6AB7D8;
  text-align: left;
  font-size: 1.08rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.faq-list {
  margin-top: 22px;
}
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F5F7FA;
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 16px;
}
.faq-list dd {
  color: #B8BDC7;
  margin-bottom: 10px;
  margin-left: 0;
  font-size: 1.02rem;
}

/* FOOTER ------------------------------------- */
footer {
  background: #181c21;
  color: #F5F7FA;
  border-top: 2px solid #232730;
  font-size: 0.97rem;
  letter-spacing: 0.02em;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 38px 12px 12px 12px;
}
.footer-logo img { height: 40px; margin-bottom: 14px; }
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 6px;
  justify-content: center;
}
.footer-nav a {
  color: #6AB7D8;
  padding: 5px 8px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover {
  color: #232930;
  background: #6AB7D8;
}
.footer-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  color: #B8BDC7;
}
.footer-note {
  color: #232930;
  background: #6AB7D8;
  border-radius: 8px;
  padding: 5px 16px;
  margin-top: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
}

/* BUTTONS ------------------------------------ */
button,
input[type="button"],
input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #6AB7D8;
  color: #232930;
  border: none;
  border-radius: 7px;
  padding: 10px 28px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.22s;
  box-shadow: 0 1.5px 0 #374151 inset;
}
button:hover, button:focus, input[type="submit"]:hover {
  background: #F5F7FA;
  color: #21283a;
  outline: none;
}

/* SHADOWS & ACCENTS -------------------------- */
.card, .feature-grid li, .testimonial-card, .review-summary {
  box-shadow: 0 1px 6px 0 rgba(26,34,45,0.06), 0 3px 12px 0 rgba(106,183,216,0.05);
}

/* SPACING UTILITIES --------------------------- */
.mb-4 { margin-bottom: 32px; }
.mb-2 { margin-bottom: 16px; }

/* MICRO-INTERACTIONS / HOVER ----------------- */
.card:hover, .feature-grid li:hover {
  box-shadow: 0 8px 32px 0 rgba(106,183,216,0.11) ,0 2.5px 10px 0 #1a232d1a;
  transform: translateY(-4px) scale(1.021);
}
.feature-grid li:hover {
  background: #2C3442;
  color: #6AB7D8;
}
.cta.primary:active {
  background: #3c495a;
  color: #F5F7FA;
}

/* FORM & INPUTS (if any) --------------------- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 10px 12px;
  background: #22262e;
  color: #F5F7FA;
  border-radius: 5px;
  border: 1px solid #323846;
  margin-bottom: 18px;
  font-size: 1rem;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #6AB7D8;
  outline: none;
  background: #232930;
  color: #6AB7D8;
}

/* RESPONSIVE DESIGN (Mobile-first) ----------- */
@media (max-width: 900px) {
  .feature-grid, .card-container, .testimonial-list, .content-grid, .service-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card, .feature-grid li, .service-list li, .service-list .text-section {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
  .main-nav, .footer-nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 660px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  .footer-logo img { height: 27px; }
  header img { height: 34px; }
  .card, .section, .testimonial-card, .feature-grid li {
    padding: 14px 10px;
    border-radius: 8px;
  }
  .section {
    padding: 14px 4vw;
  }
  .mobile-nav {
    padding: 20px 8px 12px 14px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .main-nav {
    display: none !important;
  }
}

/* COOKIE CONSENT BANNER ---------------------- */
.cookie-banner {
  position: fixed;
  z-index: 1988;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #21262c;
  color: #F5F7FA;
  font-family: 'Open Sans', Arial, sans-serif;
  box-shadow: 0 -2px 22px 0 rgba(44,52,66,0.14);
  padding: 22px 18px 22px 18px;
  border-top: 3px solid #6AB7D8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.37s ease;
  transform: translateY(0%);
}
.cookie-banner.closed {
  transform: translateY(120%);
}
.cookie-banner p {
  margin-bottom: 8px;
  font-size: 1.02rem;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.cookie-btn {
  padding: 10px 24px;
  background: #6AB7D8;
  color: #21262c;
  border-radius: 6px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-btn:hover {
  background: #F5F7FA;
  color: #21262c;
}
.cookie-btn.settings {
  background: #232930;
  color: #B8BDC7;
  border: 1.5px solid #6AB7D8;
}
.cookie-btn.settings:hover {
  background: #6AB7D8;
  color: #232930;
}

/* COOKIE MODAL -------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2099;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(44,52,66,0.87);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #232930;
  color: #F5F7FA;
  border-radius: 16px;
  min-width: 320px;
  max-width: 94vw;
  padding: 32px 22px 22px 22px;
  box-shadow: 0 7px 44px 0 rgba(44,52,66,0.25);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookiePopIn 0.43s cubic-bezier(.42,1.2,.54,.98);
}
@keyframes cookiePopIn {
  0% { transform: scale(0.84) translateY(70px); opacity: 0; }
  100% { transform: scale(1) translateY(0px); opacity: 1; }
}
.cookie-modal h2 { color: #6AB7D8; margin-bottom: 10px; }
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-toggle-group {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.03rem;
}
.cookie-toggle-group input[type=checkbox] {
  accent-color: #6AB7D8;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  color: #F5F7FA;
  font-size: 1.9rem;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.14s, background 0.13s;
}
.cookie-modal-close:hover {
  color: #232930;
  background: #6AB7D8;
}
.cookie-modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

/* METALLIC ACCENTS EFFECT (for modern industrial) */
.cta.primary, .cookie-btn, .main-nav a, .footer-nav a, .feature-grid li, .card, .testimonial-card, .section, .pricing-table, .review-summary {
  border: 1.5px solid #323846;
}

/* URBAN DECORATIVE BAR ------------------------ */
.section::before {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 5px;
  background: linear-gradient(90deg,#6AB7D8 0%, #8BCAE4 80%);
  margin-bottom: 18px;
}
/* Accent bar not for hero */
main > section:first-child .section::before { display: none; }

/* OVERRIDES (to match ALL html classes exactly) --- */
.text-image-section { gap: 30px; display: flex; align-items: center; flex-wrap: wrap; }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Remove bullets for all html feature lists */
.feature-grid, .service-list, .faq-list, .contact-info ul {
  list-style: none;
  padding-left: 0;
}

/* Hide absolute position for content elements (cards/text) - only allow for deco */

.card, .testimonial-card, .feature-grid li,
.service-list li, .service-list .text-section {
  position: relative !important;
}

/* Prevent overlap for all cards and testimonials */
.card, .testimonial-card, .feature-grid li, .service-list li {
  margin-bottom: 20px;
}

/* Table (responsive scroll) */
@media (max-width: 720px) {
  .pricing-table {
    display: block;
    overflow-x: auto;
    width: 100%;
  }
}

/* Z-INDEX for MOBILE MENU over everything except cookie modal */
.mobile-menu { z-index: 1100; }

/* MODERN SCROLLBAR ---------------------------- */
::-webkit-scrollbar {
  width: 11px;
  background: #232930;
}
::-webkit-scrollbar-thumb {
  background: #2C3442;
  border-radius: 12px;
  border: 3px solid #232930;
}

/* ACCESSIBILITY FOCUS -------------------------- */
a:focus, .cta.primary:focus, button:focus, .cookie-btn:focus {
  outline: 2.5px solid #6AB7D8;
}

/* PRINT ---------------------------------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
}
