/* === CSS RESET & NORMALIZATION === */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F6FA;
  min-height: 100vh;
  color: #234A59;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
*:focus {
  outline: 2px solid #0bf5c6;
  outline-offset: 1px;
}

/* === BRAND FONTS === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Open+Sans:400,600,700&display=swap');

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F5F6FA;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Verdana, sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  color: #234A59;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

p, li, th, td {
  font-size: 1rem;
  color: #234A59;
}
strong { font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
}

/* === FLEX CONTAINER LAYOUTS === */
.container {
  max-width: 1170px;
  padding: 0 16px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(35,74,89,0.08);
  padding: 24px;
  transition: box-shadow .23s cubic-bezier(.4,0,.2,1), transform .18s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  box-shadow: 0 10px 32px 0 rgba(35,74,89,0.18);
  transform: translateY(-2px) 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;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(123,161,182,0.13);
  border: 2.5px solid #0bf5c6;
  color: #222;
  transition: box-shadow .22s, border-color .18s;
}
.testimonial-card p {
  font-size: 1.13rem;
  margin-bottom: 0.5em;
  color: #234A59;
}
.testimonial-card strong {
  font-weight: 900;
  color: #1b6abf;
}
.testimonial-card .stars {
  font-size: 1.4rem;
  color: #FFB703;
  letter-spacing: 1.5px;
}
.testimonial-card:hover {
  box-shadow: 0 12px 34px rgba(35,74,89,0.18);
  border-color: #1CE1CE;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 12px;
}

/* === VIBRANT ENERGETIC BUTTONS === */
.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0bf5c6;
  color: #234A59;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
  padding: 13px 32px;
  border-radius: 34px;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .16s, transform .17s;
  box-shadow: 0 2px 10px 0 rgba(11,245,198,0.12);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.button.primary {
  background: #1b6abf;
  color: #fff;
}
.button.secondary {
  background: #f4b400;
  color: #1b2959;
}
.button:hover, .button:focus {
  background: #0BF5DF;
  color: #144353;
  box-shadow: 0 5px 19px 0 rgba(27,106,191,0.25);
  transform: translateY(-1px) scale(1.026);
}
.button.primary:hover, .button.primary:focus {
  background: #0bf5c6;
  color: #234A59;
}
.button.secondary:hover, .button.secondary:focus {
  background: #ffd300;
  color: #234A59;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 1px 14px rgba(27,106,191,0.035);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
}
.site-logo {
  display: inline-block;
  padding: 0 6px 0 0;
  height: 54px;
}
.site-logo img {
  height: 46px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #234A59;
  font-size: 1.02rem;
  position: relative;
  transition: color .15s;
  padding: 5px 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #0bf5c6;
}
.button.primary {
  margin-left: 25px;
}
.mobile-menu-toggle {
  display: none;
}

/* === MOBILE BURGER MENU === */
.mobile-menu-toggle {
  background: #1b6abf;
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 1.7rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .17s, color .17s;
  z-index: 110;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #0bf5c6;
  color: #234A59;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #234A59;
  transform: translateX(-100%);
  transition: transform .39s cubic-bezier(.67,.02,.32,.98);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.show {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2rem;
  margin: 20px 0 0 20px;
  cursor: pointer;
  align-self: flex-start;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 50px 0 0 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #0bf5c6;
  padding: 8px 0;
  transition: background .17s, color .14s;
  border-radius: 8px;
  width: 100%;
  letter-spacing: 1px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #ffd300;
  background: #235771;
}
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  header .button.primary {
    display: none;
  }
}

/* === HERO, CTA, FEATURES, SERVICES SECTIONS === */
.hero-section {
  background: linear-gradient(90deg, #0bf5c6 10%, #1b6abf 110%);
  color: #fff;
  border-radius: 0 0 26px 26px;
  padding-top: 42px;
  padding-bottom: 54px;
  margin-bottom: 45px;
}
.hero-section h1,
.hero-section h2,
.hero-section p {
  color: #fff;
}
.hero-section .button {
  margin-top: 22px;
}
.features-section {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 8px 40px rgba(11,245,198,0.08);
  margin-bottom: 42px;
  padding: 44px 20px;
}
.features-section h2 {
  color: #1b6abf;
  font-size: 2.1rem;
  margin-bottom: 14px;
}
.features-section ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.features-section li {
  font-size: 1.13rem;
  color: #234A59;
  position: relative;
  padding-left: 32px;
  font-weight: 600;
}
.features-section li:before {
  content: '\2022';
  color: #0bf5c6;
  font-size: 1.9rem;
  position: absolute;
  left: 0;
  top: -2px;
  line-height: 1.14;
}
.services-section {
  margin-bottom: 46px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 20px 22px 20px;
  box-shadow: 0 6px 32px 0 rgba(27,106,191,0.08);
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s, transform .18s, border .12s;
  border: 2px solid #e4fafd;
}
.service-card:hover {
  box-shadow: 0 10px 38px 0 rgba(27,106,191,0.17);
  border-color: #0bf5c6;
  transform: translateY(-1.5px) scale(1.015);
}
.service-card img {
  margin-bottom: 10px;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #f5fafd;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #1b6abf;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.service-card p {
  font-size: 0.99rem;
}
.cta-section {
  background: linear-gradient(92deg, #ffd300 8%, #0bf5c6 75%);
  padding: 35px 20px;
  border-radius: 23px;
  text-align: left;
  margin-bottom: 40px;
  box-shadow: 0 8px 120px 0 rgba(255,211,0,0.13);
}
.cta-section h2, .cta-section p {
  color: #234A59;
}
.cta-section .button {
  margin-top: 16px;
}
.contact-methods ul {
  margin-top: 21px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #234A59;
  font-size: 1.01rem;
}

@media (max-width: 900px) {
  .service-cards {
    flex-direction: column;
  }
  .service-card {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 7px; }
  .section { padding: 34px 7px; }
  .hero-section, .features-section, .cta-section { padding-left: 9px; padding-right: 9px; }
  .content-wrapper { padding: 0; }
  .features-section ul, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .service-cards {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    align-items: flex-start;
    padding: 17px 7px;
  }
}

/* === TESTIMONIALS === */
.testimonials-section {
  margin-bottom: 38px;
}
.testimonials-section h2 {
  color: #1b6abf;
  font-size: 1.59rem;
  margin-bottom: 16px;
}

/* === SERVICE LIST & TABLE === */
.services-list-section ul.service-list {
  display: flex;
  flex-direction: column;
  gap: 27px;
  margin: 0 0 1.4em 0;
}
.services-list-section li {
  background: #fff;
  border-left: 6px solid #0bf5c6;
  padding: 20px 20px 15px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 9px 0 rgba(35,74,89,0.06);
  margin-bottom: 0px;
  font-size: 1.05em;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services-list-section .service-price {
  background: #ffd300;
  color: #222;
  border-radius: 22px;
  padding: 5px 19px;
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01em;
  display: inline-block;
  margin-top: 7px;
  align-self: flex-end;
}

.pricing-section {
  background: #fff;
  border-radius: 19px;
  padding: 30px 16px 36px 16px;
  box-shadow: 0 5px 40px 0 rgba(27,106,191,0.10);
  margin-bottom: 45px;
}
.pricing-section h2 {
  color: #1b6abf;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  margin-top: 10px;
}
.pricing-table th {
  background: #0bf5c6;
  color: #234A59;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 5px;
  font-weight: 900;
}
.pricing-table td {
  padding: 11px 5px;
  border-bottom: 1px solid #e5edf3;
  font-size: 1rem;
  color: #234A59;
}
.pricing-table tr:first-child th {
  border-radius: 8px 8px 0 0;
}
.note {
  color: #7BA1B6;
  font-size: 0.98em;
  background: #fafdff;
  border-radius: 10px;
  padding: 8px 15px;
  margin: 7px 0 0 0;
  display: inline-block;
}

/* === LEGAL / POLICY SECTIONS === */
.legal-section {
  background: #fff;
  border-radius: 15px;
  margin: 34px 0 46px 0;
  box-shadow: 0 6px 32px 0 rgba(27,106,191,0.09);
  padding: 36px 21px;
}
.text-section {
  margin-bottom: 32px;
}
.text-section ul {
  margin: 17px 0 17px 19px;
  padding-left: 9px;
  color: #234A59;
}
.text-section li {
  font-size: 1.02em;
  padding-left: 0;
  margin-bottom: 9px;
}
.text-section h2, .text-section h3 {
  color: #1b6abf;
  font-size: 1.15em;
  margin: 24px 0 6px 0;
  font-weight: 900;
}

/* === FOOTER === */
footer {
  background: #234A59;
  color: #fff;
  padding: 32px 0 12px 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.footer-brand img {
  height: 46px;
  margin-bottom: 11px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #0bf5c6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #ffd300;
}
.footer-contact p {
  font-size: 0.99em;
  margin-bottom: 5px;
  color: #fff;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* === RESPONSIVE FLEX ADJUSTMENTS === */
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
}
@media (max-width: 768px) {
  .content-grid, .features {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #234A59;
  color: #fff;
  box-shadow: 0 -4px 24px 0 rgba(35,74,89,0.20);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 42px 22px 24px;
  z-index: 300;
  font-size: 1rem;
  gap: 28px;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .36s cubic-bezier(.55,.15,.35,1), opacity .33s cubic-bezier(.55,.15,.35,1);
}
.cookie-consent-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent-banner .cookie-message {
  margin-right: 22px;
  max-width: 430px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-consent-banner .button {
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: 16px;
  font-weight: 800;
  box-shadow: none;
  border: 0;
}
.cookie-consent-banner .button.primary {
  background: #0bf5c6;
  color: #234A59;
}
.cookie-consent-banner .button.reject {
  background: #f24c46;
  color: #fff;
}
.cookie-consent-banner .button.settings {
  background: #ffd300;
  color: #234A59;
}
.cookie-consent-banner .button:hover, .cookie-consent-banner .button:focus {
  filter: brightness(1.08) contrast(1.12);
  transform: scale(1.04);
}
@media (max-width: 630px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 10px 17px 10px;
  }
  .cookie-consent-banner .cookie-message {
    max-width: 98vw;
    margin-right: 0;
  }
  .cookie-consent-banner .cookie-actions {
    flex-direction: column;
    gap: 9px;
  }
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(35,74,89,0.50);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s cubic-bezier(.4,0,.2,1);
}
.cookie-modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-56%) scale(0.95);
  background: #fff;
  color: #234A59;
  border-radius: 14px;
  box-shadow: 0 12px 48px 0 rgba(35,74,89,0.22);
  width: 350px;
  max-width: 99vw;
  z-index: 410;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s cubic-bezier(.4,0,.2,1), transform .32s cubic-bezier(.4,0,.2,1);
  padding: 34px 28px 24px 28px;
  font-size: 1.05em;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  font-size: 1.23em;
  color: #1b6abf;
  margin-bottom: 22px;
  font-weight: 900;
}
.cookie-modal .cookie-category {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .category-label {
  font-weight: 700;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 21px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #e6e8f2;
  border-radius: 19px;
  transition: background .18s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: #0bf5c6;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .18s;
  box-shadow: 0 1px 5px rgba(0,0,0,0.09);
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(14px);
}
.cookie-modal .category-desc {
  font-size: 0.98em;
  margin-left: 10px;
  color: #666E7B;
  font-weight: 400;
}
.cookie-modal .category-essential .slider {
  background: #0bf5c6;
}
.cookie-modal .category-essential .slider:before {
  background: #fff;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
  margin-top: 24px;
}
.cookie-modal .button {
  font-size: 1rem;
  padding: 8px 17px;
}
.cookie-modal .button.close {
  background: #f24c46;
  color: #fff;
}
.cookie-modal .button.save {
  background: #0bf5c6;
  color: #234A59;
}
.cookie-modal .button:hover, .cookie-modal .button:focus {
  filter: brightness(1.075);
  transform: scale(1.045);
}

@media (max-width: 440px) {
  .cookie-modal {
    width: 97vw;
    padding: 17px 6px 17px 7px;
  }
}

/* === UTILITIES === */
.mt-0   { margin-top: 0!important; }
.mt-12  { margin-top: 12px!important; }
.mt-20  { margin-top: 20px!important; }
.mb-0   { margin-bottom: 0!important; }
.mb-10  { margin-bottom: 10px!important; }
.mb-16  { margin-bottom: 16px!important; }
.mb-24  { margin-bottom: 24px!important; }
.mb-32  { margin-bottom: 32px!important; }

/* === MISC MICROINTERACTIONS === */
.button, .main-nav a, .footer-nav a, .mobile-nav a, .service-card,
.card, .testimonial-card, .cookie-consent-banner .button, .cookie-modal .button {
  transition: background .16s, color .16s, box-shadow .14s, transform .13s;
}

/* === NO GRID PROPERTIES, FLEX ONLY === */
/* All layout containers are built using flex, gap, flex-wrap, flex-direction. */
