/* =========================================================
   BLUELET AUTOGUIDE – INDUSTRIAL MODERN STYLE CSS (v1.0)
   Author: CSS/UX Pro – All industrial_modern rules applied
   ========================================================= */

/* 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,
main, 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 {
  scroll-behavior: smooth;
  background: #181b20;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #e7eaed;
  background: #13151a;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #21A5D4;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,.01,.165,.99);
}
a:hover, a:focus {
  color: #F5F7FA;
  outline: none;
}

ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1em;
}
ul li, ol li {
  margin-bottom: 0.5em;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  color: inherit;
}

/* Hide, normalize for accessibility */
[tabindex="-1"]:focus {
  outline: none !important;
}

/* ==================
   TYPOGRAPHY & FONTS
==================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #F5F7FA;
  margin-bottom: 20px;
  line-height: 1.15;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }
p, li, dd {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #ADB2BB;
  font-size: 16px;
}

strong, b {
  font-weight: bold;
  color: #F5F7FA;
}

/* Metal accent for section headings */
h2:not(.cta-btn):not(.cta-link) {
  border-left: 4px solid #21A5D4;
  padding-left: 0.7em;
  color: #F5F7FA;
  margin-bottom: 30px;
}

/* ===========
   CONTAINER
============== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 480px) {
  .container { padding: 0 10px; }
}

/* =========================
   HEADER + NAVIGATION
=========================== */
header {
  background: #181b20;
  border-bottom: 2px solid #262931;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 12px;
  position: relative;
}
.logo img { height: 38px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ADB2BB;
  letter-spacing: 0.02em;
  padding: 9px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #F5F7FA;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #21A5D4;
  transition: width 0.3s cubic-bezier(.4,.01,.165,.99);
  margin-top: 4px;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  border-radius: 6px;
  background: linear-gradient(90deg, #21A5D4 0%, #116582 100%);
  color: #F5F7FA;
  border: none;
  box-shadow: 0 2px 10px rgba(32,77,116,0.12);
  cursor: pointer;
  transition: background 0.22s cubic-bezier(.4,.01,.165,.99), transform 0.15s;
  text-shadow: 0 1px 1px rgba(0,0,0,0.18);
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #116582 0%, #21A5D4 100%);
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}

/* Header spacing for .main-nav & .cta-btn */
header .cta-btn {
  margin-left: 16px;
}

/* Hamburger burger menu */
.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  color: #F5F7FA;
  background: none;
  border: none;
  margin-left: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.2s;
  z-index: 104;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #262931;
}

/* MOBILE NAV OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 102;
  left: 0; top: 0; bottom: 0;
  width: 100vw;
  background: rgba(19,21,26,0.94);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 40px 0;
  box-shadow: 8px 0 32px rgba(0,0,0,0.25);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 32px;
  color: #F5F7FA;
  margin: 24px 28px 0 0;
  background: none;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 100px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #262931;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 50px 36px;
  width: 100vw;
}
.mobile-nav a {
  font-size: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #fff;
  padding: 12px 0;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #18304B;
  color: #21A5D4;
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }
  .container {
    max-width: 97vw;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 900px) {
  header .cta-btn {
    display: none;
  }
}

/* ================
   SECTION SPACING
=================== */
.section, 
.about-hero, .company-values, .team-overview, .why-choose-us, 
.hero, .features, .guides-overview, .cta-banner, .testimonials-preview, 
.services-hero, .services-list, .how-it-works, .cta-section, 
.pricing-hero, .pricing-table, .pricing-notes, 
.testimonials-hero, .testimonials-list, .review-cta,
.contact-hero, .form-section, .contact-info, .map-section,
.guide-hero, .step-guide, .tips, .faq-section, .legal-text, .thank-you
{
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #232730;
  border-radius: 12px;
  box-shadow: 0 3px 13px rgba(16,29,40,0.18);
  position: relative;
  overflow: hidden;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}

/* Feature-item force (for future) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #21242B;
  padding: 18px 24px;
  border-radius: 7px;
  min-width: 220px;
}

/* Text-image sections */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .text-image-section,
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .container {
    padding: 0 7px;
  }
}

/* Testimonials Card Alignment */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px;
  margin-bottom: 22px;
  background: #F5F7FA;
  border-radius: 9px;
  box-shadow: 0 3px 13px rgba(16,29,40,0.16);
  color: #232730;
  border-left: 5px solid #21A5D4;
  max-width: 600px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.22s;
}
.testimonial-card p {
  color: #232730;
  font-size: 17px;
  font-style: italic;
}
.testimonial-card strong {
  color: #204D74;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus-visible {
  box-shadow: 0 6px 23px rgba(33,165,212,0.11);
  transform: translateY(-5px) scale(1.01);
}

/* =============
  HERO STYLES
=============== */
.hero, .about-hero, .services-hero, .pricing-hero, .guide-hero, .contact-hero, .testimonials-hero, .thank-you {
  background: linear-gradient(110deg, #232832 60%, #181b20 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 5px 23px 0 rgba(35,40,50,0.16);
  margin-bottom: 50px;
}
.hero h1, .about-hero h1, .services-hero h1, .pricing-hero h1, .guide-hero h1, .contact-hero h1, .testimonials-hero h1, .thank-you h1 {
  color: #fff;
  font-size: 2.45rem;
}
.hero p, .about-hero p, .services-hero p, .pricing-hero p, .guide-hero p, .contact-hero p, .testimonials-hero p, .thank-you p {
  color: #ADB2BB;
  font-size: 18px;
  margin-bottom: 12px;
}

/* CTA BANNER */
.cta-banner, .cta-section, .review-cta  {
  background: #204D74;
  border-radius: 13px;
  box-shadow: 0 4px 18px rgba(33,165,212,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 30px;
}
.cta-banner .content-wrapper, 
.cta-section .content-wrapper, 
.review-cta .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 38px;
}
.cta-banner span, .cta-banner p {
  color: #F5F7FA;
  font-size: 19px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .cta-banner .content-wrapper, 
  .cta-section .content-wrapper, 
  .review-cta .content-wrapper {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
  .cta-banner, .cta-section, .review-cta {
    padding: 32px 10px;
  }
}

/* CTA-LINK (Subtle Industrial underline) */
.cta-link {
  display: inline-block;
  position: relative;
  color: #21A5D4;
  font-weight: 600;
  font-size: 1.03em;
  margin-top: 8px;
  letter-spacing: 0.01em;
  transition: color 0.19s;
}
.cta-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%;
  height: 3px;
  background: #116582;
  border-radius: 2px;
  transform: scaleX(0.2);
  transition: transform 0.22s cubic-bezier(.68,-0.55,.27,1.55);
}
.cta-link:hover, .cta-link:focus {
  color: #116582;
}
.cta-link:hover::after, .cta-link:focus::after {
  transform: scaleX(1);
}

/* =============
   FEATURES GRID
=============== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 24px;
}
.features .feature-grid li {
  flex: 1 1 220px;
  min-width: 225px;
  max-width: 280px;
  background: #20232A;
  border-radius: 12px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(33,165,212,0.11);
  border-left: 5px solid #204D74;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.17s;
  margin-bottom: 0;
}
.features .feature-grid li img {
  width: 40px; height: 40px;
  margin-bottom: 7px;
}
.features .feature-grid li strong {
  font-size: 1.13em;
}
.features .feature-grid li p {
  font-size: 16px;
  color: #ADB2BB;
}
.features .feature-grid li:hover, .features .feature-grid li:focus-visible {
  box-shadow: 0 10px 22px rgba(33,165,212,0.09);
  transform: translateY(-3px) scale(1.017);
}
@media (max-width: 968px) {
 .features .feature-grid {
    flex-direction: column;
    gap: 20px;
 }
 .features .feature-grid li {
    max-width: 100%;
 }
}

/* =============
   TABLE STYLES
=============== */
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background: #1B1E24;
  color: #EAEEF1;
  box-shadow: 0 5px 18px rgba(20,37,55,0.10);
  border-radius: 10px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 18px 13px;
  text-align: left;
  border-bottom: 1px solid #262931;
  font-size: 16px;
}
.pricing-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #21A5D4;
  background: #21242B;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table td {
  color: #E7EAED;
  background: #1B1E24;
}

/* ========================
   LIST/FAQ/OL STYLES
========================== */

.faq-section dl {
  margin-top: 18px;
  margin-bottom: 22px;
}
.faq-section dt {
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #21A5D4;
  margin-top: 16px;
  font-size: 1.08em;
}
.faq-section dd {
  margin-left: 0;
  margin-bottom: 10px;
  font-size: 16px;
}

.step-guide ol, .how-it-works ol { 
  counter-reset: step;
  list-style: none;
  margin-bottom: 0;
  margin-top: 24px;
}
.step-guide ol li, .how-it-works ol li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 35px;
  color: #F5F7FA;
  font-size: 17px;
}
.step-guide ol li::before, .how-it-works ol li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0; top: 2px;
  width: 26px; height: 26px;
  background: #204D74;
  color: #F5F7FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(33,165,212,0.08);
  font-size: 1em;
}

@media (max-width: 650px) {
  .step-guide ol li,
  .how-it-works ol li {
    font-size: 15px;
    padding-left: 34px;
  }
}

.company-values ul li, .why-choose-us ul li, .pricing-notes ul li, .tips ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #ADB2BB;
  position: relative;
  padding-left: 19px;
}
.company-values ul li::before, .why-choose-us ul li::before, .pricing-notes ul li::before, .tips ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: #21A5D4;
  border-radius: 2px;
}

/* MAP SECTION & ADDRESS */
.map-placeholder {
  background: #20232A;
  border-radius: 10px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.map-placeholder img {
  width: 36px;
  margin-bottom: 5px;
}
.map-placeholder a {
  color: #21A5D4;
  font-weight: bold;
  margin-top: 7px;
}
.map-placeholder a:hover,
.map-placeholder a:focus {
  color: #F5F7FA;
}
address {
  font-style: normal;
  color: #ADB2BB;
  margin-bottom: 10px;
}

/* LEGAL TEXT PAGE STYLES */
.legal-text {
  background: #16181e;
  border-radius: 13px;
}
.legal-text h2 {
  color: #21A5D4;
  border-left: none;
  padding-left: 0;
  margin-top: 22px;
  margin-bottom: 12px;
}
.legal-text ul li {
  color: #ADB2BB;
  margin-bottom: 10px;
  margin-left: 0;
  padding-left: 19px;
  position: relative;
}
.legal-text ul li:before {
  content: '';
  width: 7px; height: 7px;
  background: #204D74;
  border-radius: 1px;
  display: inline-block;
  position: absolute; left: 0; top: 8px;
}

/* THANK YOU PAGE */
.thank-you .cta-btn {
  margin-top: 35px;
}

/* =============
    FOOTER
============== */
footer {
  background: #16181e;
  padding: 0;
  border-top: 2px solid #232832;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 3px;
}
.footer-nav a {
  color: #21A5D4;
  font-size: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F5F7FA;
  text-decoration: underline;
}
.footer-info {
  padding-bottom: 16px;
  color: #ADB2BB;
  margin-top: 7px;
  font-size: 14px;
  letter-spacing: 0.025em;
}

@media (max-width: 700px) {
  .footer-nav {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
}

/* ===================
   BUTTONS & FORMS
==================== */
.form-section .cta-btn {
  margin-top: 30px;
}

section .cta-btn:not(:first-child) {
  margin-top: 18px;
}

button, .cta-btn {
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #21A5D4;
  outline-offset: 3px;
}

input, textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 7px;
  background: #1B1E24;
  border: 1.5px solid #204D74;
  color: #F5F7FA;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
  transition: border 0.2s, background 0.18s;
}
input:focus, textarea:focus {
  border: 2px solid #21A5D4;
  background: #232832;
}

/* FOCUS INDICATION FOR ACCESSIBILITY */
a:focus-visible, button:focus-visible {
  outline: 2px solid #21A5D4 !important;
  outline-offset: 1.5px;
}

/* ============
  COOKIE CONSENT
=============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #232832;
  box-shadow: 0 -4px 24px 0 rgba(32,77,116,0.12);
  color: #F5F7FA;
  padding: 22px 8vw 17px 8vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  font-size: 15px;
}
.cookie-banner__text {
  flex: 1 1 450px;
  color: #F5F7FA;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 4px;
}
.cookie-btn {
  background: #116582;
  color: #F5F7FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  padding: 12px 20px;
  transition: background 0.21s;
  box-shadow: 0 1px 6px rgba(33,165,212,0.09);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.cookie-btn.settings {
  background: transparent;
  border: 1.5px solid #21A5D4;
  color: #21A5D4;
}
.cookie-btn.accept {
  background: linear-gradient(90deg,#21A5D4 51%,#116582 100%);
  color: #fff;
}
.cookie-btn.reject {
  background: #21242B;
  color: #E7EAED;
}
.cookie-btn:hover, .cookie-btn:focus-visible {
  background: #204D74;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2100;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(25, 28, 35, 0.87);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.32s;
}
.cookie-modal {
  background: #181b20;
  border-radius: 14px;
  padding: 38px 30px 28px 30px;
  min-width: 290px;
  max-width: 420px;
  color: #F5F7FA;
  box-shadow: 0 6px 34px rgba(33,165,212,0.14);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  color: #21A5D4;
  font-size: 1.4em;
  margin-bottom: 10px;
}
.cookie-modal ul.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal ul.category-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ADB2BB;
  font-size: 15px;
}
.cookie-toggle {
  appearance: none;
  outline: none;
  border: none;
  width: 38px; height: 21px;
  background: #21242B;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.22s;
}
.cookie-toggle:checked {
  background: #21A5D4;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #F5F7FA;
  border-radius: 50%;
  position: absolute;
  left: 3px; top: 2.5px;
  transition: left 0.22s cubic-bezier(.68,-0.55,.27,1.55);
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-toggle[disabled], .cookie-toggle[aria-disabled="true"] {
  background: #5B616D;
  cursor: not-allowed;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .cookie-btn.settings {
  border: 1.5px solid #21A5D4;
  background: transparent;
  color: #21A5D4;
}
.cookie-modal .cookie-btn.settings:hover {
  background: #232832;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 14px 7vw 13px 7vw;
  }
  .cookie-banner__text {
    font-size: 14px;
  }
  .cookie-modal {
    padding: 28px 14px;
    min-width: 210px;
    max-width: 96vw;
  }
}

/* ==============
   MEDIA QUERIES
================== */
@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.37rem; }
  .container {
    padding: 0 13px;
  }
  .feature-grid {
    gap: 17px;
  }
}

@media (max-width: 600px) {
  .section, 
  .about-hero, .company-values, .team-overview, .why-choose-us, 
  .hero, .features, .guides-overview, .cta-banner, .testimonials-preview, 
  .services-hero, .services-list, .how-it-works, .cta-section, 
  .pricing-hero, .pricing-table, .pricing-notes, 
  .testimonials-hero, .testimonials-list, .review-cta,
  .contact-hero, .form-section, .contact-info, .map-section, 
  .guide-hero, .step-guide, .tips, .faq-section, .legal-text, .thank-you {
    padding: 25px 7px;
    border-radius: 8px;
    margin-bottom: 31px;
  }
  h1 {
    font-size: 1.35rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.08rem;
    margin-bottom: 13px;
  }
  .testimonial-card {
    padding: 15px 11px;
    max-width: unset;
  }
  .cta-banner, .cta-section, .review-cta {
    border-radius: 7px;
  }
}

/* =============
   ANIMATIONS
============== */
@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@keyframes mobileMenuSlide {
  from { transform: translateX(-100%); }
  to { transform: translateX(0);}
}
.mobile-menu.active {
  animation: mobileMenuSlide 0.33s;
}
.cookie-modal {
  animation: fadeInSlide 0.34s;
}

/* ================
   INDUSTRIAL ACCENTS
====================*/
.section, .hero, .features, .guides-overview,
.cta-banner, .about-hero, .services-hero, .testimonials-hero {
  border: 1.5px solid #232832;
  box-shadow: 0 2px 13px rgba(20,37,55,0.08);
}

.card, .feature-grid li, .feature-item, .map-placeholder {
  border: 1.5px solid #232832;
  box-shadow: 0 2px 13px rgba(20,37,55,0.08);
}

/* ===============
   SCROLLBAR STYLING
=================== */
::-webkit-scrollbar {
  width: 10px;
  background: #232832;
}
::-webkit-scrollbar-thumb {
  background: #204D74;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #116582;
}

/* ===============
   Z-INDEX CONTROLS
=================== */
header, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay {
  z-index: 100;
}

/* ================
   SPECIAL CLASSES
================== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Never use absolute pos in content areas. Only decorative use above. */

/* END OF STYLE SHEET */
