/* ==== 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;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F5F8FA;
  font-family: 'Roboto', Arial, sans-serif;
  color: #28436A;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
a {
  color: #28436A;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:focus,
a:hover {
  color: #F89F3D;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}
th, td {
  text-align: left;
  padding: 12px 10px;
  background: #fff;
  border-radius: 8px;
  border: none;
  font-family: 'Roboto', Arial, sans-serif;
}
th {
  font-weight: 600;
  background: #e6f0fa;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #28436A;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, span, li, td, th, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #28436A;
}
blockquote {
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #20416d;
  background: #efedfa;
  padding: 18px 24px;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(144,176,203,0.10);
  margin-bottom: 8px;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 6px 32px 0 rgba(144,176,203,0.11);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: linear-gradient(90deg,#EAF7FB 0%,#F9E9F3 100%);
  box-shadow: 0 2px 18px 0 rgba(146,168,193,0.09);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
}
.logo-link img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #28436A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  padding: 6px 10px;
  border-radius: 14px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: #f1f3fa;
  color: #F89F3D;
}
.cta-btn {
  background: #F89F3D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  border: none;
  border-radius: 22px;
  padding: 11px 32px;
  cursor: pointer;
  box-shadow: 0 4px 18px 0 rgba(255,185,105,0.13);
  margin-left: 20px;
  transition: background 0.19s, box-shadow 0.19s, transform 0.19s;
  outline: none;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #e28317;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(255,185,105,0.19);
}
.mobile-menu-toggle {
  font-size: 2.1rem;
  font-weight: bold;
  color: #28436A;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 14px;
  padding: 6px 20px 6px 10px;
  margin-left: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(142, 170, 232, .07);
  display: none;
  transition: background .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #EEF6FF;
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(240,245,255,0.97);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.77,.2,.05,1.0);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 24px;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #28436A;
  margin: 16px 20px 16px 0;
  cursor: pointer;
  transition: color .2s;
  outline: none;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #F89F3D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  border-radius: 12px;
  padding: 10px 16px;
  color: #28436A;
  transition: background 0.17s, color 0.17s;
  background: none;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f2f0ff;
  color: #F89F3D;
}

/* ==== HERO ==== */
.hero {
  width: 100%;
  background: linear-gradient(99deg, #F5F8FA 70%, #DDE7EF 100%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 10px 34px 0 rgba(173,156,220,0.08);
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero .container {
  min-height: 300px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 660px;
}
.hero h1 {
  font-size: 2.35rem;
  color: #28436A;
  font-weight: 800;
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.25rem;
  color: #46629B;
  margin-bottom: 18px;
  max-width: 600px;
}

/* ==== FLEX LAYOUTS ==== */
.card-container, .service-cards, .content-grid, .features-list, .services-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(156,189,231,0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 28px;
  background: #faf7ff;
  border-radius: 27px;
  box-shadow: 0 3px 24px 0 rgba(145,162,214,0.15);
  transition: box-shadow .21s;
  min-width: 270px;
  max-width: 540px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 11px 32px 0 rgba(134, 134, 210, 0.19);
}
.testimonial-card blockquote {
  color: #20305D;
  background: none;
  margin-bottom: 0;
  padding: 0;
  font-size: 1.17rem;
}
.testimonial-card .client-name {
  font-weight: 700;
  color: #28436A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
}
.feature-item, .features-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f5f2fd;
  border-radius: 20px;
  padding: 18px 20px 18px 64px;
  min-width: 220px;
  position: relative;
}
.features-list img, .services-list img {
  position: absolute;
  top: 18px; left: 20px;
  height: 32px; width: 32px;
}
.features-list {
  gap: 20px;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.services-list li {
  flex: 1 1 280px;
  background: #fff1ea;
  border-radius: 22px;
  box-shadow: 0 2px 13px 0 rgba(247, 185, 134, 0.07);
  padding: 24px 22px 24px 68px;
  min-width: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.services-list h3 {
  margin-bottom: 6px;
}
.services-list span {
  font-weight: 600;
  color: #F89F3D;
  margin-top: 10px;
}

.service-cards {
  gap: 24px;
}
.service-card {
  flex: 1 1 240px;
  background: #fff1ea;
  border-radius: 20px;
  box-shadow: 0 2px 13px 0 rgba(247, 185, 134, 0.08);
  padding: 24px 22px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.service-card h3 {
  font-size: 1.1rem;
}
.service-price {
  font-weight: 600;
  color: #F89F3D;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 12px;
}

.faq-list {
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #f5f2fd;
  border-radius: 20px;
  padding: 18px 24px;
  box-shadow: 0 2px 13px 0 rgba(189,195,235,0.06);
}
.case-study {
  background: #e6f0fa;
  border-radius: 18px;
  padding: 18px 24px;
  margin-bottom: 14px;
}

/* ==== CTA Banner ==== */
.cta-banner {
  background: linear-gradient(91deg, #FDF6E9 55%, #F2E8FC 100%);
  border-radius: 30px;
  box-shadow: 0 1px 12px 0 rgba(255,185,105,0.07);
  margin-bottom: 60px;
  margin-top: 30px;
}
.cta-banner h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  font-weight: 700;
}
.cta-banner .cta-btn {
  margin-left: 0;
}

/* ==== FOOTER ==== */
footer {
  background: #f7f6fc;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -4px 24px 0 rgba(157,181,232,0.07);
  margin-top: 60px;
  padding: 36px 0 18px 0;
  width: 100%;
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 10px;
}
.footer-nav a {
  color: #46629B;
  font-size: 15px;
  transition: color .17s;
}
.footer-nav a:hover {
  color: #F89F3D;
}
.contact-info {
  font-size: 15px;
  line-height: 1.5;
  color: #46629B;
}
footer .logo-link img {
  height: 36px;
  width: auto;
}

/* ==== TEXT/UTIL SECTIONS ==== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #28436A;
}
.text-section ul, .text-section ol {
  margin-left: 18px;
  margin-bottom: 8px;
}
.text-section li {
  margin-bottom: 3px;
  font-family: 'Roboto', Arial, sans-serif;
}
.text-section a {
  color: #F89F3D;
  text-decoration: underline;
}
.text-section a:hover {
  color: #28436A;
  text-decoration: underline;
}

/* ==== RESPONSIVE STYLE ==== */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .service-cards, .card-container, .features-list, .services-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .service-card, .services-list li, .feature-item, .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .footer-nav, .contact-info {
    font-size: 14px;
  }
  footer .container {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.23rem; }
  .container {
    max-width: 100vw;
    padding: 0 7px;
  }
  .main-nav, .cta-btn {
    display: none;
  }
  header .container {
    padding: 13px 6px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    padding: 22px 7px;
    margin-bottom: 34px;
  }
  .faq-item, .testimonial-card, .card, .service-card {
    padding: 13px 8px;
  }
  .hero {
    padding: 30px 0 30px 0;
    border-radius: 0 0 22px 22px;
  }
}
@media (max-width: 520px) {
  .testimonial-card {
    padding: 12px 5px;
    min-width: 0;
  }
  .cta-btn {
    padding: 10px 15px;
    font-size: 15px;
  }
  .mobile-nav a {
    font-size: 1rem;
    padding: 10px 7px;
  }
}

/* === ANIMATIONS & EFFECTS === */
.cta-btn, .main-nav a, .footer-nav a, .mobile-nav a, button {
  transition: background 0.20s, color 0.17s, box-shadow 0.17s, transform .16s;
}
.section, .card, .service-card, .case-study, .testimonial-card, .faq-item {
  transition: box-shadow 0.17s, background 0.22s;
}
.section:hover, .card:hover, .service-card:hover, .case-study:hover {
  box-shadow: 0 7px 27px 0 rgba(193, 173, 232, 0.13);
  background: #F9F7FF;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 24px;
  z-index: 1200;
  background: #f9f7fc;
  border-radius: 22px;
  box-shadow: 0 2px 24px 0 rgba(147, 165, 205, 0.16);
  padding: 20px 14px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  max-width: 95vw;
  transition: opacity .3s, bottom .3s;
}
.cookie-consent-banner.visible {
  opacity: 1;
  pointer-events: auto;
  bottom: 24px;
}
.cookie-consent-banner p {
  color: #28436A;
  font-size: 1rem;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.cookie-btn {
  border-radius: 14px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  margin-right: 10px;
  outline: none;
}
.cookie-btn.accept {
  background: #F89F3D;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #d98212;
}
.cookie-btn.reject {
  background: #e9ecf7;
  color: #28436A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F3D8E6;
  color: #20416d;
}
.cookie-btn.settings {
  background: #FDF6E9;
  color: #28436A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e5ddfa;
  color: #ac3bac;
}

/* ==== COOKIE CONSENT MODAL ==== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32, 55, 112, 0.34);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-box {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 40px rgba(83,110,199,0.13);
  padding: 36px 30px 32px 30px;
  min-width: 310px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: modalIn .36s cubic-bezier(.79,.18,.29,.99);
}
@keyframes modalIn {
  0% { opacity: 0; transform: scale(0.93) translateY(70px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 18px;
  font-size: 1.7rem;
  border: none;
  background: none;
  color: #28436A;
  cursor: pointer;
  border-radius: 6px;
  transition: color .15s, background .15s;
  padding: 0 7px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F89F3D;
  background: #ecedf9;
}
.cookie-modal h2 {
  font-size: 1.33rem;
  color: #28436A;
  font-weight: 700;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1rem;
  color: #28436A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 38px; height: 22px;
  background: #e5e7fb;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #F89F3D;
}
.cookie-toggle:disabled {
  background: #ddd8ef;
  cursor: not-allowed;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.18s, background 0.17s;
  box-shadow: 0 1px 3px 0 rgba(89,111,222,0.08);
}
.cookie-toggle:checked::before {
  left: 18px;
  background: #fff7e6;
}
.cookie-toggle:disabled::before {
  background: #f3f2f2;
}

.cookie-modal .cookie-btn {
  margin-top: 10px;
  margin-right: 8px;
}

@media (max-width: 600px) {
  .cookie-modal-box {
    padding: 20px 10px 18px 10px;
    min-width: 0;
    max-width: 99vw;
  }
  .cookie-consent-banner {
    left: 3px; right: 3px; padding: 14px 6px 14px 9px;
    font-size: 0.97rem;
  }
}

/* ==== COMPONENT MICRO-INTERACTIONS ==== */
input, textarea, select {
  border-radius: 11px;
  border: 1.2px solid #c8d2eb;
  padding: 9px 14px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #28436A;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.2px solid #F89F3D;
  background: #FFFDF7;
}

/* ==== UTILS ==== */
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-4 { margin-bottom: 32px !important; }

/* ==== PRINT ==== */
@media print {
  header, .main-nav, .cta-btn, .mobile-menu, .cookie-consent-banner, .cookie-modal, footer { display: none !important; }
  body { background: #fff; }
  .section, .card, .faq-item { box-shadow: none !important; background: #fff !important; }
}

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