/* === 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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin:0;
  padding:0;
  border:0;
  font:inherit;
  vertical-align:baseline;
  box-sizing: border-box;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display:block;
}
html {
  line-height:1.5;
  font-size: 16px;
  scroll-behavior: smooth;
  background:#F1F7FB;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
a:focus {
  outline: 2px solid #49A3C4;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
img {
  max-width:100%;
  height:auto;
  display:block;
}
button {
  background:none;
  border:none;
  font: inherit;
  padding:0;
  cursor: pointer;
}
input[type="checkbox"] {
  accent-color: #49A3C4;
}

/* === BRAND FONTS (Montserrat & Roboto recommended loaded via HTML) === */
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #174559;
  background: #F1F7FB;
  min-height: 100vh;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.8rem;
  line-height:1.1;
  margin-bottom: 16px;
  color: #174559;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: #174559;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #174559;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #174559;
  font-weight: 400;
}

strong, b {
  font-weight: 700;
}

/* === CONTAINER & WRAPPER === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

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

/* === MAIN NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(46,153,208, 0.08);
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  min-height: 72px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #174559;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F1F7FB;
  color: #49A3C4;
}
.main-nav .primary-cta {
  background: #49A3C4;
  color: #fff;
  font-weight: 700;
  border-radius: 25px;
  padding: 10px 26px;
  margin-left: 14px;
  letter-spacing: 0.07em;
  box-shadow: 0 2px 16px 0 rgba(73,163,196,0.08);
  border: none;
  transition: background 0.22s, color 0.2s, box-shadow 0.26s;
}
.main-nav .primary-cta:hover,
.main-nav .primary-cta:focus {
  background: #174559;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(23,69,89,0.09);
}

/* === MOBILE NAV === */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #174559;
  background: transparent;
  padding: 8px 14px;
  border-radius: 8px;
  margin-left: 1rem;
  transition: background 0.15s;
  z-index: 9901;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F1F7FB;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 24px 0 rgba(41,163,196,0.12);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.6,0.01,0.4,1), box-shadow 0.24s;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 60px 0;
  align-items: flex-end;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -16px 0 32px 0 rgba(39,163,196,0.15);
}
.mobile-menu-close {
  font-size: 2rem;
  background: #49A3C4;
  color: #fff;
  padding: 12px 22px 12px 12px;
  margin: 18px 0 20px 0;
  border-radius: 0 16px 16px 0;
  align-self: flex-start;
  transition: background 0.21s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #174559;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
  padding: 18px 32px;
  margin-top:10px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 15px 18px;
  border-radius: 16px;
  color: #174559;
  background: #F1F7FB;
  margin-bottom: 8px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:last-child {
  margin-bottom: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #49A3C4;
  color: #fff;
}

@media (max-width:1024px) {
  .main-nav {
    gap: 11px;
  }
  header .container {
    gap: 18px;
  }
}

@media (max-width:900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline;
  }
  header .container {
    min-height: 60px;
    gap: 8px;
  }
}


@media (max-width:768px) {
  .container {
    padding: 0 8px;
  }
}

@media (max-width: 480px) {
  .mobile-nav a {
    font-size: 1.1rem;
    padding:11px 10px;
  }
}

/* === SECTIONS === */
section {
  margin-bottom:60px;
  padding:40px 0 0 0;
  width: 100%;
}
section:last-child {
  margin-bottom: 0;
}

/* === HERO / CTA === */
.content-wrapper > h1,
.content-wrapper > h2 {
  margin-top: 0;
}

.primary-cta, .secondary-cta {
  display: inline-block;
  border-radius: 100px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  margin-top: 16px;
  margin-bottom: 12px;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 3px 18px 0 rgba(46,153,208,0.16);
  background-color: #49A3C4;
  color: #fff;
  transition: background 0.22s, color 0.19s, box-shadow 0.26s, transform 0.26s;
  border: none;
}
.primary-cta:hover,
.primary-cta:focus {
  background: #174559;
  color: #fff;
  box-shadow: 0 6px 32px 0 rgba(23,69,89,0.15);
  transform: translateY(-2px) scale(1.03);
}
.secondary-cta {
  background: #fff;
  color: #49A3C4;
  border: 2px solid #49A3C4;
  box-shadow: none;
}
.secondary-cta:hover,
.secondary-cta:focus {
  background: #49A3C4;
  color: #fff;
  border-color: #174559;
  box-shadow: 0 5px 18px 0 rgba(73,163,196,0.10);
  transform: translateY(-1px) scale(1.02);
}

/* === LAYOUT UTILITY CLASSES === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 20px 0 rgba(73,163,196,0.10);
  margin-bottom:20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  max-width: 360px;
  padding: 32px 28px;
  transition: box-shadow 0.26s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(46,153,208,0.18);
  transform: translateY(-5px) scale(1.03);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px 0 rgba(23,69,89,0.09);
  border-left: 6px solid #49A3C4;
  transition: box-shadow 0.22s, border-color 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 3px 28px 0 rgba(73,163,196,0.19);
  border-left: 6px solid #174559;
}
.testimonial-card blockquote {
  font-size:1.1rem;
  font-weight: 500;
  font-style: italic;
  margin:0;
  color: #174559;
}
.testimonial-card strong {
  color: #49A3C4;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin: 0 0 18px 0;
}

/* === FLEX GRIDS FOR FEATURES, PRICING, STATS (No CSS Grid usage) === */
.feature-grid, .stat-grid, .pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.feature-grid > div, .stat-grid > div, .pricing-table > div {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 12px 0 rgba(41,163,196,0.08);
  padding: 28px 22px 24px 22px;
  flex: 1 1 220px;
  max-width: 270px;
  min-width: 200px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  transition: box-shadow 0.18s, transform 0.14s;
  font-family: 'Roboto', Arial, sans-serif;
}
.feature-grid > div:hover, .stat-grid > div:hover, .pricing-table > div:hover {
  box-shadow: 0 6px 32px 0 rgba(73,163,196,0.13);
  transform: translateY(-3px) scale(1.025);
}
.feature-grid img, .stat-grid img, .pricing-table img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.pricing-table > div strong {
  margin-top:16px;
  font-size:1.4rem;
  color: #49A3C4;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

.stat-grid h3 {
  font-size: 1.7rem;
  color: #49A3C4;
  margin-bottom: 7px;
}
.stat-grid p {
  font-size: 1rem;
  color: #174559;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.blog-list article {
  background: #fff;
  padding: 26px 20px;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(73,163,196, 0.08);
  flex: 1 1 320px;
  min-width: 200px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.blog-list article:hover {
  box-shadow: 0 3px 24px 0 rgba(73,163,196,0.13);
  transform: translateY(-2px) scale(1.02);
}

.tags-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.tags-filter strong {
  color: #49A3C4;
  font-weight: 600;
  margin-right: 6px;
}
.tags-filter a {
  background: #49A3C4;
  color: #fff;
  border-radius: 13px;
  padding: 7px 19px;
  font-size: .97rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.04em;
  font-weight:500;
  transition: background 0.16s, color 0.12s;
  margin-bottom: 4px;
}
.tags-filter a:hover {
  background: #174559;
  color: #fff;
}

/* === FEATURE COMPARISON & ADVANTAGES === */
.feature-comparison, .content-wrapper .feature-comparison, .feature-comparison ul {
  margin-top: 18px;
  margin-bottom: 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-comparison h3 {
  color: #174559;
  font-size: 1.2rem;
  margin-bottom: 7px;
  font-weight: 600;
}
.feature-comparison ul li {
  font-size: 1rem;
  padding-left: 18px;
  position: relative;
  margin-bottom: 0;
}
.feature-comparison ul li:before {
  content: '✔';
  color: #49A3C4;
  font-size: 1.0rem;
  position: absolute;
  left: 0;
}

/* === FOOTER === */
footer {
  background: #174559;
  color: #fff;
  padding: 32px 0 0 0;
  margin-top:60px;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
footer a {
  color: #fff;
  font-weight: 600;
  transition: color 0.18s, text-decoration 0.19s;
}
footer a:hover, footer a:focus {
  color: #49A3C4;
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background-color: #47a3c5;
  font-size: 0.97rem;
  margin-bottom: 7px;
}
footer img {
  width: 44px;
  margin-right: 16px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20000;
  background: #174559;
  color: #fff;
  box-shadow: 0 -3px 18px 0 rgba(23,69,89,0.13);
  padding: 22px 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: center;
  font-size: 1rem;
  animation: banner-in 0.5s ease;
}
@keyframes banner-in {
  0% { transform: translateY(70px); opacity:0; } 100% { transform: translateY(0); opacity:1; }
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin: 0 8px 0 0;
  border-radius: 24px;
  border: none;
  font-size: 1.01rem;
  letter-spacing: 0.04em;
  padding: 10px 28px;
  font-weight: 600;
  transition: background 0.17s, color 0.16s, transform 0.18s;
}
.cookie-banner .cookie-accept {
  background: #49A3C4;
  color:#fff;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: #fff;
  color: #174559;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #49A3C4;
  border: 2px solid #49A3C4;
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #49A3C4;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color:#fff;
  text-decoration: underline;
  padding: 10px 18px;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  color: #49A3C4;
  background: #fff;
  text-decoration: none;
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(23, 69, 89, 0.46);
  z-index: 20010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-in 0.4s;
  pointer-events: all;
}
@keyframes modal-in {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 17px;
  padding: 38px 34px 28px 34px;
  box-shadow: 0 6px 42px 0 rgba(41,163,196, 0.12);
  color: #174559;
  max-width: 425px;
  min-width: 260px;
  width: 100%;
  position: relative;
  animation: modal-content-in 0.8s cubic-bezier(0.7,0.01,0.2,1);
}
@keyframes modal-content-in {
  0% { transform: translateY(-40px); opacity:0; } 100% { transform: translateY(0); opacity:1; }
}
.cookie-modal-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: #49A3C4;
  font-weight: 700;
}
.cookie-modal-content ul {
  padding:0;
  margin-bottom: 18px;
}
.cookie-modal-content li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #174559;
}
.cookie-modal-content input[type="checkbox"] {
  min-width: 20px;
  min-height: 20px;
  margin-right: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  color: #49A3C4;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.16s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #174559;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal-content .modal-actions button {
  border-radius: 20px;
  padding: 9px 24px;
  font-weight: 600;
  background: #49A3C4;
  color: #fff;
  border: none;
  transition: background 0.18s, color 0.16s;
}
.cookie-modal-content .modal-actions button:last-child {
  background: #fff;
  color: #49A3C4;
  border: 1.5px solid #49A3C4;
}
.cookie-modal-content .modal-actions button:last-child:hover {
  background: #49A3C4;
  color: #fff;
}

/* === RESPONSIVE DESIGN (MOBILE FIRST) === */
@media (max-width:1024px) {
  .feature-grid > div, .stat-grid > div, .pricing-table > div {
    max-width: 45%;
  }
  .footer-nav {
    min-width:unset;
  }
}
@media (max-width:900px) {
  .feature-grid, .stat-grid, .pricing-table, .blog-list {
    gap: 16px 10px;
  }
  .feature-grid > div, .stat-grid > div, .pricing-table > div {
    max-width: 48%;
    min-width: 168px;
    padding: 22px 10px;
  }
  .card {
    max-width: 97vw;
    min-width: 180px;
    padding: 20px 16px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width:768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .feature-grid, .stat-grid, .pricing-table,
  .content-grid, .blog-list {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .feature-grid > div, .stat-grid > div, .pricing-table > div {
    max-width: 100%;
    min-width: 120px;
  }
  .testimonials-list, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  section, .section {
    margin-bottom:38px;
    padding:20px 0 0 0;
  }
  .primary-cta, .secondary-cta {
    min-width: 100%;
    font-size: 1rem;
    padding: 12px 0;
  }
  footer {
    padding: 24px 0 0 0;
  }
}
@media (max-width:540px) {
  h1 {font-size: 1.3rem;}
  h2 {font-size: 1.07rem;}
  .feature-grid > div, .stat-grid > div, .pricing-table > div {
    font-size: .98rem;
    padding: 18px 6px;
  }
  .blog-list article {padding:10px 7px;}
  .primary-cta, .secondary-cta {font-size:.97rem;padding:10px 0;}
  .cookie-banner {flex-direction:column;gap:8px;padding:16px 4px;font-size:0.98rem;}
}

/* === MISCELLANEOUS === */
::-webkit-scrollbar {
  width: 5px;
  background: #F1F7FB;
}
::-webkit-scrollbar-thumb {
  background: #49A3C4;
  border-radius: 10px;
}

blockquote {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

ul, ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.text-section ul li, .content-wrapper ul li {
  list-style: disc;
  margin-bottom: 7px;
  font-size: 1rem;
  color: #174559;
}
.text-section ul li img {
  margin-right: 6px;
  vertical-align: middle;
  width: 22px;
  height: 22px;
}

.content-wrapper.text-section {
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 1px 10px rgba(73,163,196, 0.08);
  padding: 28px 30px 18px 30px;
}

@media (max-width:640px) {
  .content-wrapper.text-section {
    padding: 12px 7px 7px 7px;
  }
}

/* === HIGH ENERGY ACCENTS === */
hr {
  border: 0;
  height: 3px;
  background: #49A3C4;
  border-radius: 2px;
  margin: 24px 0;
}

/* === FOCUS VISIBLE FOR ACCESSIBILITY === */
:focus-visible {
  outline: 2px solid #49A3C4;
  outline-offset: 1.5px;
}

/* === MICRO-INTERACTIONS === */
a, .primary-cta, .secondary-cta, .tags-filter a, .blog-list article, .card, .feature-grid > div, .stat-grid > div, .testimonial-card, .pricing-table > div, .mobile-menu-close, .cookie-banner button {
  transition-property: background,color,box-shadow,transform,border,outline;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(.15,.99,.33,1);
}

/* === CUSTOM ELECTRIC COLORS FOR VIBRANT ENERGETIC EFFECT === */
:root {
  --brand-primary: #174559;
  --brand-secondary: #49A3C4;
  --brand-accent: #F1F7FB;
  --vibe-1: #00D1A6;
  --vibe-2: #FFD82F;
  --vibe-3: #FF3880;
  --vibe-4: #2DF6FF;
}

.primary-cta {
  /* Responsive neon border on hover */
  border: 3px solid transparent;
  box-shadow:
    0 1px 12px #2DF6FF44,
    0 0.5px 8px #49A3C444;
}
.primary-cta:hover, .primary-cta:focus {
  border-color: #FFD82F;
  box-shadow: 0 8px 32px 0 #FF388055,
    0 3px 16px #FFD82F33;
}

.testimonial-card {
  border-image: linear-gradient(180deg, #49A3C4 35%, #FF3880 100%) 1;
  border-left: 7px solid #49A3C4;
}
.testimonial-card:hover {
  border-left: 7px solid #FF3880;
}

.blog-list article:hover {
  box-shadow: 0 6px 20px #FFD82F35;
  border-left: 4px solid #FF3880;
}

/* === NO GRID/COLUMNS/COLUMN-COUNT USAGE AT ALL! ONLY FLEX LAYOUTS === */
