/* 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, 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAFF;
  color: #23213C;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

ul, ol {
  list-style: none;
}

a {
  color: #283593;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4B400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Roboto, Arial, sans-serif;
  font-weight: 700;
  color: #283593;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  line-height: 1.16;
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.125rem;
}

p, li, blockquote, table, th, td {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23213C;
}

/* CONTAINERS & LAYOUTS */
.container {
  width: 100%;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper {
  width: 100%;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(44,51,89,0.06);
}

@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
    border-radius: 12px;
  }
}

@media (max-width: 600px) {
  .section {
    margin-bottom: 24px;
    padding: 16px 2px;
    border-radius: 8px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px 0 rgba(44,51,89,0.10);
  transition: box-shadow 0.18s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 7px 32px 0 rgba(44,51,89,0.18);
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFDED;
  border-left: 6px solid #F4B400;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(44,51,89,0.07);
  transition: box-shadow 0.22s;
  color: #222043;
}
.testimonial-card blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #23213C;
  border: none;
  background: none;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #33315A;
  opacity: 0.95;
  font-weight: 600;
}
.testimonial-card.featured {
  border-left-color: #283593;
  background: #F4B400;
  color: #1F1D44;
  box-shadow: 0 8px 28px rgba(244,180,0,0.13);
}
.testimonial-card.featured blockquote,
.testimonial-card.featured span {
  color: #222043!important;
}

.aggregate-rating {
  font-size: 1.125rem;
  font-weight: 700;
  color: #283593;
  margin-top: 8px;
  background: #FFF;
  border-radius: 8px;
  padding: 8px 20px;
  display: inline-block;
  box-shadow: 0 1px 4px rgba(44,51,89,0.07);
}

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

/* NAVIGATION */
header {
  background: #283593;
  color: #FFF;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 2px 12px rgba(40,53,147,0.10);
  position: relative;
  z-index: 20;
}
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 6px;
  color: #FFF;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F4B400;
  background: rgba(255,255,255,0.07);
}
.button.primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F4B400;
  color: #283593;
  border: none;
  border-radius: 28px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 1.06rem;
  box-shadow: 0 3px 16px rgba(244,180,0,0.18);
  margin-left: 14px;
  transition: background 0.18s, color 0.18s, box-shadow 0.20s;
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.button.primary:hover, .button.primary:focus {
  background: #ffd600;
  color: #23213C;
  box-shadow: 0 6px 22px rgba(244,180,0,0.26);
}
.button.secondary {
  background: #283593;
  color: #FFF;
  border: 2px solid #F4B400;
  padding: 12px 32px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 1.06rem;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.button.secondary:hover, .button.secondary:focus {
  background: #F4B400;
  color: #283593;
  border-color: #283593;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #FFF;
  font-size: 2rem;
  display: none;
  cursor: pointer;
  margin-left: 12px;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #F4B400;
}

@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .button.primary {
    margin-left: 0;
    padding: 12px 18px;
    font-size: 1rem;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 82vw;
  max-width: 370px;
  height: 100%;
  background: #283593;
  z-index: 1200;
  box-shadow: -8px 0 36px rgba(40,53,147,0.15);
  transform: translateX(100%);
  transition: transform 0.27s cubic-bezier(.7,.2,.35,1);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F4B400;
  font-size: 2.4rem;
  cursor: pointer;
  align-self: flex-end;
  margin: 16px 16px 0 0;
  transition: color 0.16s;
}
.mobile-menu-close:focus {
  color: #FFFFFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 28px 24px 32px;
  align-items: flex-start;
  margin-top: 10px;
}
.mobile-nav a {
  color: #FFF;
  padding: 12px 0px 12px 0px;
  font-size: 1.20rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 6px;
  font-weight: 600;
  transition: color 0.13s, background 0.13s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F4B400;
  color: #283593;
}

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

/* FOOTER */
footer {
  background: #23213C;
  color: #FFF;
  padding-top: 32px;
  padding-bottom: 28px;
  border-top: 6px solid #F4B400;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 42px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 190px;
}
.footer-brand img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
}
.footer-brand p {
  color: #F4B400;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1.05rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #FFF;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F4B400;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}
.footer-contact p {
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 24px 0;
  background: #FFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(40,53,147,0.08);
}
.pricing-table th, .pricing-table td {
  padding: 18px 14px;
  text-align: left;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-bottom: 1px solid #F0F2FA;
}
.pricing-table th {
  background: #F4B400;
  color: #283593;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* GLOBAL LIST STYLES */
ul li, ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}
ul li img, ol li img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-right: 8px;
}

@media (max-width: 600px) {
  .pricing-table th,
  .pricing-table td {
    padding: 10px 6px;
    font-size: 0.97rem;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.06rem; }
}

/* BUTTONS & LINKS */
a.button {
  display: inline-block;
  margin-top: 12px;
}
.button:active {
  box-shadow: 0 1px 3px #f4b400;
}

/* FORM/INPUTS (FOR FUTURE USE) */
input, textarea, select, button {
  font-family: inherit;
  border-radius: 7px;
  border: 1px solid #DEE2F6;
  font-size: 1rem;
  padding: 9px 16px;
  outline: none;
  margin-bottom: 18px;
}
input:focus, textarea:focus, select:focus {
  border-color: #283593;
  box-shadow: 0 0 0 2px #f4b40055;
}

/* ANIMATION UTILITIES */
.fade-in {
  animation: fade-in 0.4s ease;
}
@keyframes fade-in {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.slide-up {
  animation: slide-up 0.4s cubic-bezier(.52,.14,.31,1.04);
}
@keyframes slide-up {
  from {transform: translateY(40px);opacity: 0;}
  to {transform: translateY(0);opacity: 1;}
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #23213C;
  color: #FFF;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 12px 18px;
  box-shadow: 0 -4px 18px rgba(40,53,147,0.15);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.32s cubic-bezier(.7,.2,.35,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-content {
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner-text {
  flex: 1 1 220px;
  color: #FFF;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
  border: none;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1rem;
  color: #283593;
  background: #F4B400;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(244,180,0,.18);
  transition: background .2s, color .2s, box-shadow .2s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFD600;
}
.cookie-btn.reject {
  background: #FCFCFC;
  color: #283593;
  border: 2px solid #F4B400;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F4B400;
  color: #23213C;
}
.cookie-btn.settings {
  background: transparent;
  color: #F4B400;
  border: 2px solid #F4B400;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F4B400;
  color: #283593;
}

@media (max-width: 650px) {
  .cookie-banner-content { flex-direction: column; gap: 8px; align-items: stretch; }
  .cookie-banner-actions { justify-content: flex-start; }
}

/* COOKIE PREFS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(40,53,147,0.36);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.24s ease-in;
}
.cookie-modal {
  background: #FFFDED;
  padding: 36px 30px 26px 30px;
  border-radius: 18px;
  box-shadow: 0 7px 40px 4px rgba(40,53,147,0.12);
  min-width: 320px;
  max-width: 94vw;
  animation: slide-up 0.32s ease-in;
  color: #283593;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal h2 {
  color: #F4B400;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-modal-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #283593;
}
.cookie-modal-category label {
  font-size: 1.07rem;
  color: #23213C;
  font-weight: 700;
}
.cookie-modal-tools {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: none;
  border: none;
  color: #F4B400;
  font-size: 2.1rem;
  cursor: pointer;
}
.cookie-modal-close:focus {
  color: #283593;
}

@media (max-width: 460px) {
  .cookie-modal { padding: 18px 5px 13px 8px; border-radius: 10px; }
  .cookie-modal-close { font-size: 1.75rem; }
}

/* ENERGETIC DECORATIVE ELEMENTS */
.section {
  position: relative;
}
.section:before {
  content: '';
  position: absolute;
  top: 12px;
  left: -20px;
  width: 36px;
  height: 6px;
  border-radius: 1.5px;
  background: #F4B400;
  box-shadow: 0 0 15px #F4B40066;
  z-index: 0;
}
.section:first-child:before { display:none; }
@media (max-width: 700px){
  .section:before { left: 0; width: 20vw; min-width: 24px; }
}

/* Vibrant heading underline */
h1, h2 {
  position: relative;
  z-index: 1;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 62px;
  height: 7px;
  background: #F4B400;
  border-radius: 4px;
  margin-top: 5px;
  margin-bottom: 10px;
}
@media (max-width: 650px) {
  h1:after, h2:after { width: 45px; height: 5px; margin-bottom: 8px; }
}

/* TABLET & MOBILE TABLE LAYOUTS */
@media (max-width: 800px) {
  .pricing-table, .pricing-table th, .pricing-table td {
    font-size: 0.95rem;
    padding-left: 7px;
    padding-right: 7px;
  }
}

/* --- END --- */
