/* 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,
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  line-height: 1.5;
  background: linear-gradient(135deg, #F5F6F7 0%, #eaf6fb 100%);
  color: #1A2B3B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: #1A2B3B;
  transition: color 0.2s cubic-bezier(.43,.41,.22,.91);
}
a:hover, a:focus {
  color: #6DC2DF;
}
ul, ol {
  list-style-type: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A2B3B;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 { font-size: 2rem; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 14px; }
h3 { font-size: 1.15rem; margin-bottom: 12px; font-weight: 600; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }
p {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #26394c;
}

/* LAYOUT & CONTAINER */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
  padding: 0;
}

/* SPACING PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(33,51,70,0.07);
  background: #fff;
  position: relative;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 4px 28px 0 rgba(33,51,70,0.13);
}
.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;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  margin-bottom: 20px;
  background: #f6fbfd;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(33,51,70,0.09);
  color: #1A2B3B;
  transition: box-shadow 0.2s;
  max-width: 420px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px rgba(33,51,70,0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* NAVIGATION STYLES */
header {
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(21,51,70,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 200;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1A2B3B;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
  transition: color 0.19s, border-bottom 0.19s;
  border-bottom: 2px solid transparent;
}
header nav a:hover, header nav a:focus {
  color: #6DC2DF;
  border-bottom: 2px solid #6DC2DF;
}
.cta-btn {
  background: linear-gradient(90deg, #6DC2DF 0%, #3E78B2 100%);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 7px;
  padding: 11px 26px;
  box-shadow: 0 2px 10px 0 rgba(30,90,120,0.03);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s, transform 0.18s;
  margin-left: 22px;
  outline: none;
  position: relative;
  z-index: 10;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #51aed1 0%, #1A2B3B 90%);
  color: #fff;
  box-shadow: 0 4px 26px rgba(109,194,223,0.15);
  transform: translateY(-2px) scale(1.02);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: #6DC2DF;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 7px;
  width: 44px;
  height: 44px;
  margin-left: 16px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 202;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #1A2B3B;
  color: #6DC2DF;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 32px 0 rgba(33,51,70,0.13);
  transform: translateX(110%);
  transition: transform 0.33s cubic-bezier(.75,0,.3,1);
  z-index: 998;
  padding: 38px 24px 28px 28px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #1A2B3B;
  font-size: 2.1rem;
  margin-bottom: 18px;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #6DC2DF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
}
.mobile-nav a {
  color: #1A2B3B;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #e9f1f3;
  transition: color 0.17s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #6DC2DF;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 900px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .cta-btn {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    width: 100vw;
    min-width: 0;
    border-radius: 0;
    padding: 32px 11vw 24px 7vw;
    max-width: 100vw;
  }
}

/* HERO/BANNER & SECTIONS */
.hero {
  padding: 82px 0 72px 0;
  background: linear-gradient(125deg, #eaf6fb 0%, #F5F6F7 95%);
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  max-width: 600px;
  padding-left: 0;
}
.hero h1 {
  font-size: 2.7rem;
  color: #1A2B3B;
}
.hero p {
  font-size: 1.19rem;
  color: #26394c;
  margin-bottom: 27px;
}

/* FEATURES GRID */
.features {
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .container {
  flex-direction: column;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px 0 rgba(33,51,70,0.07);
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 320px;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.feature-card h3 {
  font-size: 1.11rem;
  margin-bottom: 9px;
  font-weight: 700;
}
.feature-card p {
  font-size: 0.98rem;
  color: #344A5F;
}
.feature-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 10px 32px 0 rgba(109,194,223,0.11);
}

/* SERVICE GRID & CARDS */
.services-list .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.service-card {
  background: #fbfdff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(33,51,70,0.07);
  padding: 26px 21px 24px 21px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 330px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.15s;
}
.service-card h3 {
  font-size: 1.09rem;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #6DC2DF;
  font-weight: 700;
  font-size: 1.07rem;
  margin: 6px 0 3px 0;
  letter-spacing: 0.01em;
}
.service-card:hover {
  box-shadow: 0 7px 24px 0 rgba(109,194,223,0.14);
  transform: translateY(-4px) scale(1.013);
}

/* BLOG POSTS */
.blog-list .blog-post {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(33,51,70,0.07);
  padding: 23px 20px 20px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
}

/* CTA SECTION */
.cta {
  padding: 48px 0;
  background: linear-gradient(90deg,#e8f4fb 0%, #fff 99%);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 13px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 35px 0 25px 0;
  background: linear-gradient(90deg,#eaf6fb 0%, #f5f6f7 100%);
}
.testimonials .container {
  flex-direction: column;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card blockquote, .testimonial-card p {
  font-size: 1.05rem;
  color: #223b54;
  margin-bottom: 10px;
}
.testimonial-card span {
  color: #3E78B2;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* LEGAL SECTION (for privacy/cookie/gdpr pages) */
.legal {
  margin: 0 0 60px 0;
  padding: 40px 18px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 rgba(33,51,70,0.05);
}
.legal h1 {
  font-size: 2rem;
}
.legal h2 {
  font-size: 1.3rem;
}
.legal ul {
  margin-left: 14px;
  margin-bottom: 16px;
  padding-left: 13px;
}
.legal ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #26394c;
  font-size: 0.97rem;
}
.legal a { color: #3E78B2; text-decoration: underline; }

/* CONTACT INFO SECTION */
.contact {
  background: linear-gradient(96deg,#fff 0%, #eaf6fb 100%);
  padding: 36px 0;
  border-radius: 11px;
}
.contact ul li {
  margin-bottom: 9px;
  color: #37506c;
  font-size: 1.03rem;
}
.contact a {
  color: #6DC2DF;
  font-weight: 500;
  text-decoration: underline;
}
.contact a:hover, .contact a:focus { color: #1A2B3B; }

/* CONFIRMATION SECTION (thanks.php) */
.confirmation {
  padding: 60px 0 80px 0;
  background: linear-gradient(110deg, #f5fafe 0%, #eaf6fb 100%);
}
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.confirmation h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.confirmation p {
  color: #344A5F;
  font-size: 1.08rem;
}

/* FOOTER */
footer {
  background: #1A2B3B;
  color: #fff;
  font-size: 1rem;
  padding: 18px 0 12px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
footer nav a {
  color: #6DC2DF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.92;
  transition: color 0.15s, opacity 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  opacity: 1;
}
footer div {
  color: #e4eff4;
  font-size: 0.93rem;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1A2B3B;
  color: #fff;
  padding: 19px 24px 22px 24px;
  z-index: 1240;
  box-shadow: 0 -2px 22px 0 rgba(33,51,70,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 1rem;
  transition: transform 0.26s cubic-bezier(.75,0,.19,1);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-banner p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}
.cookie-btns {
  display: flex;
  gap: 17px;
}
.cookie-btn {
  background: #6DC2DF;
  color: #1A2B3B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 8px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #1A2B3B;
}
.cookie-btn.ghost {
  background: #fff;
  color: #6DC2DF;
}
.cookie-btn.ghost:hover, .cookie-btn.ghost:focus {
  background: #6DC2DF;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right:0;
  bottom: 0;
  background: rgba(32, 57, 77, 0.63);
  z-index: 1301;
  align-items: center;
  justify-content: center;
  transition: background 0.22s ease;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 12px;
  padding: 34px 28px 26px 28px;
  min-width: 330px;
  max-width: 96vw;
  box-shadow: 0 6px 36px rgba(33,51,70,0.20);
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: cookie-modal-fadein 0.26s cubic-bezier(.77,0,.21,1);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  color: #1A2B3B;
  font-size: 1.29rem;
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #1A2B3B;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #6DC2DF;
  width: 18px;
  height: 18px;
}
.cookie-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 16px;
}

/* RESPONSIVENESS (mobile first) */
@media (max-width: 1050px) {
  .feature-grid, .services-list .service-grid, .testimonials .content-wrapper {
    gap: 16px;
  }
  .feature-card, .service-card {
    min-width: 160px;
    max-width: 100%;
    flex-basis: 43%;
  }
}
@media (max-width: 750px) {
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 1.45rem; }
  .hero p { font-size: 1rem; }
  .section, .legal, .features {
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-grid, .services-list .service-grid, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 19px;
  }
  .feature-card, .service-card {
    min-width: 0;
    max-width: 100%;
    flex-basis: 100%;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .cta .content-wrapper, .confirmation .content-wrapper {
    max-width: 100vw;
    padding: 0 3vw;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 19px 13px;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 7vw;
    padding-right: 7vw;
  }
  .hero {
    padding: 58px 0 43px 0;
  }
  .cta {
    padding: 29px 0 38px 0;
  }
  .confirmation {
    padding: 32px 0 42px 0;
  }
  .section, .legal {
    padding: 26px 7vw 29px 7vw;
  }
  header .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (max-width: 450px) {
  .cookie-modal {
    padding: 20px 7vw 16px 7vw;
    min-width: 0;
    font-size: 0.97rem;
  }
}

/* FLUID FLEX LAYOUTS (Sections & Grids) */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
}


/* MICRO-INTERACTIONS */
button:focus, .cta-btn:focus {
  outline: 2px solid #6DC2DF;
  outline-offset: 3px;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #cbe6f4;
  padding: 9px 11px;
  margin-bottom: 14px;
  background: #f6fbfd;
  transition: border 0.17s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #6DC2DF;
  box-shadow: 0 1px 7px 0 rgba(109,194,223,0.037);
  outline: none;
}

/* TYPOGRAPHY SCALE */
.display { font-family: 'Montserrat', Arial, sans-serif; font-size: 2.8rem; font-weight: 700; }
.subtitle { font-size: 1.3rem; font-weight: 500; color: #3E78B2; }

/* SHADOWS & ROUNDED CORNERS */
.card, .feature-card, .service-card, .testimonial-card {
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(33,51,70,0.07);
}

/* Z-INDEX LAYERS FOR MENUS/COOKIES */
.mobile-menu,
.mobile-menu-toggle,
.mobile-menu-close,
.cookie-consent-banner,
.cookie-modal-overlay,
.cookie-modal {
  z-index: 1300;
}

/* CUSTOM SCROLLBAR (for desktop) */
@media (min-width:700px) {
  ::-webkit-scrollbar {
    width: 9px; background: #f5f6f7; border-radius: 8px; }
  ::-webkit-scrollbar-thumb {
    background: #eaf6fb; border-radius:8px; }
}

::-moz-selection { background: #6DC2DF; color: #fff; }
::selection { background: #6DC2DF; color: #fff; }

/* END OF STYLE.CSS */
