/* === 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%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8FAFB;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

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

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1A4B7A;
  margin-bottom: 18px;
  line-height: 1.15;
}
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.7rem;
  font-weight: 600;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, li, address {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
}

/* === LAYOUT CONTAINERS & SPACING === */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 1px 12px rgba(30,56,90,0.06);
}
@media (max-width: 900px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 7px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FLEX UTILS FOR LAYOUTS */
.card-container,
.card-grid,
.feature-grid,
.success-stories,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(26,75,122,0.06);
  padding: 28px 24px;
  min-width: 235px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 18px rgba(26,75,122,0.11);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* === HEADER === */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 14px rgba(30,56,90,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A4B7A;
  font-weight: 500;
  font-size: 1.025rem;
  opacity: 0.82;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover,
header nav a:focus {
  background: #E8EEF2;
  color: #1A4B7A;
  opacity: 1;
}
header nav .cta.primary {
  background: #1A4B7A;
  color: #FFF;
  font-weight: 700;
  border-radius: 8px;
  padding: 7px 18px;
  margin-left: 18px;
  box-shadow: 0 1px 4px rgba(30,56,90,0.10);
  transition: background 0.22s, box-shadow 0.20s;
}
header nav .cta.primary:hover,
header nav .cta.primary:focus {
  background: #153d62;
  box-shadow: 0 5px 18px rgba(26,75,122,0.13);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #1A4B7A;
  cursor: pointer;
  padding: 7px 14px;
  margin-left: 20px;
  border-radius: 6px;
  transition: background 0.17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E8EEF2;
}

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

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(232,238,242,0.98);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.4,.02,.4,1);
  box-shadow: 0 0 32px rgba(30,56,90,0.09);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #1A4B7A;
  margin: 24px 24px 8px 0;
  cursor: pointer;
  border-radius: 6px;
  padding: 5px 13px;
  z-index: 1100;
  transition: background 0.19s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #E8EEF2;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  color: #1A4B7A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  padding: 12px 10px 12px 0;
  border-radius: 8px 0 0 8px;
  transition: background 0.16s;
  min-width: 180px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E8EEF2;
  color: #1A4B7A;
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none;
  }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(110deg,#FFFFFF 75%,#E8EEF2 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 10px 48px rgba(26,75,122,0.07);
  margin-bottom: 56px;
  padding: 54px 0 38px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #1A4B7A;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero p {
  color: #425160;
  font-size: 1.12rem;
}
.hero .cta.primary {
  margin-top: 15px;
}
@media (max-width: 600px) {
  .hero {
    padding: 32px 0 15px 0;
    border-radius: 0 0 20px 20px;
  }
}

/* === FEATURE GRID / CARDS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #F8FAFB;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(26,75,122,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 20px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 285px;
  margin-bottom: 0;
  transition: box-shadow 0.19s, background 0.13s;
}
.feature-grid > div:hover {
  box-shadow: 0 5px 16px rgba(26,75,122,0.13);
  background: #EFF4F8;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 13px;
}
.feature-grid h3 {
  margin: 3px 0 9px 0;
  font-size: 1.09rem;
  color: #1A4B7A;
}
.feature-grid p {
  font-size: 1rem;
  color: #425160;
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 18px 12px;
  }
}

/* FEATURES & STEPS ITEMS */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  counter-reset: steps;
}
.step-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F8FAFB;
  border-radius: 11px;
  padding: 20px 20px;
  margin-bottom: 0;
  flex: 1 1 235px;
  min-width: 200px;
  font-size: 1.06rem;
  box-shadow: 0 1.2px 7px rgba(26,75,122,0.07);
  position: relative;
}
.step-list li img {
  width: 42px;
  height: 42px;
}
@media (max-width: 800px) {
  .step-list {
    flex-direction: column;
    gap: 12px;
  }
  .step-list li {
    min-width: 0;
    font-size: 1rem;
    padding: 12px 8px;
  }
}

/* === SERVICE LISTS === */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.service-list > div {
  background: #F8FAFB;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(26,75,122,0.07);
  padding: 20px 20px 18px 20px;
  flex: 1 1 220px;
  min-width: 190px;
  transition: box-shadow 0.14s, background 0.13s;
}
.service-list > div:hover {
  background: #EEF4F8;
  box-shadow: 0 7px 22px rgba(26,75,122,0.12);
}
.service-list h3 {
  color: #1A4B7A;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.service-list h3 span {
  color: #CC7A00;
  background: #FEF8EF;
  font-size: .98em;
  border-radius: 6px;
  padding: 2px 8px;
  margin-left: 8px;
  font-weight: 500;
}
.service-list p {
  color: #425160;
}
@media (max-width: 670px) {
  .service-list {
    flex-direction: column;
    gap: 10px;
  }
  .service-list > div {
    padding: 12px 7px 14px 11px;
    min-width: 0;
  }
}

/* === CTA BUTTONS & BANNERS === */
.cta,
.cta-banner a,
input[type="submit"] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #1A4B7A;
  color: #FFF;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 11px 30px;
  border-radius: 9px;
  border: none;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(30,56,90,0.12);
  transition: background 0.17s, box-shadow 0.19s, transform .17s;
  margin-top: 12px;
  text-align: center;
  text-decoration: none;
}
.cta.primary,
.cta-banner .cta.primary {
  background: #1A4B7A;
  color: #FFF;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #153d62;
  box-shadow: 0 3px 14px rgba(26,75,122,0.18);
  transform: translateY(-1px) scale(1.03);
}
.cta.accent,
.cta-banner .cta.accent {
  background: #CC7A00;
  color: #FFF;
}
.cta.accent:hover,
.cta.accent:focus {
  background: #A36000;
  box-shadow: 0 3px 13px rgba(204,122,0,0.13);
  transform: translateY(-1px) scale(1.03);
}
.cta-banner {
  background: #E8EEF2;
  border-radius: 14px;
  padding: 25px 20px;
  box-shadow: 0 1.2px 7px rgba(26,75,122,0.05);
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
}
.cta-banner span {
  font-size: 1.11rem;
  color: #1A4B7A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
@media (max-width: 740px) {
  .cta-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 17px 8px;
  }
}

/* === TRUST BADGES === */
.trust-badges {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 18px 0 8px 0;
}
.trust-badges img {
  height: 46px;
  width: auto;
}

/* === PRICELIST UL */
ul {
  padding-left: 0;
}
ul li {
  margin-bottom: 10px;
  color: #2D3D48;
  line-height: 1.7;
}
ul li span {
  color: #CC7A00;
  font-weight: 600;
  margin-left: 8px;
  font-size: 1.02em;
  background: #FEF8EF;
  border-radius: 7px;
  padding: 2px 7px;
}

/* === TESTIMONIAL STYLES === */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 2.4px 15px rgba(26,75,122,0.08);
  border-left: 5px solid #1A4B7A;
  min-width: 230px;
  max-width: 370px;
  flex: 1 1 300px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #1A4B7A;
  font-size: 1.05rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-card .author {
  color: #555;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: -7px;
  opacity: 0.84;
}
@media (max-width: 720px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

.ratings-summary {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
  background: #E8EEF2;
  border-radius: 7px;
  padding: 13px 19px;
}
.ratings-summary img {
  height: 28px;
}

/* === SUCCESS STORIES & CASE STUDY === */
.success-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study {
  flex: 1 1 250px;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 1.2px 7px rgba(26,75,122,0.05);
  padding: 19px 20px;
  margin-bottom: 0;
  min-width: 210px;
  max-width: 370px;
}
@media (max-width: 900px) {
  .success-stories {
    flex-direction: column;
    gap: 13px;
  }
  .case-study {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

/* === FAQ STYLES === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F8FAFB;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(26,75,122,0.06);
  padding: 17px 18px;
  margin-bottom: 0;
}
.faq-item h3 {
  color: #1A4B7A;
  font-size: 1.11rem;
}
.faq-item p {
  color: #425160;
  font-size: 1rem;
}
.contact-cta {
  margin-top: 17px;
}
.contact-cta a {
  color: #CC7A00;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.18s;
}
.contact-cta a:hover,
.contact-cta a:focus {
  color: #1A4B7A;
}

/* === CONTACT DETAILS === */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: flex-start;
}
.contact-details > div {
  min-width: 170px;
  flex: 1 1 180px;
}
@media (max-width: 700px) {
  .contact-details {
    flex-direction: column;
    gap: 11px;
  }
}
.contact-info-note p {
  color: #425160;
  margin-top: 11px;
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1.8px solid #E8EEF2;
  border-radius: 7px;
  padding: 8px 12px;
  margin-bottom: 21px;
  background: #FFF;
  transition: border-color 0.19s;
}
input:focus, textarea:focus, select:focus {
  border-color: #1A4B7A;
  outline: none;
}

/* === LEGAL TEXTS === */
.legal-text {
  background: #F8FAFB;
  border-radius: 9px;
  padding: 22px 17px;
  color: #425160;
  font-size: 1rem;
  box-shadow: 0 1.2px 7px rgba(26,75,122,0.04);
}
.legal-text h3 {
  color: #1A4B7A;
  font-size: 1.08rem;
}
.legal-text a {
  color: #CC7A00;
  text-decoration: underline;
  transition: color 0.14s;
}
.legal-text a:hover {
  color: #1A4B7A;
}

/* === FOOTER === */
footer {
  background: #E8EEF2;
  padding: 38px 0 22px 0;
  color: #343F4B;
  margin-top: 44px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  flex: 1 1 160px;
  min-width: 150px;
}
.footer-brand img {
  height: 42px;
  margin-bottom: 7px;
}
.footer-brand span {
  font-size: 0.98rem;
}
.quick-nav, .legal-links, .contact-brief {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  gap: 6px;
  flex: 1 1 110px;
}
.quick-nav h4, .legal-links h4, .contact-brief h4 {
  font-size: 1.02rem;
  font-weight: 900;
  color: #1A4B7A;
  margin-bottom: 7px;
}
.quick-nav a, .legal-links a {
  color: #1A4B7A;
  font-size: 0.98rem;
  opacity: 0.93;
  padding: 4px 2px;
  border-radius: 5px;
  transition: background 0.13s;
}
.quick-nav a:hover, .legal-links a:hover {
  background: #FEF8EF;
  color: #CC7A00;
}
.contact-brief address, .contact-brief p {
  color: #425160;
  font-size: 0.94rem;
}
.contact-brief a {
  color: #CC7A00;
}
.contact-brief a:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 0 4px;
  }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #FFF;
  border-top: 3px solid #1A4B7A;
  box-shadow: 0 0 16px 0 rgba(30,56,90,0.08);
  padding: 22px 28px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.37s cubic-bezier(.51,.04,.37,1);
}
.cookie-banner.hidden {
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.cookie-banner p {
  color: #1A4B7A;
  font-size: 1.07rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 700;
  padding: 8px 23px;
  border: none;
  border-radius: 8px;
  background: #1A4B7A;
  color: #FFF;
  margin-right: 11px;
  box-shadow: 0 1px 4px rgba(26,75,122,0.11);
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.19s;
}
.cookie-banner .cookie-btn.accept {
  background: #1A4B7A;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #153d62;
}
.cookie-banner .cookie-btn.reject {
  background: #CC7A00;
  color: #fff;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #A36000;
}
.cookie-banner .cookie-btn.settings {
  background: #E8EEF2;
  color: #1A4B7A;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #F8FAFB;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30,56,90,0.33);
  z-index: 2200;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 11px 52px rgba(30,56,90,0.14);
  padding: 38px 32px 24px 32px;
  width: 400px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: cookieModalPop 0.32s ease;
}
@keyframes cookieModalPop {
  0% { transform: scale(0.93); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: #1A4B7A;
  margin-bottom: 9px;
}
.cookie-modal .consent-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  color: #222;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-modal .toggle {
  width: 38px;
  height: 20px;
  background: #E8EEF2;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  margin-left: 9px;
  transition: background 0.16s;
}
.cookie-modal .toggle.active {
  background: #1A4B7A;
}
.cookie-modal .toggle-switch {
  position: absolute;
  background: #FFF;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  top: 1.5px;
  left: 2px;
  box-shadow: 0 1px 5px rgba(30,56,90,0.10);
  transition: left 0.16s;
}
.cookie-modal .toggle.active .toggle-switch {
  left: 19px;
}
.cookie-modal .desc {
  color: #555;
  font-size: 0.95rem;
  margin-top: 2px;
  margin-left: 28px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-btn-row {
  margin-top: 13px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-modal .cookie-btn.close {
  background: #E8EEF2;
  color: #1A4B7A;
}
.cookie-modal .cookie-btn.close:hover {
  background: #F8FAFB;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 16px 6px 12px 6px;
    min-width: 0;
    width: 100vw;
    max-width: 100vw;
  }
}

/* === ANIMATIONS / MICROINTERACTIONS === */
.cta, .cta-banner a, .cta.primary, .cta.accent,
.card, .feature-grid > div, .service-list > div, .testimonial-card {
  transition: box-shadow 0.19s, background 0.14s, transform .13s;
}
.card:hover, .feature-grid > div:hover, .service-list > div:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.013);
}

/* === GENERAL UTILS === */
::-webkit-input-placeholder { color: #A6B1B9; }
::-moz-placeholder { color: #A6B1B9; }
:-ms-input-placeholder { color: #A6B1B9; }
::placeholder { color: #A6B1B9; }

.hide { display: none !important; }

/* === RESPONSIVE ADAPTATIONS === */
@media (max-width: 600px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  h1 {
    font-size: 1.36rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  h3 {
    font-size: .96rem;
  }
  p, li, address, input, textarea {
    font-size: 0.97rem;
  }
  .cta, .cta-banner a, input[type="submit"] {
    font-size: .96rem;
    padding: 8px 13px;
  }
}

/* === ACCESSIBLE FOCUS STATES === */
a:focus, button:focus, .cta:focus {
  outline: 2px dashed #CC7A00;
  outline-offset: 2px;
}

/* === UTILITY CLASSES FOR FLEX SPACINGS === */
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.gap-32 { gap: 32px !important; }

/* === END CSS === */
