/* ==== 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;
  scroll-behavior: smooth;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #f7fafc;
  color: #254052;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.60;
  -webkit-font-smoothing: antialiased;
  background-color: #F6F7FB;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #009A95;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #00B0A8;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #222D3A;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
p, .subtitle {
  font-size: 1rem;
  color: #426078;
}
.subtitle {
  font-size: 1.18rem;
  margin-bottom: 22px;
  font-weight: 400;
  color: #3B536A;
}
strong, b {
  font-weight: 700;
}
.text-section ul, .text-section ol {
  margin-left: 20px;
  margin-bottom: 12px;
  list-style: disc inside;
}
.text-section ul li {
  margin-bottom: 6px;
}

/* ==== LAYOUT STRUCTURE ==== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ==== SECTION SPACING ==== */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section, .section {
    padding: 28px 7px;
    margin-bottom: 36px;
  }
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: #FAFBFC;
  box-shadow: 0 2px 8px rgba(90, 130, 180, 0.04);
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
header .logo-link img {
  height: 44px;
  width: auto;
}
header ul {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 500;
}
header ul li {
  margin-bottom: 0 !important;
}
header ul li a {
  color: #29364B;
  font-size: 1.03rem;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background .2s, color .2s;
  position: relative;
  z-index: 1;
}
header ul li a.cta-primary {
  background: #00B0A8;
  color: #fff!important;
  box-shadow: 0 2px 12px 0 rgba(0,176,168,.14);
  border-radius: 17px;
  padding: 10px 24px;
  font-weight: 600;
  transition: background .18s, color .2s, box-shadow .18s;
  letter-spacing: 0.03em;
}
header ul li a.cta-primary:hover, header ul li a.cta-primary:focus {
  background: #009A95;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(0,176,168,.24);
}
header ul li a:hover,header ul li a:focus {
  background: #ddeff0;
  color: #007A74;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border-radius: 7px;
  border: none;
  font-size: 2rem;
  color: #00B0A8;
  padding: 6px 14px;
  margin-left: 16px;
  box-shadow: 0 2px 8px 0 rgba(16,22,45,.06);
  transition: background .18s;
  z-index: 1150;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #ddf7f5;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fafdff;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.61,.19,.57,1.02);
  z-index: 1200;
  box-shadow: 0 0 80px rgba(0,0,30,0.18);
  padding: 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  margin: 18px 0 10px 22px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #00827C;
  align-self: flex-start;
  padding: 4px;
  border-radius: 8px;
  transition: background .2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #ddf7f5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
  padding: 18px 36px 8px 36px;
  margin-top: 6px;
}
.mobile-nav a {
  color: #222D3A;
  font-size: 1.12rem;
  font-family: 'Montserrat',sans-serif;
  letter-spacing: .03em;
  border-radius: 12px;
  background: none;
  padding: 13px 0 13px 12px;
  transition: background .19s, color .19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e7f7f8;
  color: #00B0A8;
}

@media (max-width: 1000px) {
  header ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (min-width: 1001px) {
  .mobile-menu {
    display: none!important;
  }
}

/* ==== HERO & CTA ==== */
.hero {
  background: linear-gradient(117deg, #FFE6EF 0%, #F6F7FB 100%);
  border-radius: 0 0 30px 30px;
  box-shadow: 0 4px 36px 0 rgba(136,197,236,.11);
}
.hero .content-wrapper {
  align-items: center;
  gap: 9px;
  text-align: center;
  justify-content: center;
  min-height: 260px;
}
.cta {
  background: #F0FBFC;
  border-radius: 26px;
  box-shadow: 0 4px 26px 0 rgba(160, 220, 220, 0.09);
  text-align: center;
  margin-bottom: 32px;
}
.cta h2 {
  margin-bottom: 17px;
}

/* ==== FLEXBOX CONTENT FEATURES ==== */
.feature-grid, .icon-row, .case-study-list, .service-list, .step-icons, .post-list, .logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 14px;
}
.feature-grid .feature, .icon-row > div, .case-study-list .case-study, .service-list .service, .step-icons > div, .post-list article {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 16px 0 rgba(185,217,232,.17);
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 230px;
  flex: 1 1 265px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .22s, transform .18s;
}
.feature-grid .feature:hover, .service-list .service:hover, .case-study-list .case-study:hover,.post-list article:hover {
  box-shadow: 0 8px 32px 0 rgba(120,195,195,.17);
  transform: translateY(-6px) scale(1.02);
}
.feature-grid .feature img, .icon-row img, .step-icons img, .service-list .service img {
  align-self: center;
  width: 54px;
  height: 54px;
  border-radius: 11px;
  background: #f7fcfb;
  margin-bottom: 5px;
}
.feature-grid .feature h3, .service-list .service h3 {
  color: #224a62;
}
.service-price {
  margin-top: 10px;
  color: #00B0A8;
  background: #edfcf9;
  display: inline-block;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 10px;
  font-size: 1.01rem;
}
.icon-row > div, .step-icons > div {
  align-items: flex-start;
  text-align: left;
  flex: 1 1 220px;
  gap: 9px;
}
@media (max-width: 820px) {
  .feature-grid, .icon-row, .case-study-list, .service-list, .step-icons, .post-list {
    flex-direction: column;
    gap: 16px;
  }
  .hero .content-wrapper {
    min-height: 210px;
  }
}

.logos-row {
  display: flex;
  gap: 18px;
  margin: 18px 0;
  justify-content: flex-start;
  align-items: flex-end;
}
.logos-row img {
  width: 40px;height: 40px;
  opacity: .86;
}

/* ==== CASE STUDY & POST LIST ==== */
.case-study-list .case-study {
  border-left: 5px solid #dabff9;
  background: #FCFAFE;
  box-shadow: 0 2px 10px 0 rgba(210,200,245,0.09);
  flex: 1 1 240px;
  margin-bottom: 20px;
}
.post-list article {
  flex: 1 1 340px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(200,220,220,.09);
  padding: 21px 15px 18px 15px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .18s, transform .16s;
}
.read-more {
  margin-top: 6px;
  color: #009A95;
  font-weight: 600;
  font-family: 'Montserrat',sans-serif;
  letter-spacing: .01em;
  transition: color .18s;
}
.read-more:hover, .read-more:focus {
  color: #00B0A8;
  text-decoration: underline;
}
.categories-filter {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 23px;
}
.categories-filter button {
  background: #fcfbf7;
  color: #00B0A8;
  border-radius: 8px;
  padding: 6px 17px;
  font-family: 'Montserrat',sans-serif;
  margin-right: 2px;
  border: 1.5px solid #c2e3de;
  font-size: 1rem;
  transition: background .18s, color .18s, border-color .18s;
}
.categories-filter button:hover, .categories-filter button:focus {
  background: #e3fffd;
  border-color: #00B0A8;
  color: #007A74;
}

/* ==== BENEFITS/SUCCESS-METRICS ==== */
.success-metrics ul {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.success-metrics li {
  background: #fff;
  color: #00827C;
  border-radius: 13px;
  padding: 8px 18px;
  font-weight: 600;
  font-family: 'Montserrat',sans-serif;
}

/* ==== TIMELINE ==== */
.timeline {
  background: #f8edf5;
  border-radius: 19px;
  padding: 16px 18px 8px 18px;
  margin: 15px 0 10px 0;
  box-shadow: 0 4px 10px 0 rgba(200, 168, 236, 0.10);
}
.timeline h3 {
  margin-bottom: 5px;
  color: #886fdc;
}
.timeline ul {
  margin: 0 0 8px 17px;
}
.timeline ul li {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

/* ==== TEXT-IMAGE & FLEX PATTERNS ==== */
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(120, 180, 200, 0.09);
  padding: 24px 16px;
  transition: box-shadow .16s,transform .13s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(120,195,205,.18);
  transform: translateY(-5px) scale(1.01);
}

/* ==== TESTIMONIALS ==== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff4f4;
  border-radius: 19px;
  box-shadow: 0 2px 24px 0 rgba(255,180,214,0.13);
  margin-bottom: 24px;
  font-size: 1.08rem;
  color: #2e3741;
  font-style: normal;
  flex-direction: column;
  position: relative;
}
.testimonial-card p {
  color: #1f2d36;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #888;
  font-size: .99rem;
  font-family: 'Montserrat',sans-serif;
}
.testimonial-card:before {
  content: '\201C';
  font-size: 2rem;
  color: #ffa6cb;
  position: absolute;
  left: 18px; top: 12px;
  opacity: .28;
}

/* ==== BUTTONS ==== */
.cta-primary, .newsletter-signup a.cta-primary {
  background: #00B0A8;
  color: #fff!important;
  font-family: 'Montserrat',sans-serif;
  padding: 14px 36px;
  font-weight: 700;
  border-radius: 18px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px 0 rgba(0,176,168,.13);
  margin-top: 7px;
  transition: background .19s,box-shadow .17s;
  border: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #009A95;
  color: #fff;
  box-shadow: 0 6px 26px 0 rgba(0,189,184,.15);
  text-decoration: none;
}
.cta-secondary {
  background: #fff;
  color: #00B0A8;
  font-family: 'Montserrat',sans-serif;
  padding: 13px 25px;
  font-weight: 700;
  border-radius: 12px;
  font-size: 1rem;
  letter-spacing: .03em;
  border: 2px solid #00B0A8;
  margin-top: 7px;
  box-shadow: 0 0px 6px 0 rgba(0,176,168,0.06);
  transition: border-color .18s, color .14s, box-shadow .17s;
}
.cta-secondary:hover, .cta-secondary:focus {
  color: #009A95;
  border-color: #009A95;
  box-shadow: 0 2px 16px 0 rgba(0,176,168,0.12);
  text-decoration: none;
}
.newsletter-signup .cta-primary {
  margin-left: 12px;
  margin-top: 0;
}

/* ==== ADDRESS & FOOTER ==== */
.footer-contact {
  color: #76839a;
  font-size: .98rem;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  line-height: 1.4;
}
footer {
  background: #f0f6fd;
  color: #3b536a;
  padding: 28px 0 0 0;
}
footer .container {
  padding-bottom: 24px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 13px 0 8px 0;
  font-size: 1rem;
  color: #497083;
  align-items: center;
}
footer nav a {
  color: #497083;
  transition: color .16s;
  padding: 3px 5px;
  border-radius: 6px;
}
footer nav a:hover,footer nav a:focus {
  color: #222D3A; background: #e2f1fc;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
footer img {
  height: 42px;
  width: auto;
}

/* ==== THANK YOU PAGE ==== */
.thank-you-section {
  text-align: center;
  margin-top: 52px;
  padding: 54px 12px 66px 12px;
  background: linear-gradient(110deg, #d9efef 0, #eaf1fc 100%);
  border-radius: 29px;
  box-shadow: 0 4px 24px 0 rgba(140,210,200,.10);
}
.thank-you-section .text-section {
  margin: 23px auto 0 auto;
  max-width: 440px;
}

/* ==== MODALS & BANNERS ==== */
/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fafeff;
  border-top: 2.5px solid #edf3fa;
  box-shadow: 0 -3px 40px 0 rgba(0,176,168,.059);
  z-index: 2600;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 35px;
  animation: cookieFadeIn .6s cubic-bezier(.4,.43,.46,.82);
  font-size: 1.03rem;
}
@keyframes cookieFadeIn {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 auto;
  color: #273652;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.cookie-banner button {
  padding: 9px 23px;
  border-radius: 11px;
  border: none;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 4px;
  transition: background .18s, color .18s;
}
.cookie-banner .accept {
  background: #00B0A8;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #009A95;
}
.cookie-banner .reject {
  background: #ffe9f3;
  color: #e24983;
}
.cookie-banner .reject:hover {
  background: #ffd6ec;
}
.cookie-banner .settings {
  background: #eff9fa;
  color: #00B0A8;
}
.cookie-banner .settings:hover {
  background: #e2fefd;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 14px 10px;
    font-size: .97rem;
  } 
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  background: rgba(34,45,58,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .34s cubic-bezier(.5,.13,.56,1.02);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .modal-content {
  background: #fafdff;
  border-radius: 22px;
  box-shadow: 0 7px 64px 0 rgba(118,210,200,0.12);
  padding: 34px 28px 24px 28px;
  width: 98%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn .4s cubic-bezier(.41,1.05,.37,1.04);
  position: relative;
}
@keyframes cookieModalIn {
  from {transform: translateY(50px) scale(.99); opacity: 0;}
  to {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal .modal-content h2 {
  color: #222D3A;
  font-size: 1.33rem;
  margin-bottom: 8px;
}
.cookie-modal .modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
}
.cookie-modal .modal-content .cookie-category label {
  font-size: 1rem;
  color: #273652;
}
.cookie-modal .modal-content .cookie-category input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: #00B0A8;
  margin-right: 3px;
}
.cookie-modal .modal-content .essential[disabled] {
  accent-color: #B0B0B8;
}
.cookie-modal .modal-content .cookie-buttons {
  display: flex;
  gap: 11px;
  margin-top: 12px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .modal-content .close-modal {
  position: absolute;
  top: 17px; right: 17px;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: #00B0A8;
  cursor: pointer;
  border-radius: 8px;
  transition: background .17s;
}
.cookie-modal .modal-content .close-modal:hover {
  background: #e4fffd;
}

@media (max-width: 520px) {
  .cookie-modal .modal-content {
    padding: 21px 9px 14px 14px;
    max-width: 99vw;
  }
}

/* ==== FORMATTING & MISC ==== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.address-map {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 7px;
}
.address-map img {
  width: 44px; height: 44px;
  border-radius: 13px;
  box-shadow: 0 1px 5px 0 rgba(140,200,200,0.13);
  background: #f6fbff;
}
.address-map p {
  font-size: 0.99rem;
  color: #4b6a86;
}

/* ==== MEDIA QUERIES FOR RESPONSIVE ==== */
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
    padding: 0 8px;
  }
}
@media (max-width: 580px) {
  .container {
    max-width: 99vw;
    padding: 0 4px;
  }
  .hero .content-wrapper, .cta .content-wrapper {
    min-height: 110px;
    padding: 10px 2px;
  }
  h1 { font-size: 1.74rem; }
  h2 { font-size: 1.27rem; }
}
@media (max-width: 430px) {
  .feature-grid .feature, .card, .step-icons > div, .service-list .service, .timeline {
    padding: 12px 7px 6px 11px;
    min-width: unset;
  }
}

/* ==== SCROLLBAR SOFTEN ==== */
::-webkit-scrollbar {
  width: 8px;
  background: #e8f7f7;
}
::-webkit-scrollbar-thumb {
  background: #c9e1ea;
  border-radius: 6px;
}

/* ==== ANIMATIONS ==== */
.feature-grid .feature, .case-study-list .case-study, .service-list .service, .testimonial-card {
  transition: box-shadow .19s, transform .13s, background .15s;
}
.feature-grid .feature:hover, .case-study-list .case-study:hover, .service-list .service:hover {
  background: #f7fbfa;
}

/************************
   End Styles
************************/
