/* --- 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, 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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #F6F8FB 0%, #E4F3F3 100%);
  color: #24425A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-repeat: no-repeat;
  transition: background 0.4s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #19B7B7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #24425A;
}
ol, ul {
  list-style: none;
  padding-left: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #24425A;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
strong {
  font-weight: 600;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* HEADER */
header {
  background: #24425A;
  color: #fff;
  box-shadow: 0 6px 18px rgba(36,66,90,0.10);
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 16px 20px;
}
header img {
  height: 38px;
  width: auto;
  display: block;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
header nav a.cta-btn {
  background: linear-gradient(90deg, #19B7B7 0%, #56d1d1 100%);
  color: #24425A;
  padding: 8px 18px;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 2px 10px 0 rgba(25,183,183,0.15);
  transition: background 0.3s, color 0.2s;
}
header nav a.cta-btn:hover {
  background: linear-gradient(90deg, #13a1a1 20%, #19B7B7 100%);
  color: #fff;
}
header nav a:hover, header nav a:focus {
  background: #19B7B7;
  color: #24425A;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin-left: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #19B7B7;
}
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #24425A;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 28px 32px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  margin-bottom: 28px;
  padding: 2px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #19B7B7;
  color: #24425A;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 0 12px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  border-radius: 4px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #19B7B7;
  color: #24425A;
}
@media (max-width: 992px) {
  .mobile-menu {
    display: flex;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(100deg, #F6F8FB 60%, #19B7B7 100%);
  padding: 56px 0 40px 0;
}
.hero .container {
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 650px;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero h1 {
  color: #24425A;
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.20rem;
  color: #24425A;
  margin-bottom: 28px;
}
.hero .cta-btn {
  background: linear-gradient(90deg, #19B7B7 0%, #82e8e7 100%);
  color: #24425A;
  padding: 13px 36px;
  font-size: 1.15rem;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 10px;
  box-shadow: 0 2px 10px 0 rgba(25,183,183,0.13);
  transition: background 0.25s, color 0.18s;
}
.hero .cta-btn:hover,
.hero .cta-btn:focus {
  background: linear-gradient(90deg, #1bcdcd 20%, #19B7B7 100%);
  color: #fff;
}

/* --- FLEXBOX SECTION LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 24px 0 rgba(36,66,90,0.11);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  flex: 1 1 320px;
  min-width: 250px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 10px 28px 0 rgba(25,183,183,0.17);
  transform: translateY(-3px) scale(1.01);
  z-index: 2;
}
.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: 20px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px 0 rgba(36,66,90,0.10);
  max-width: 420px;
  color: #24425A;
}
.testimonial-card p {
  color: #24425A;
  font-size: 1.07rem;
}
.testimonial-card span {
  font-size: 1rem;
  color: #6A859E;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- GRADIENT MODERN COMPONENT GRIDS --- */
.feature-grid, .core-values-grid, .service-teasers-grid, .benefits-grid, .case-studies-cards, .blog-post-grid, .pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-grid > div, .core-values-grid > div, .service-teasers-grid > div, .benefits-grid > div, .case-studies-cards > div, .pricing-table > div, .blog-post-grid > article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 rgba(36,66,90,0.09);
  padding: 28px 24px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.feature-grid > div:hover, .core-values-grid > div:hover, .service-teasers-grid > div:hover, .benefits-grid > div:hover, .case-studies-cards > div:hover, .pricing-table > div:hover, .blog-post-grid > article:hover {
  box-shadow: 0 10px 28px 0 rgba(25,183,183,0.12);
  transform: translateY(-4px) scale(1.01);
  z-index: 2;
}

/* --- TESTIMONIAL SLIDER --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(90deg,#19B7B7 0%, #82e8e7 100%);
  color: #24425A;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(25,183,183,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  margin: 30px 0 0 0;
  gap: 14px;
}
.cta-banner h2 {
  color: #24425A;
  margin-bottom: 10px;
  font-size: 2rem;
}
.cta-banner p {
  margin-bottom: 14px;
}
.cta-banner .cta-btn {
  background: #24425A;
  color: #fff;
  border-radius: 8px;
  padding: 13px 32px;
  font-weight: 700;
  font-size: 1.13rem;
  box-shadow: 0 2px 10px 0 rgba(36,66,90,0.16);
  margin-top: 10px;
  transition: background 0.21s, color 0.17s;
}
.cta-banner .cta-btn:hover,
.cta-banner .cta-btn:focus {
  background: #19B7B7;
  color: #24425A;
}

/* --- NEWSLETTER SIGNUP --- */
.newsletter-signup {
  background: #19B7B7;
  color: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 16px 0 rgba(25,183,183,0.10);
  align-items: center;
  text-align: center;
  margin: 20px 0;
}
.newsletter-signup h2 {
  color: #fff;
}

/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  gap: 24px;
  margin-top: 24px;
}
.pricing-table > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
}
.pricing-table .price {
  margin-top: 12px;
  font-size: 1.23rem;
  color: #19B7B7;
  font-weight: 800;
}

/* --- PACKAGE COMPARISON, FAQ & OTHERS --- */
.package-comparison, .faq-accordion, .results-metrics, .next-steps-info {
  margin-top: 20px;
  background: #F6F8FB;
  border-radius: 10px;
  padding: 18px 19px;
  box-shadow: 0 2px 9px rgba(36,66,90,0.06);
}
.faq-accordion > div {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E4F3F3;
}
.faq-accordion > div:last-child {
  border-bottom: none;
}
.results-metrics p {
  font-size: 1.13rem;
  font-weight: 700;
  color: #19B7B7;
  margin-bottom: 0;
  line-height: 1.7;
}

/* --- BLOG HIGHLIGHTS --- */
.blog-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.blog-highlights article {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px 13px 20px;
  box-shadow: 0 2px 12px 0 rgba(36,66,90,0.09);
  flex: 1 1 260px;
  min-width: 220px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.blog-highlights article:hover {
  box-shadow: 0 7px 21px 0 rgba(25,183,183, 0.13);
  transform: translateY(-2px) scale(1.01);
}

/* --- THANK YOU MESSAGE --- */
.thank-you-message, .next-steps-info {
  background: #f6f8fb;
  border-radius: 9px;
  padding: 18px 19px;
  margin: 16px 0;
  color: #24425A;
  box-shadow: 0 2px 8px rgba(36,66,90,0.05);
  text-align: center;
}

/* --- FOOTER --- */
footer {
  background: #24425A;
  color: #fff;
  padding: 40px 0 24px 0;
}
footer .container {
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.17s;
}
footer nav a:hover {
  color: #19B7B7;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  color: #E4F3F3;
  font-size: 0.97rem;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 5px;
  height: 16px;
}
footer p {
  color: #A3B9CC;
  font-size: 0.97rem;
  margin-top: 16px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 10000;
  background: #24425A;
  color: #fff;
  padding: 22px 28px 22px 24px;
  box-shadow: 0 -2px 14px 0 rgba(36,66,90,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.25s;
}
.cookie-banner.closed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-msg {
  font-size: 1.07rem;
  color: #fff;
  max-width: 600px;
}
.cookie-banner .cookie-btn-set {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 18px;
  border: none;
  transition: background 0.18s, color 0.12s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: #19B7B7;
  color: #24425A;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #15a0a0;
  color: #fff;
}
.cookie-banner .reject {
  background: #E4F3F3;
  color: #24425A;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #fff;
  color: #19B7B7;
}
.cookie-banner .settings {
  background: transparent;
  color: #19B7B7;
  border: 2px solid #19B7B7;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #19B7B7;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 11000;
  inset: 0;
  background: rgba(37,66,90,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.28s;
}
.cookie-modal {
  background: #fff;
  color: #24425A;
  border-radius: 14px;
  min-width: 320px;
  max-width: 95vw;
  width: 420px;
  padding: 30px 34px 28px 30px;
  box-shadow: 0 16px 44px rgba(36,66,90,0.25);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeInModal 0.27s cubic-bezier(0.4,0,0.2,1);
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.33rem;
  margin-bottom: 8px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal .category label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal .toggle {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}
.cookie-modal .toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E4F3F3;
  border-radius: 20px;
  transition: 0.24s;
}
.cookie-modal .toggle input:checked + .slider {
  background: #19B7B7;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 4px; bottom: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px rgba(36,66,90,0.09);
  transition: 0.24s;
}
.cookie-modal .toggle input:checked + .slider:before {
  transform: translateX(20px);
  background: #fff;
}
.cookie-modal .btn-group {
  display: flex;
  gap: 13px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal .save {
  background: #19B7B7;
  color: #fff;
}
.cookie-modal .save:hover,
.cookie-modal .save:focus {
  background: #24425A;
  color: #fff;
}
.cookie-modal .cancel {
  background: #E4F3F3;
  color: #24425A;
}
.cookie-modal .cancel:hover,
.cookie-modal .cancel:focus {
  background: #24425A;
  color: #fff;
}
.cookie-modal .close {
  position: absolute;
  top: 14px;
  right: 17px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #24425A;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.18s, color 0.14s;
}
.cookie-modal .close:hover {
  background: #E4F3F3;
}

/* --- MISC CLASSES FROM HTML STRUCTURE --- */
.text-section {
  margin-bottom: 24px;
}
.core-values-list, .unique-selling-points-list, .analytics-services-list, .traffic-optimization-services-list, .user-rights-list {
  margin-top: 18px;
  margin-bottom: 22px;
  padding-left: 20px;
  color: #24425A;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.brand-promise {
  font-size: 1.07rem;
  font-style: italic;
  color: #19B7B7;
  margin-top: 12px;
}
.process-steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 17px;
}
.contact-information ul, .contact-information ul li {
  list-style: none;
}
.contact-information ul li {
  padding-left: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.map-placeholder {
  background: #E4F3F3;
  border-radius: 10px;
  padding: 20px 16px;
  margin-top: 18px;
  color: #24425A;
  font-size: 1rem;
  text-align: center;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid, .core-values-grid, .service-teasers-grid, .benefits-grid, .case-studies-cards, .pricing-table, .blog-post-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .blog-highlights, .feature-grid, .core-values-grid, .service-teasers-grid, .benefits-grid, .case-studies-cards, .pricing-table, .blog-post-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.67rem; }
  h2 { font-size: 1.25rem; }
  .section {
    margin-bottom: 40px;
    padding: 26px 8px 26px 8px;
  }
  .container, .footer .container {
    padding: 0 10px;
  }
  .card, .feature-grid > div, .core-values-grid > div, .service-teasers-grid > div, .benefits-grid > div, .case-studies-cards > div, .pricing-table > div, .blog-post-grid > article {
    min-width: 190px;
    padding: 18px 11px;
    font-size: 0.99rem;
  }
  .hero .content-wrapper {
    padding: 0 4px;
    gap: 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .cta-banner {
    border-radius: 8px;
    padding: 18px 7px;
  }
  .newsletter-signup {
    border-radius: 8px;
    padding: 18px 7px;
  }
}
@media (max-width: 576px) {
  .footer-contact {
    flex-direction: column;
    gap: 9px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 17px 7px 17px 7px;
  }
}

/* --- SCROLLBAR STYLES (MODERN, OPTIONAL) --- */
::-webkit-scrollbar {
  width: 8px;
  background: #E4F3F3;
}
::-webkit-scrollbar-thumb {
  background: #19B7B7;
  border-radius: 7px;
}

/* --- MICRO-INTERACTIONS --- */
.cta-btn, .cookie-banner button, .cookie-modal button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.19s, color 0.15s, box-shadow 0.17s, transform 0.13s;
}
.cta-btn:active, .cookie-banner button:active, .cookie-modal button:active {
  transform: scale(0.97);
}

/* --- FOCUS STYLES --- */
:focus-visible {
  outline: 2px solid #19B7B7;
  outline-offset: 2px;
}

/* --- UTILITY: HIDE/SHOW (for JS use, if needed) --- */
.hide, .hidden {
  display: none !important;
}
