/* 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 {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  background: #F5F6FA;
  color: #244C5A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  border-style: none;
}
input, textarea, button, select {
  font-family: inherit;
  font-size: 1em;
  outline: none;
  border: none;
  background: none;
}
a {
  color: #445C7C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #244C5A;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 10px;
  text-align: left;
}
th {
  background: #E6ECF5;
  color: #244C5A;
  font-weight: 700;
}
tr:nth-child(even) td {
  background: #F5F6FA;
}
/* BRAND COLORS */
:root {
  --primary: #244C5A;
  --secondary: #A6B5BD;
  --accent: #F5F6FA;
  --pastel-blue: #B7DAF8;
  --pastel-green: #D2F0EA;
  --pastel-lavender: #E7E6FB;
  --pastel-rose: #F9D6DF;
  --pastel-yellow: #FAF3D4;
  --text-main: #244C5A;
  --text-dark: #183642;
  --text-soft: #60798B;
  --white: #fff;
  --shadow: 0 4px 18px 0 rgba(120, 154, 176, 0.10);
  --radius: 20px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, ul, ol, dl, table, blockquote {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--text-main);
}
strong {
  color: var(--text-dark);
  font-weight: bold;
}
em {
  color: var(--secondary);
}

/* LAYOUT: CONTAINER */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 18px;
}
/* CONSISTENT SECTION SPACING */
.section,
main > section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section,
  main > section,
  section {
    margin-bottom: 40px;
    padding: 30px 5px;
  }
}
.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  max-width: 750px;
}
.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: 20px;
  }
}

/* FLEXBOX ALIGNMENT PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(36,76,90,0.10);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 210px;
  background: linear-gradient(135deg, #E7E6FB 0%, #F9D6DF 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  transition: box-shadow 0.18s;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px #b7daf8b4);
}
.feature:hover {
  box-shadow: 0 6px 30px 0 rgba(182, 197, 234, 0.16);
}

/* CARDS & MICROINTERACTIONS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 28px 20px 28px;
  background: linear-gradient(120deg, #B7DAF8 0%, #D2F0EA 100%);
  border-radius: var(--radius);
  box-shadow: 0 2px 14px 0 rgba(135, 173, 212, 0.13);
  margin-bottom: 24px;
  color: var(--text-dark);
}
.testimonial-card p {
  color: var(--text-dark);
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1.6;
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 12px 10px 10px 10px;
  }
}

/* PROJECT SUMMARY (REFERENCES) */
.project-summary {
  background: var(--pastel-lavender);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 20px 22px 17px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-summary h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

/* CTA BUTTONS */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-blue);
  color: var(--primary);
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(120, 154, 176, 0.06);
  transition: background 0.22s, color 0.18s, box-shadow 0.18s;
  gap: 8px;
}
.cta-button.primary {
  background: var(--primary);
  color: var(--white);
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 6px 24px 0 rgba(36,76,90,0.09);
  text-decoration: none;
}

/* MAIN NAVIGATION */
header {
  background: var(--white);
  box-shadow: 0 2px 14px rgba(182, 197, 234, 0.07);
  position: relative;
  z-index: 49;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 18px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.16s;
  font-size: 1.03rem;
  padding: 6px 12px;
  border-radius: 8px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-blue);
  color: var(--text-main);
}
.logo img {
  height: 38px;
  width: auto;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--pastel-blue);
  color: var(--primary);
  border-radius: 50%;
  border: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: 90;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--white);
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(168, 200, 222, 0.15);
  transition: opacity 0.16s;
  will-change: transform, opacity;
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 1;
}
.mobile-menu .mobile-menu-close {
  align-self: flex-end;
  background: var(--pastel-blue);
  color: var(--primary);
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 1.9rem;
  margin: 16px 22px 0 0;
  cursor: pointer;
  transition: background 0.17s;
}
.mobile-menu .mobile-menu-close:hover, .mobile-menu .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--white);
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  margin-top: 32px;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  color: var(--primary);
  padding: 8px 0;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.14s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--text-main);
  text-decoration: underline;
}

@media (max-width: 1040px) {
  header .container {
    flex-wrap: wrap;
  }
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav, .cta-button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* MOBILE MENU SLIDE ANIMATION */
.mobile-menu {
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(.32,1.17,.61,1), opacity 0.2s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.34s cubic-bezier(.44,1.08,.75,1.19), opacity 0.18s;
}

/* FOOTER */
footer {
  background: var(--pastel-lavender);
  border-top: 1px solid #e6e6e6;
  margin-top: 48px;
  font-size: 1rem;
}
.footer-menu {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.footer-menu a {
  color: var(--primary);
  font-size: 0.99rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--pastel-blue);
}
.footer-contact {
  color: var(--secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 9px 0;
  font-size: 0.99rem;
}
.copyright {
  text-align: center;
  font-size: 0.97rem;
  color: #93a0ad;
  margin: 10px 0 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

@media (max-width: 600px) {
  .footer-menu, .footer-contact {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    margin-left: 10px;
  }
}

/* CONTACT INFO SHORT & OTHERS */
.contact-info-short p, .contact-info-short li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
}
.contact-info-short img {
  width: 21px;
  height: 21px;
}
/* MAP PLACEHOLDER */
.map-placeholder {
  background: var(--pastel-blue);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  min-height: 70px;
}

/* TABLE STYLE (PRICES) */
table {
  margin-bottom: 22px;
  box-shadow: 0 1px 6px 0 rgba(186, 216, 224, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
tr {
  border-bottom: 1px solid #e6ecf5;
}
th, td {
  font-size: 1rem;
}
th {
  background: #E7E6FB;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
}

/* FAQ - DEFINITION LIST */
dl {
  margin-bottom: 18px;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: var(--primary);
  margin-top: 18px;
  font-weight: 600;
}
dd {
  margin-left: 0;
  padding-left: 14px;
  color: var(--text-main);
}

/* MODALS & OVERLAYS (COOKIE CONSENT) */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #FAF3D4 0%, #D2F0EA 100%);
  color: var(--text-dark);
  box-shadow: 0 -6px 28px 0 rgba(182, 197, 234, 0.12);
  z-index: 150;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 30px;
  font-size: 1rem;
  animation: slideup-banner .44s ease;
}
@keyframes slideup-banner {
  from { transform: translateY(150px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  color: var(--text-dark);
  flex: 2 1 300px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  border-radius: 20px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.19s, color 0.17s;
}
.cookie-banner .accept {
  background: var(--primary);
  color: var(--white);
}
.cookie-banner .accept:hover {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .reject {
  background: var(--pastel-rose);
  color: var(--primary);
}
.cookie-banner .reject:hover {
  background: #faeef1;
  color: #b8322c;
}
.cookie-banner .settings {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-banner .settings:hover {
  background: var(--pastel-lavender);
  color: var(--primary);
}
/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 165;
  background: rgba(120, 154, 176, 0.14);
  justify-content: center;
  align-items: center;
}
.cookie-modal.active {
  display: flex;
  animation: fadein-modal .24s;
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 36px 0 rgba(120, 154, 176, 0.18);
  padding: 38px 28px 28px 28px;
  width: 97vw;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  text-align: left;
}
.cookie-modal-content h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  flex: 1 1 0;
  color: var(--text-main);
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: var(--pastel-blue);
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-toggle:checked {
  background: var(--primary);
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: left 0.18s;
}
.cookie-toggle:checked::after {
  left: 19px;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: var(--pastel-blue);
  color: var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  font-size: 1.45rem;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal-content .cookie-modal-close:hover {
  background: var(--secondary);
  color: var(--white);
}
.cookie-modal-content .cookie-btn {
  width: 48%;
  min-width: 92px;
  margin-top: 9px;
  align-self: center;
}
@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 20px 5vw 18px 5vw;
  }
}

/* LISTS */
ul {
  list-style-type: disc;
  padding-left: 28px;
  margin-bottom: 16px;
}
ol {
  list-style-type: decimal;
  padding-left: 28px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 7px;
}

/* GENERAL ANIMATIONS */
.fadein {
  animation: fadein 0.8s;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.btn-animate {
  transition: transform 0.13s, box-shadow 0.16s;
}
.btn-animate:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px 0 rgba(119, 122, 130, 0.09);
}

/* SCROLLBAR SOFT STYLE */
::-webkit-scrollbar {
  width: 8px;
  background: #f2f3f8;
}
::-webkit-scrollbar-thumb {
  background: #c9cfdb;
  border-radius: 8px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container {
    max-width: 990px;
  }
  .feature-grid, .card-container, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features {
    flex-direction: column;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .card {
    min-width: unset;
    width: 100%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 96%;
  }
  h1 {
    font-size: 2.1rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.38rem;
    margin-bottom: 10px;
  }
  .feature, .project-summary, .testimonial-card, .map-placeholder {
    padding: 13px 9px 12px 12px;
  }
}

/* SOFT PASTEL DESIGN ACCENTS */
section {
  background: none;
}
section:nth-child(odd) .container {
  background: linear-gradient(90deg, #F9D6DF 1%, #FAF3D4 100%);
  border-radius: var(--radius);
  box-shadow: 0 1px 10px rgba(240,194,201,0.05);
}
section:nth-child(even) .container {
  background: linear-gradient(90deg, #B7DAF8 1%, #D2F0EA 100%);
  border-radius: var(--radius);
  box-shadow: 0 1px 10px rgba(182,218,248,0.05);
}
@media (max-width: 700px) {
  section .container {
    background: none !important;
    box-shadow: none !important;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Z-INDEX HANDLING */
header { z-index: 49; }
.mobile-menu { z-index: 101; }
.cookie-banner { z-index: 150; }
.cookie-modal { z-index: 165; }

/* ACCESSIBLE FOCUS STATES */
:focus {
  outline: 2px dashed var(--pastel-blue);
  outline-offset: 2px;
}

/* EXTRA: HIDE/SHOW ON MOBILE/DESKTOP */
.hide-on-desktop { display: none !important; }
.hide-on-mobile { display: block !important; }
@media (max-width: 700px) {
  .hide-on-desktop { display: block !important; }
  .hide-on-mobile { display: none !important; }
}
