/* 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F9F9F9;
  color: #151B2F;
}
ol, ul {
  list-style: none;
}
a {
  background: none;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
img {
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-wrap: balance;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #151B2F;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #151B2F;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #35BCCD;
}
h4, h5 {
  font-weight: 700;
  color: #151B2F;
}
p {
  font-size: 1.08rem;
  margin-bottom: 14px;
  line-height: 1.65;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2f3040;
}
strong {
  font-weight: 700;
}
blockquote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: #151B2F;
  border-left: 4px solid #35BCCD;
  padding-left: 16px;
  margin-bottom: 12px;
  background: #F2FBFD;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* HEADER */
header {
  background: #151B2F;
  color: #fff;
  width: 100vw;
  box-shadow: 0 4px 18px 0 rgba(21,27,47,0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo img {
  height: 52px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  letter-spacing: .5px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #35BCCD;
  color: #151B2F;
}
.main-nav .cta {
  background: #35BCCD;
  color: #151B2F;
  font-weight: 900;
  font-size: 1.08rem;
  border-radius: 20px;
  padding: 8px 22px;
  margin-left: 16px;
  box-shadow: 0 2px 12px 0 rgba(53,188,205,.12);
  letter-spacing: 1px;
  transition: all .18s cubic-bezier(.4,0,.2,1);
}
.main-nav .cta:hover, .main-nav .cta:focus {
  background: #fff;
  color: #151B2F;
  box-shadow: 0 4px 16px 0 rgba(53,188,205,.14);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #35BCCD;
  color: #151B2F;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  margin-left: 14px;
  transition: background 0.22s;
  z-index: 2101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fff;
  color: #35BCCD;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  height: 100vh;
  background: #151B2F;
  color: #fff;
  z-index: 2102;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.42,.04,.3,1.31);
  box-shadow: -6px 0 32px 0 rgba(21,27,47,0.10);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 20px 4px 0;
  background: transparent;
  font-size: 2rem;
  color: #fff;
  border-radius: 40px;
  border: none;
  width: 44px;
  height: 44px;
  transition: background .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #35BCCD;
  color: #151B2F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-top: 40px;
  padding-left: 38px;
}
.mobile-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1.14rem;
  padding: 8px 0;
  border-radius: 6px;
  width: 100%;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #35BCCD;
  color: #151B2F;
  padding-left: 12px;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 8px;
  }
  .main-nav .cta {
    margin-left: 7px;
    padding-left: 15px; padding-right: 15px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* HERO SECTION */
.hero {
  background: #35BCCD;
  color: #151B2F;
  position: relative;
  min-height: 320px;
  margin-bottom: 60px;
  padding: 40px 0 14px 0;
  display: flex;
  align-items: center;
  width: 100%;
  box-shadow: 0 6px 44px 0 rgba(53,188,205,.10);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 670px;
  gap: 20px;
}
.hero h1 {
  color: #151B2F;
}
.hero p {
  color: #151B2F;
  font-size: 1.4rem;
}
.hero .main {
  background: #fff;
  color: #151B2F;
  border-radius: 28px;
  box-shadow: 0 3px 22px 0 rgba(53,188,205,0.10);
  font-weight: 900;
  padding: 16px 40px;
  font-size: 1.28rem;
  margin-top: 16px;
  display: inline-block;
  letter-spacing: 1px;
  transition: background 0.18s, color 0.18s, box-shadow 0.24s;
}
.hero .main:hover, .hero .main:focus {
  background: #35BCCD;
  color: #fff;
  box-shadow: 0 8px 44px 0 rgba(21,27,47,.14);
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.65rem;
  }
  .hero p {
    font-size: 1.01rem;
  }
  .hero .main {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* SECTION & CONTAINER SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section {
    padding: 30px 8px;
    margin-bottom: 34px;
  }
}

/* CARD & FLEXBOX MANDATORY PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1.5px 14px 0 rgba(53,188,205,.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 1 280px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 48px 0 rgba(53,188,205,.16);
  z-index: 2;
  transform: translateY(-4px) scale(1.015);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* FEATURES */
.features-grid,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.features-grid > div {
  flex: 1 1 230px;
  min-width: 200px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 18px;
  box-shadow: 0 2px 16px 0 rgba(53,188,205,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .17s, border .17s;
  margin-bottom: 0;
}
.features-grid img {
  width: 48px;
  margin-bottom: 11px;
}
.features-grid h3 {
  color: #151B2F;
  font-size: 1.22rem;
  font-weight: 900;
  margin-bottom: 7px;
}
.features-grid p {
  color: #2f3040;
  text-align: center;
  font-size: 1rem;
}
.features-grid > div:hover, .features-grid > div:focus-within {
  box-shadow: 0 8px 40px 0 rgba(53,188,205,0.16);
  border: 2px solid #35BCCD;
  transform: translateY(-4px) scale(1.01);
}
@media (max-width: 900px) {
  .features-grid {
    flex-direction: column;
    gap: 24px;
  }
}

/* TESTIMONIALS */
.testimonials {
  background: #F2FBFD;
  border-radius: 18px;
  box-shadow: 0 1.2px 16px 0 rgba(53,188,205,.08);
  margin-bottom: 60px;
  padding: 40px 12px 12px 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px 16px 24px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 1.2px 10px 0 rgba(21,27,47,0.06);
  color: #151B2F;
  position: relative;
  transition: box-shadow .19s;
}
.testimonial-card blockquote {
  background: none;
  border-left: 4px solid #35BCCD;
  color: #151B2F;
  font-style: italic;
  font-size: 1.12rem;
}
.testimonial-card strong {
  color: #151B2F;
  font-size: 1rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 48px 0 rgba(21,27,47,.13);
}
.testimonials h2 {
  color: #151B2F;
  font-size: 2rem;
  margin-bottom: 25px;
}
@media (max-width: 700px) {
  .testimonial-card {
    padding: 16px 9px 13px 17px;
    gap: 14px;
  }
}

/* CTA BUTTONS */
.cta {
  background: #35BCCD;
  color: #151B2F;
  padding: 12px 28px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.07rem;
  box-shadow: 0 1.5px 12px 0 rgba(53,188,205,.09);
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing:1.2px;
  border: none;
  cursor: pointer;
  margin-top: 18px;
  transition: background .18s, color .18s, box-shadow .24s;
}
.cta:hover, .cta:focus {
  background: #151B2F;
  color: #fff;
  box-shadow: 0 8px 54px 0 rgba(21,27,47,.14);
}

/* TAG CLOUD (BLOG) */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.tag-cloud span {
  background: #35BCCD;
  color: #fff;
  padding: 7px 17px;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 700;
  transition: background .15s;
}
.tag-cloud span:hover {
  background: #151B2F;
}

/* BLOG POSTS LIST */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
}
.post-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 14px 0 rgba(53,188,205,.09);
  padding: 18px 20px;
  margin-bottom: 10px;
  transition: box-shadow .17s, border .18s;
  border-left: 6px solid #35BCCD;
}
.post-list li:hover, .post-list li:focus-within {
  box-shadow: 0 7px 38px 0 rgba(53,188,205,0.13);
  border-left: 6px solid #151B2F;
}

/* TEXT SECTIONS & FAQ */
.text-section,
.faq-list > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 12px;
}
.faq-list > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.2px 14px 0 rgba(53,188,205,.08);
  padding: 15px 16px 8px 18px;
  transition: box-shadow .17s;
}
.faq-list > div:hover, .faq-list > div:focus-within {
  box-shadow: 0 8px 35px 0 rgba(53,188,205,.11);
}
.faq-list h3 {
  margin-bottom: 6px;
}

/* FEATURE ITEM (USP LISTS ETC.) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* UL/OL LISTS in text section */
.text-section ul, .text-section ol {
  padding-left: 0;
  margin-left: 0;
  gap: 9px;
  display: flex;
  flex-direction: column;
  margin-bottom: 7px;
}
.text-section ul li, .text-section ol li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #36384f;
  padding-left: 0;
  padding-bottom: 4px;
}
.text-section ul li img {
  width: 22px;
  height: 22px;
}

ol {
  padding-left: 23px;
}
ol li {
  list-style-type: decimal;
  margin-bottom: 6px;
}

/* FOOTER */
footer {
  background: #151B2F;
  color: #fff;
  padding: 0;
  margin-top: 50px;
}
footer .container {
  padding-top: 42px;
  padding-bottom: 15px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 23px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
}
.footer-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 1.01rem;
  opacity: .88;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #35BCCD;
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 200px;
}
.brand-info img {
  width: 54px;
  margin-bottom: 7px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 210px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 5px;
}
.contact-info img {
  width: 20px;
  height: 20px;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}
.social-links a {
  padding: 6px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 6px 0 rgba(21,27,47,0.09);
  transition: background .15s, box-shadow .19s;
}
.social-links a:hover, .social-links a:focus {
  background: #35BCCD;
  box-shadow: 0 7px 24px rgba(53,188,205,0.12);
}
.social-links img {
  width: 22px;
  height: 22px;
}

.copyright {
  border-top: 1.5px solid #232845;
  text-align: center;
  padding: 17px 0 9px 0;
  font-size: .98rem;
  color: #C5D9DF;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #35BCCD;
  color: #151B2F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 17px;
  z-index: 3000;
  box-shadow: 0 -2px 18px 0 rgba(21,27,47,0.08);
  font-size: 1rem;
  animation: cookieSlideIn .47s cubic-bezier(.42,.04,.3,1.3) 1;
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  margin: 0;
  color: #151B2F;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  margin-left: auto;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 19px;
  border-radius: 20px;
  border: none;
  background: #fff;
  color: #151B2F;
  box-shadow: 0 2px 8px 0 rgba(21,27,47,0.08);
  transition: background .15s, color .18s;
}
.cookie-banner .cookie-settings {
  background: #151B2F;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #35BCCD;
  color: #fff;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #fff;
  color: #151B2F;
  border: 2px solid #35BCCD;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 6px;
    gap: 10px;
  }
  .cookie-banner .cookie-actions {
    margin-left: 0;
    gap: 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left:0;
  width: 100vw; height: 100vh;
  background: rgba(21,27,47,.39);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .33s cubic-bezier(.42,.04,.3,1.3) 1;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #151B2F;
  border-radius: 18px;
  max-width: 380px;
  width: 90vw;
  box-shadow: 0 5px 44px 0 rgba(21,27,47,0.19);
  padding: 32px 23px 24px 23px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPopIn .34s cubic-bezier(.40,0,.24,1.28) 1;
}
@keyframes modalPopIn {
  from { transform: scale(0.8) translateY(120px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #35BCCD;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #35BCCD;
  width: 20px; height: 20px;
}
.cookie-modal .category-essential {
  opacity: 0.65;
  font-style: italic;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 13px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 18px;
  border-radius: 18px;
  border: none;
  background: #35BCCD;
  color: #151B2F;
  transition: background .15s, color .15s;
}
.cookie-modal button.secondary {
  background: #151B2F;
  color: #fff;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #151B2F;
  color: #fff;
}
.cookie-modal button.secondary:hover, .cookie-modal button.secondary:focus {
  background: #35BCCD;
  color: #151B2F;
}

/* ANIMATIONS & INTERACTIONS */
.card, .features-grid > div, .testimonial-card, .post-list li, .faq-list > div {
  transition: box-shadow .18s cubic-bezier(.42,.04,.3,1.13),
    transform .16s cubic-bezier(.42,.04,.3,1.11);
}
.cta, .main-nav .cta, .mobile-nav a, .tag-cloud span {
  transition: background .18s, color .18s, box-shadow .17s, padding .16s;
}

/* SPACING & GAPS ENFORCED */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* UTILITIES */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 32px; }
.text-center { text-align: center; }

/* RESPONSIVE: GENERAL */
@media (max-width: 1024px) {
  .content-wrapper { gap: 20px; }
  section, .section {
    padding: 32px 8px;
  }
}
@media (max-width: 900px) {
  .features-grid, .faq-list {
    flex-direction: column;
    gap: 21px;
  }
  .content-wrapper {
    gap: 15px;
  }
}
@media (max-width: 820px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.12rem; }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation-duration: .01s !important; }
}

/* ===================== END OF STYLE ==================== */