/* --- CSS RESET/BASE --- */
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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  color: #153448;
  line-height: 1.65;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #153448;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover {
  color: #E9A844;
}

/* --- FONT IMPORT --- */
@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 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #153448;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.33rem; margin-bottom: 10px; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
p, li, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #153448;
  margin-bottom: 1em;
}

ul, ol { list-style: none; padding-left: 0; }
ul li, ol li { margin-bottom: 8px; }

b, strong { font-weight: bold; }

hr { border: none; border-bottom: 1px solid #eee; margin: 36px 0; }

/* --- CONTAINER & SPACING --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(21,52,72,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(21,52,72,0.09);
  padding: 24px;
  min-width: 300px;
  flex: 1 1 300px;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(21,52,72,0.15);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px 0 rgba(21,52,72,0.09);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  max-width: 480px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(90deg, #FFE8BA 0%, #E9A844 60%, #fefefe 100%);
  padding: 64px 0 56px 0;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: #153448;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.hero .subheadline {
  font-size: 1.18rem;
  color: #353535;
  margin-bottom: 32px;
}

.hero .cta.primary {
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .hero { padding: 42px 0 24px 0; min-height: unset; }
  .hero h1 { font-size: 1.5rem; }
}

/* --- MAIN NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid #F3F3F4;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px 14px 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  z-index: 8;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #153448;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
  letter-spacing: 0.02em;
}
.main-nav a:hover, .main-nav a.active {
  color: #E9A844;
  border-bottom: 2px solid #E9A844;
}

.cta, .cta.primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  padding: 12px 28px;
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(21,52,72,0.09);
  background: linear-gradient(90deg, #E9A844, #FFE8BA 85%);
  color: #153448;  
  border: none;
  cursor: pointer;
  transition: box-shadow 0.19s, background 0.19s, color 0.19s;
  margin-left: 10px;
}
.cta.primary {
  background: linear-gradient(90deg, #153448 20%, #E9A844 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(21,52,72,0.13);
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, #F2C567 10%, #E9A844 90%);
  color: #153448;
  box-shadow: 0 6px 32px rgba(233,168,68,0.22);
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(85deg, #E9A844 5%, #153448 99%);
  color: #fff;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #153448;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 30;
  position: relative;
}
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,52,72,0.97);
  color: #fff;
  z-index: 500;
  display: flex;
  flex-direction: column;
  transition: transform 0.40s cubic-bezier(.54,.08,.42,1.07);
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 26px 0 0;
  background: none;
  font-size: 2rem;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 4px 12px 4px 4px;
  transition: color 0.15s;
}
.mobile-menu-close:hover { color: #E9A844; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  margin-top: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.25rem;
  padding: 18px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-color 0.16s;
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover {
  color: #E9A844;
  border-color: #E9A844;
  background: rgba(233,168,68,0.14);
}

@media (max-width: 489px) {
  .mobile-nav a { font-size: 1.1rem; padding: 11px 0; }
}

/* --- SECTIONS, FEATURES, SERVICE CARDS --- */
.feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 16px 0;
}
.feature {
  flex: 1 1 220px;
  min-width: 220px;
  background: #FFF8E8;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(233,168,68,0.08);
  padding: 30px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  transition: box-shadow 0.22s, top 0.18s;
  margin-bottom: 20px;
}
.feature:hover {
  box-shadow: 0 8px 32px 0 rgba(233,168,68,0.17);
  top: -3px;
}
.feature img {
  max-width: 40px;
  margin-bottom: 4px;
}

.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 2px;
  padding-left: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #153448;
}
.usp-list li {
  font-weight: 500;
  font-size: 1.05rem;
  background: #FFE8BA;
  color: #153448;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 0;
  margin-right: 7px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px 0 rgba(233,168,68,0.06);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 270px;
  min-width: 250px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(21,52,72,0.06);
  padding: 26px 22px 18px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.19s, top 0.19s;
}
.service-card:hover {
  top: -2px;
  box-shadow: 0 8px 32px 0 rgba(21,52,72,0.11);
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 7px 15px;
  background: #FFE8BA;
  border-radius: 18px;
  color: #153448;
  margin-top: 10px;
}

/* --- CTA SECTION --- */
.cta-section {
  width: 100%;
  padding: 40px 0;
  background: linear-gradient(90deg, #FFE8BA 0%, #E9A844 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 18px;
}
.cta-section p {
  font-size: 1.21rem;
  font-weight: 500;
  margin-bottom: 2px;
}

/* --- TESTIMONIALS --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px 0 rgba(21,52,72,0.09);
  padding: 24px 26px 22px 26px;
  color: #1C2632;
  min-width: 260px;
  max-width: 440px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.testimonial-card p {
  color: #1C2632;
  font-size: 1.04rem;
  font-style: italic;
  margin-bottom: 0.6em;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #E9A844;
  font-size: 1.06rem;
  font-weight: 700;
}

.case-study {
  background: #f7fafc;
  border-radius: 12px;
  padding: 22px 18px 19px 18px;
  border-left: 4px solid #E9A844;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(21,52,72,0.04);
}
.case-study h3 {
  margin-bottom: 8px;
}

/* --- FAQ Accordions --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  padding: 20px;
  background: #FFF8E8;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(233,168,68,0.06);
}
.faq-item h2 {
  font-size: 1.13rem;
  margin-bottom: 9px;
}
.faq-item p {
  font-size: 1rem;
  margin-bottom: 0;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* --- THANK YOU --- */
.thankyou-message {
  background: #FFF8E8;
  border-radius: 16px;
  padding: 32px;
  margin-top: 20px;
  text-align: center;
  box-shadow: 0 2px 12px 0 rgba(233,168,68,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* --- FOOTER --- */
footer {
  background: #153448;
  color: #fff;
  padding: 44px 0 0 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.footer-contact {
  min-width: 215px;
  flex: 1 1 215px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact img {
  width: 44px;
  height: auto;
  margin-bottom: 12px;
}
.footer-contact address,
.footer-contact a {
  font-size: 0.98rem;
  color: #fff;
  font-style: normal;
  transition: color 0.13s;
}
.footer-contact a:hover { color: #E9A844; }
.footer-nav,
.footer-legal {
  min-width: 140px;
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.footer-nav strong, .footer-legal strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #E9A844;
  font-weight: 600;
}
.footer-nav a,
.footer-legal a {
  color: #fff;
  text-decoration: none;
  transition: color 0.13s;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 3px;
}
.footer-nav a:hover,
.footer-legal a:hover {
  color: #E9A844;
}
.copyright {
  font-size: 0.93rem;
  color: #d6dde2;
  padding: 8px 0 28px 0;
  text-align: center;
  border-top: 1px solid #1E405C;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  color: #153448;
  box-shadow: 0 -2px 16px rgba(21,52,72,0.07);
  border-top: 2px solid #E9A844;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  animation: fadeinup 0.85s cubic-bezier(.54,.08,.42,1.07);
}
@keyframes fadeinup {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text { flex: 2 1 200px; }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 21px;
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  box-shadow: 0 1px 6px 0 rgba(233,168,68,0.09);
}
.cookie-btn.accept {
  background: #E9A844;
  color: #153448;
}
.cookie-btn.reject {
  background: #f2f2f2;
  color: #153448;
}
.cookie-btn.settings {
  background: #153448;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.08);
  outline: none;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21,52,72,0.33);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinbl 0.35s;
}
@keyframes fadeinbl {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(21,52,72,0.21);
  min-width: 320px;
  max-width: 90vw;
  padding: 36px 24px 28px 24px;
  color: #153448;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 10001;
  animation: fadeinup 0.5s cubic-bezier(.54,.08,.42,1.07);
}
.cookie-modal h3 {
  font-size: 1.28rem;
  color: #153448;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category input[type='checkbox'] {
  accent-color: #E9A844;
  width: 20px; height: 20px;
}
.cookie-modal .cookie-category span {
  font-weight: 500;
}
.cookie-modal .cookie-category--essential {
  color: #153448;
}
.cookie-modal .cookie-category--essential input {
  display: none;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #E9A844;
  cursor: pointer;
  padding: 0 7px;
}
.cookie-modal .cookie-modal-close:hover { color: #153448; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .feature-grid, .service-cards, .testimonial-slider, .card-container {
    gap: 20px;
  }
  .footer-columns {
    gap: 20px;
  }
}
@media (max-width: 1020px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .footer-columns { flex-direction: column; gap: 24px; }
  .footer-contact, .footer-nav, .footer-legal { flex: 1 1 100%; min-width: 0; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 825px) {
  .feature-grid, .service-cards, .testimonial-slider, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .service-card, .testimonial-card, .case-study {
    min-width: unset;
    width: 100%;
  }
  .footer-columns { flex-direction: column; gap: 18px; }
}
@media (max-width: 768px) {
  .content-wrapper, .section, .case-study, .thankyou-message {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
  }
  .section { padding: 24px 0; }
  .cta-section { padding: 24px 0; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 579px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 10px 20px 12px;
    font-size: 0.96rem;
  }
  .cookie-banner__actions { gap: 9px; }
  .cookie-btn { font-size: 0.97rem; padding: 9px 14px; }
}
@media (max-width: 439px) {
  .cookie-modal { min-width: 98vw; padding: 18px 7px; }
  .cookie-modal h3 { font-size: 1.05rem; }
}

/* --- FORM ELEMENTS --- */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 13px;
  border-radius: 8px;
  border: 1px solid #dbe6f5;
  background: #fff;
  color: #153448;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
input:focus, select:focus, textarea:focus {
  border-color: #E9A844;
  box-shadow: 0 0 0 2px #ffecc8;
}
button {
  font-family: inherit;
}

/* --- SCROLLBAR STYLING --- */
::-webkit-scrollbar { width: 7px; background: #ffecc8; }
::-webkit-scrollbar-thumb { background: #E9A844; border-radius: 3px; }

/* --- UTILITY CLASSES --- */
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* --- ACCORDION / FAQ --- */
.faq-accordion .faq-item {
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.18s;
}
.faq-accordion .faq-item.opened {
  background: #fffbe8;
  box-shadow: 0 3px 18px 0 rgba(233,168,68,0.16);
}

/* --- ANIMATIONS --- */
@media (prefers-reduced-motion: no-preference) {
  .cta, .cta.primary, .card, .service-card, .feature, .testimonial-card, .case-study {
    transition: box-shadow 0.2s, background 0.22s, color 0.19s, top 0.18s, transform 0.19s;
  }
  .cta-section, .cookie-banner, .mobile-menu {
    transition: background 0.2s, color 0.2s, transform 0.38s, opacity 0.2s;
  }
}

/* Hide mobile menu when not open */
.mobile-menu { visibility: hidden; }
.mobile-menu.open { visibility: visible; }
