/*----------------------------------------
  CSS RESET & NORMALIZATION
----------------------------------------*/
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #f9fbfd;
  color: #18406A;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}
:focus-visible {
  outline: 2px solid #EFA448;
  outline-offset: 2px;
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: linear-gradient(135deg, #C9D6E3 0%, #f9fbfd 100%);
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #18406A;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5 {
  font-size: 1.1rem;
}
p, ul, ol, blockquote {
  font-size: 1rem;
  color: #29568F;
  margin-bottom: 16px;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #18406A;
  border-left: 4px solid #EFA448;
  padding-left: 14px;
  margin-top: 8px;
}

strong {
  font-weight: 700;
}

/*----------------------------------------
  LAYOUT: CONTAINER & UTILITY CLASSES
----------------------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(24, 64, 106, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.text-section {
  padding-top: 12px;
  padding-bottom: 12px;
}

/*----------------------------------------
  HEADER & NAV STYLES
----------------------------------------*/
header {
  background: linear-gradient(93deg, #18406A 0%, #29568F 100%);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(24,64,106,0.04);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #fff;
  padding: 6px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #EFA448;
  color: #18406A;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: linear-gradient(90deg, #EFA448 0%, #FFD799 100%);
  color: #18406A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(239, 164, 72, 0.12);
  margin-left: 16px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFD799 0%, #EFA448 100%);
  color: #18406A;
  box-shadow: 0 3px 14px rgba(239, 164, 72, 0.18);
}

/*----------------------------------------
  MOBILE MENU / BURGER
----------------------------------------*/
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  padding: 8px 10px;
  margin-left: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  z-index: 26;
}
.mobile-menu-toggle:focus {
  background: #EFA448;
  color: #18406A;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: linear-gradient(90deg, #18406A 80%, #29568F 100%);
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 30;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.42,0,0.58,1);
  box-shadow: 0 4px 32px rgba(24,64,106,0.18);
  padding: 24px 32px 0 32px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #EFA448;
  color: #18406A;
  border: none;
  font-size: 2rem;
  padding: 6px 14px;
  margin-bottom: 20px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #FFD799;
  color: #18406A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 8px;
  padding: 10px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #EFA448;
  color: #18406A;
}

@media (max-width: 1100px) {
  .container { max-width: 95vw; }
}
@media (max-width: 900px) {
  .main-nav { gap: 12px; }
  .container { max-width: 100vw; }
  .cta-btn { margin-left: 0; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 6px;
    min-height: 62px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*----------------------------------------
  FOOTER
----------------------------------------*/
footer {
  background: linear-gradient(93deg, #18406A 0%, #29568F 100%);
  color: #fff;
  padding: 34px 0 16px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
footer img {
  height: 40px;
  margin-right: 20px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-direction: column;
  justify-content: flex-start;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 3px 3px;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #EFA448;
  color: #18406A;
}
.footer-contact {
  font-size: 0.95rem;
  color: #C9D6E3;
  line-height: 1.57;
}

@media (max-width: 900px) {
  footer .container, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/*----------------------------------------
  SECTION LAYOUTS - FLEXBOX STYLES
----------------------------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .service-list, .service-grid, .features-grid, .feature-list, .logo-grid, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(24, 64, 106, 0.11);
  transition: box-shadow 0.2s;
  position: relative;
  min-width: 250px;
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(24,64,106,0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 20px 18px 20px;
}
.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;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(24,64,106,0.10);
  margin-bottom: 20px;
  padding: 30px 26px 24px 26px;
  position: relative;
  min-width: 270px;
  max-width: 560px;
  color: #18406A;
}
.testimonial-card blockquote {
  margin-bottom: 8px;
  color: #18406A;
  border-left: 4px solid #EFA448;
  padding-left: 16px;
}
.testimonial-details span {
  color: #29568F;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}
.logo-grid img {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(41,86,143,0.08);
  padding: 8px;
}

@media (max-width: 950px) {
  .card-container, .service-list, .service-grid, .features-grid, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 26px 4vw;
    border-radius: 10px;
  }
  .card, .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .logo-grid{
    flex-direction: row;
    gap: 14px;
    margin-top: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/*----------------------------------------
  FEATURES/ICON GRIDS & PRICING CARDS
----------------------------------------*/
.features-grid, .feature-list {
  flex-wrap: wrap;
  gap: 32px 24px;
  margin-top: 16px;
}
.features-grid > div,
.service-list > div,
.service-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24, 64, 106, 0.06);
  padding: 24px 22px 22px 22px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  transition: box-shadow 0.22s, transform 0.18s;
  margin-bottom: 20px;
}
.features-grid > div:hover,
.service-list > div:hover,
.service-grid > div:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px rgba(41,86,143,0.14);
}
.features-grid img,
.service-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 13px;
  border-radius: 10px;
  background: #C9D6E3;
  padding: 6px;
  box-shadow: 0 1px 7px rgba(24, 64, 106, 0.10);
}
.price {
  margin-top: 16px;
  font-weight: 700;
  color: #EFA448;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .features-grid > div,
  .service-list > div,
  .service-grid > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
  }
  .features-grid,
  .service-list,
  .service-grid {
    gap: 16px;
  }
}

/*----------------------------------------
  STEP-LIST (PROCES IMPORTU)
----------------------------------------*/
.step-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  counter-reset: step;
}
.step-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 11px rgba(24,64,106, .07);
  padding: 24px 22px 18px 54px;
  position: relative;
  margin-bottom: 18px;
}
.step-list li:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 20px;
  background: #18406A;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 2px 7px rgba(41,86,143,.11);
}
@media (max-width: 600px) {
  .step-list li {
    padding: 17px 10px 13px 40px;
  }
  .step-list li:before{
    width: 24px;
    height: 24px;
    top: 12px;
    left: 8px;
    font-size: 1rem;
  }
}

/*----------------------------------------
  FAQ ACCORDION
----------------------------------------*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-accordion dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  color: #18406A;
  margin-bottom: 4px;
  background: #C9D6E3;
  padding: 13px 16px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-accordion dt:hover,
.faq-accordion dt:focus {
  background: #EFA448;
  color: #18406A;
}
.faq-accordion dd {
  font-size: 1rem;
  color: #29568F;
  background: #F6F8FA;
  border-radius: 0 0 7px 7px;
  padding: 11px 17px 15px 23px;
  margin-bottom: 10px;
}

/*----------------------------------------
  INPUTS, FORM FIELDS, NEWSLETTER
----------------------------------------*/
input[type=email],
input[type=text],
textarea {
  border: 1.4px solid #C9D6E3;
  background: #fff;
  border-radius: 7px;
  padding: 8px 12px;
  font-size: 1rem;
  color: #18406A;
  margin-bottom: 12px;
  transition: border 0.18s;
  min-width: 180px;
  width: 100%;
}
input:focus, textarea:focus {
  border-color: #EFA448;
}
button[type=submit], .newsletter-form button, .cookie-banner .cookie-btn {
  background: linear-gradient(90deg, #EFA448 0%, #FFD799 100%);
  color: #18406A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 7px;
  padding: 11px 22px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s, color 0.14s;
}
button[type=submit]:hover,
button[type=submit]:focus,
.newsletter-form button:hover,
.newsletter-form button:focus,
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: linear-gradient(90deg, #FFD799 0%, #EFA448 100%);
  color: #18406A;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.newsletter-info {
  color: #EFA448;
  font-size: 0.95rem;
  margin-top: 5px;
  font-style: italic;
}

/*----------------------------------------
  CONTACT (GRID ON DESKTOP)
----------------------------------------*/
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.contact-info-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(24,64,106,0.07);
  padding: 20px 26px;
  min-width: 180px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #29568F;
}
.map-location {
  margin-top: 10px;
  color: #29568F;
  display: flex;
  align-items: center;
}
.map-location img {
  height: 22px;
  width: 22px;
  margin-right: 7px;
}

@media (max-width: 600px) {
  .contact-info-grid {
    flex-direction: column;
    gap: 10px;
  }
  .contact-info-grid > div {
    padding: 14px 12px;
  }
}

/*----------------------------------------
  MISCELLANEOUS TYPOGRAPHY & ELEMENTS
----------------------------------------*/
ul, li {
  margin: 0 0 6px 0;
  padding: 0;
  font-size: 1rem;
}
ul li {
  position: relative;
  padding-left: 22px;
}
ul li:before {
  content: '';
  display: block;
  position: absolute;
  left: 7px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #EFA448;
}

ol {
  counter-reset: ol-counter;
}
ol li {
  counter-increment: ol-counter;
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
ol li:before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 7px;
  top: 0;
  color: #EFA448;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}

/*----------------------------------------
  COOKIE CONSENT BANNER
----------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff5e6;
  color: #18406A;
  box-shadow: 0 -2px 24px rgba(24, 64, 106, 0.12);
  border-top: 3px solid #EFA448;
  z-index: 90;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 18px 20px 18px 26px;
  gap: 30px;
  font-size: 1rem;
  animation: cookieBannerSlideIn 0.6s cubic-bezier(0.52,0,0.62,1);
}
@keyframes cookieBannerSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner .cookie-btn {
  margin-left: 10px;
  margin-right: 0;
  min-width: 110px;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #18406A;
  border: 1.5px solid #EFA448;
  margin-left: 8px;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #EFA448;
  color: #18406A;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.98rem;
    padding: 13px 12px 13px 14px;
  }
  .cookie-banner .cookie-btn {
    min-width: 90px;
    margin-left: 0;
  }
}

/*----------------------------------------
  COOKIE MODAL (PRIVACY PREFERENCES)
----------------------------------------*/
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,64,106,0.37);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.32s;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 470px;
  width: 93vw;
  box-shadow: 0 3px 28px rgba(24,64,106,0.17);
  padding: 36px 26px 26px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideModalIn 0.3s;
}
@keyframes slideModalIn {
  0% { opacity: 0; transform: translateY(34px); }
  100% { opacity: 1; transform: translateY(0px); }
}
.cookie-modal h3 {
  font-size: 1.22rem;
  color: #18406A;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 12px;
  margin-bottom: 11px;
  color: #29568F;
}
.cookie-toggle-switch {
  width: 42px;
  height: 22px;
  border-radius: 14px;
  background: #C9D6E3;
  position: relative;
  margin-right: 8px;
  cursor: pointer;
  transition: background 0.19s;
  display: inline-block;
}
.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(24,64,106,0.11);
  transition: left 0.21s cubic-bezier(0.5,0,0.8,1.1), background 0.13s;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider {
  left: 22px;
  background: #EFA448;
}
.cookie-toggle-switch input:checked ~ .cookie-toggle-bg {
  background: #EFA448;
}
.cookie-modal .cookie-btn {
  margin-top: 16px;
  background: linear-gradient(90deg, #EFA448 0%, #FFD799 100%);
  color: #18406A;
  padding: 11px 25px;
  border-radius: 8px;
  font-weight: 700;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 1.22rem;
  color: #18406A;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #C9D6E3;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 18px 7vw 18px 7vw;
    max-width: 98vw;
    min-width: 0;
  }
}

/*----------------------------------------
  TRANSITIONS & MICRO-INTERACTIONS
----------------------------------------*/
a, button, .cta-btn, .main-nav a, .mobile-nav a, .features-grid > div, .service-list > div, .service-grid > div, .faq-accordion dt {
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, transform 0.18s;
}

/* Card hover tilt */
.card, .testimonial-card, .features-grid > div, .service-list > div, .service-grid > div {
  transition: box-shadow 0.19s, transform 0.12s;
}
.card:hover, .testimonial-card:hover, .features-grid > div:hover, .service-list > div:hover, .service-grid > div:hover {
  transform: translateY(-3px) scale(1.018);
  box-shadow: 0 8px 30px rgba(36,69,128,.11);
}

/*----------------------------------------
  RESPONSIVE TYPOGRAPHY SIZES
----------------------------------------*/
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.08rem;
  }
  body, p, ul, li, blockquote {
    font-size: 0.97rem;
  }
}

/*----------------------------------------
  VISIBILITY HELPERS
----------------------------------------*/
.hidden { display: none !important; }

/*----------------------------------------
  ACCESSIBILITY
----------------------------------------*/
::-webkit-input-placeholder { color: #7e99b3; opacity: 0.95; }
::-moz-placeholder { color: #7e99b3; opacity: 0.95; }
:-ms-input-placeholder { color: #7e99b3; opacity: 0.95; }
::placeholder { color: #7e99b3; opacity: 0.95; }

/*----------------------------------------
  CUSTOM SCROLL BAR FOR MODERN FEEL
----------------------------------------*/
body {
  scrollbar-width: thin;
  scrollbar-color: #EFA448 #C9D6E3;
}
body::-webkit-scrollbar {
  width: 9px;
  background: #C9D6E3;
}
body::-webkit-scrollbar-thumb {
  background: #EFA448;
  border-radius: 6px;
}

/*----------------------------------------
  GRADIENTS FOR DECORATIVE ELEMENTS (NO GRID)
----------------------------------------*/
/* Subtle gradient header/section backgrounds if wanted */
.gradient-bg {
  background: linear-gradient(103deg, #C9D6E3 0%, #fff 100%);
}

/*----------------------------------------
  ENSURE NO OVERLAPPING! ALL SPACING & FLEX
----------------------------------------*/
.card-container > *,
.service-list > *,
.service-grid > *,
.features-grid > *,
.content-grid > *,
.logo-grid > *,
.step-list > *,
.feature-list > *,
.contact-info-grid > * {
  margin-bottom: 0;
  margin-right: 0;
}

/*----------------------------------------
  PRINT STYLES
----------------------------------------*/
@media print {
  header, footer, .cookie-banner, .mobile-menu {display:none !important;}
  .section { box-shadow: none; border-radius:0; background: #fff; }
}
