/* --- 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, 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F7F9FB;
  color: #233B57;
  font-family: 'Roboto', system-ui, sans-serif;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .18s;
}
a:focus {
  outline: 2px solid #F9B233;
  outline-offset: 2px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1.1;
  color: #1a2940;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.headline {
  font-weight: 700;
  font-size: 1.2rem;
  color: #F9B233;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1rem;
  color: #4A90E2;
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
p {
  font-size: 1rem;
  color: #243a58;
  margin-bottom: 16px;
}
strong, b {
  font-weight: bold;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(60,80,170,0.11), 0 1.5px 5px rgba(249,178,51,0.06);
  /* vibrancy */
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* --- HEADER --- */
header {
  width: 100%;
  background: #233B57;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  position: sticky;
  top: 0;
  z-index: 19;
  box-shadow: 0 2px 18px 0 rgba(35,59,87,0.07);
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  padding: 6px 8px;
  border-radius: 7px;
  transition: background .16s, color .16s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F9B233;
  color: #1a2940;
}
.cta-primary {
  background: #F9B233;
  color: #1a2940;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.07rem;
  border-radius: 30px;
  padding: 12px 34px;
  margin-left: 18px;
  transition: background .19s, color .19s, box-shadow .23s;
  box-shadow: 0 2px 22px -6px #e3e8ee88;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
}
.cta-primary:hover,
.cta-primary:active {
  background: #fff;
  color: #F9B233;
  box-shadow: 0 6px 25px -5px #F9B23342;
}
.cta-primary:focus {
  outline: 2px solid #E3E8EE;
}
.cta-secondary {
  background: #fff;
  color: #f1592a;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  padding: 8px 24px;
  border: 2px solid #f1592a;
  margin-top: 15px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background .16s, color .16s, border-color .16s, box-shadow .23s;
  box-shadow: 0 2px 24px -6px #f1592a32;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #f1592a;
  color: #fff;
  border-color: #f1592a;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.05rem;
  color: #F9B233;
  margin-left: 22px;
  cursor: pointer;
  transition: color .15s;
  z-index: 41;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F9B233;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,59,87,0.98);
  box-shadow: 0 0 90px 16px #233B5780;
  transform: translateX(-110vw);
  transition: transform .40s cubic-bezier(0.86,0,0.07,1);
  z-index: 40;
  display: flex;
  flex-direction: column;
  padding: 44px 24px 32px 32px;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #F9B233;
  cursor: pointer;
  margin-bottom: 16px;
  transition: color .14s;
}
.mobile-menu-close:focus {
  outline: 2px solid #F9B233;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}
.mobile-nav a {
  font-size: 1.24rem;
  padding: 10px 0;
  border-radius: 13px;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: background .18s, color .18s;
  text-align: left;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #F9B233;
  color: #1a2940;
}

/* --- HERO/BANNER --- */
section:first-of-type {
  background: linear-gradient(90deg,#F9B233 0%,#4A90E2 80%,#fff 100%);
  color: #1a2940; /* dark text */
  min-height: 244px;
  display: flex;
  align-items: center;
  box-shadow: 0 12px 34px -10px #233B5745;
}
section:first-of-type .container,
section:first-of-type .content-wrapper {
  align-items: flex-start !important;
}
section:first-of-type h1 {
  font-size: 2.9rem;
  line-height: 1.07;
  font-weight: 800;
  margin-bottom: 18px;
  background: none;
}
section:first-of-type .headline {
  color: #fe4e00;
}
section:first-of-type .cta-primary {
  margin-top: 22px;
}

/* --- FEATURE, SERVICE, CARD, SECTION AND FLEX PATTERNS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  margin-top: 26px;
  margin-bottom: 12px;
}
.feature-grid li {
  flex: 1 1 210px;
  min-width: 212px;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0px #E3E8EE99;
  padding: 30px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow .18s, transform .20s;
}
.feature-grid li:hover {
  box-shadow: 0 4px 32px 0px #F9B23377;
  transform: translateY(-5px) scale(1.025);
}
.feature-grid img {
  height: 52px;
  margin-bottom: 4px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.service-list li {
  flex: 1 1 226px;
  background: #E3E8EE;
  border-radius: 13px;
  padding: 22px 21px;
  margin-bottom: 20px;
  font-size: 1rem;
  box-shadow: 0 1.5px 8px #bebebe24;
  color: #1a2940;
  transition: box-shadow .15s;
}
.service-list li h3 {
  font-size: 1.11rem;
  margin-bottom: 8px;
}
.service-list li:hover {
  box-shadow: 0 5px 22px #F9B23355;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.service-cards li {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 17px #E3E8EE33;
  padding: 26px 20px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 200px;
  position: relative;
  transition: box-shadow .18s, transform .13s;
}
.service-cards li:hover {
  box-shadow: 0 6px 36px #F9B23333;
  transform: translateY(-4px) scale(1.017);
}
.service-price {
  background: #F9B233;
  color: #fff;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 4px 11px;
  font-weight: 600;
  font-size: 1rem;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px #233B5710;
  padding: 30px 22px 24px 22px;
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #E3E8EE;
  border-radius: 16px;
  padding: 20px 30px 18px 24px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 14px #233B5740;
  font-size: 1.1rem;
  color: #1a2940;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  position: relative;
}
.testimonial-card:before {
  content: '\201C';
  color: #F9B233;
  font-size: 3.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  margin-right: 16px;
  line-height: 0;
  opacity: 0.75;
  position: static;
}
.testimonial-meta {
  margin-left: 12px;
  color: #4A90E2;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}

/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 22px #E3E8EE59;
  overflow: hidden;
  margin-bottom: 20px;
}
.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 16px 14px;
  font-size: 1.06rem;
}
.pricing-table thead {
  background: #F9B233;
  color: #fff;
}
.pricing-table tbody tr:nth-child(odd) {
  background: #F9F5EF;
}
.pricing-table tbody tr:nth-child(even) {
  background: #fff;
}
.pricing-table tr:hover td {
  background-color: #F9B23311;
}
.pricing-notes {
  background: #E3E8EE;
  padding: 12px 18px;
  border-radius: 7px;
  color: #1a2940;
  margin-bottom: 16px;
}

/* --- FAQ ACCORDION --- */
.faq-accordion dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #F9B233;
  color: #fff;
  border-radius: 11px;
  padding: 12px 22px;
  margin-bottom: 2px;
  font-size: 1.09rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .16s;
  position: relative;
}
.faq-accordion dd {
  background: #E3E8EE;
  color: #1a2940;
  border-radius: 0 0 11px 11px;
  padding: 14px 22px;
  margin-bottom: 14px;
  display: block;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}

/* --- SUPPORT CTA --- */
.support-cta {
  background: #F9B233;
  color: #fff;
  padding: 16px 26px;
  border-radius: 13px;
  margin-top: 30px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  box-shadow: 0 1px 6px #E3E8EE55;
}
.support-cta a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  transition: color .16s;
}
.support-cta a:hover {
  color: #233B57;
}

/* --- FOOTER --- */
footer {
  background: #233B57;
  color: #fff;
  padding: 30px 0 22px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.branding {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F9B233;
}
.branding img {
  height: 36px;
  margin-right: 3px;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-direction: row;
  gap: 21px;
  align-items: center;
}
.footer-nav a, .legal-nav a {
  font-size: 0.98rem;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color .16s;
  padding: 4px 8px;
  border-radius: 4px;
}
.footer-nav a:hover, .legal-nav a:hover {
  color: #F9B233;
  background: #ffffff15;
}

/* --- COOKIE CONSENT BANNER + MODAL --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #233B57;
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 18px 14px 18px 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  box-shadow: 0 -2px 24px #233B5744;
  animation: cookieBannerSlideIn .8s cubic-bezier(.65,0,.35,1) 1;
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-btn {
  background: #F9B233;
  color: #233B57;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 8px 16px;
  margin: 0 6px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background .17s, color .13s, box-shadow .18s;
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  background: #fff;
  color: #233B57;
  box-shadow: 0 2px 11px #F9B23355;
}
.cookie-consent-banner .cookie-btn.cookie-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.4px solid #fff;
  margin-right: 6px;
}
.cookie-consent-banner .cookie-btn.cookie-btn-secondary:hover {
  background: #fff;
  color: #233B57;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2002;
  background: rgba(35,59,87,0.73);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  animation: modalAppear .43s cubic-bezier(.45,0,.55,1) 1;
}
@keyframes modalAppear {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #1a2940;
  border-radius: 20px;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 7px 44px #233B5742;
  min-width: 320px;
  max-width: 98vw;
  min-height: 225px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  animation: modalContentFadeIn .29s cubic-bezier(.77,0,.23,1) 1;
}
@keyframes modalContentFadeIn {
  from { transform: translateY(25px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  color: #233B57;
  font-size: 1.37rem;
  margin-bottom: 9px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  padding: 7px 0;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 38px;
  height: 22px;
  margin: 0;
  cursor: pointer;
}
.cookie-slider {
  position: absolute;
  left: 0; top: 0;
  width: 38px; height: 22px;
  background: #E3E8EE;
  border-radius: 13px;
  box-shadow: 0 0.7px 3px #dbdbdb41;
  transition: background .16s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: #F9B233;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 1.5px 7px #233B5755;
  transition: left .18s;
}
.cookie-toggle input:checked + .cookie-slider:before {
  left: 18px;
}
.cookie-modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #F9B233;
  font-size: 2rem;
  margin-left: auto;
  margin-bottom: 10px;
  cursor: pointer;
}

/* --- RESPONSIVE ADAPTATION (MOBILE-FIRST) --- */
@media (max-width: 990px) {
  .container {
    padding: 0 10px 0 10px;
  }
  .footer-nav, .legal-nav {
    gap: 13px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 16px 10px;
  }
  .branding, .footer-nav, .legal-nav {
    font-size: 0.97rem;
    gap: 10px;
  }
  .main-nav {
    display: none;
  }
  .cta-primary {
    margin-left: 2px;
    padding: 12px 22px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 7px;
    max-width: 100vw;
    gap: 0;
  }
  section {
    padding: 26px 6px;
    margin-bottom: 32px;
    border-radius: 11px;
  }
  h1 {
    font-size: 1.7rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.15rem;
  }
  .feature-grid, .service-list, .service-cards {
    gap: 14px;
    flex-direction: column;
  }
  .feature-grid li, .service-list li, .service-cards li {
    min-width: 0;
    max-width: 100vw;
    padding: 18px 10px;
    border-radius: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    padding: 16px 10px 14px 10px;
    font-size: 0.99rem;
    border-radius: 9px;
  }
  .testimonial-card:before {
    font-size: 2.1rem;
    margin-right: 0;
  }
  .branding img {
    height: 29px;
  }
  .pricing-table th,
  .pricing-table td {
    font-size: 0.86rem;
    padding: 8px 9px;
  }
  .faq-accordion dt, .faq-accordion dd {
    font-size: 0.92rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 540px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: .97rem;
    padding: 14px 7px 14px 7px;
  }
  .cookie-modal-content {
    min-width: 0;
    max-width: 99vw;
    padding: 14px 4vw 18px 4vw;
    border-radius: 13px;
  }
}

/* --- FONT IMPORTS (to be placed at the top when preprocessed!) --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* --- GENERAL INTERACTIVITY & EFFECTS --- */
button {
  font-family: inherit;
  font-size: inherit;
}
button:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px solid #4A90E2;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #b2bfd7; }
::-moz-placeholder { color: #b2bfd7; }
:-ms-input-placeholder { color: #b2bfd7; }
::placeholder { color: #b2bfd7; }

/* --- TRANSITIONS & MICRO-ANIMATIONS --- */
a, .main-nav a, .mobile-nav a, .cta-primary, .cta-secondary, button, .cookie-btn {
  transition: background .19s, color .19s, box-shadow .19s, border-color .17s, transform .15s;
}
.card, .service-cards li, .feature-grid li, .testimonial-card {
  transition: box-shadow .17s, transform .15s;
}
.card:hover, .service-cards li:hover, .feature-grid li:hover {
  box-shadow: 0 6px 35px -5px #F9B23347;
  transform: translateY(-7px) scale(1.035);
}

/* --- UTILITIES --- */
.text-center {
  text-align: center;
}
.m-0 {
  margin: 0 !important;
}
.mt-32 {
  margin-top: 32px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.d-flex {
  display: flex !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}

/* --- END OF FROSTY LIFT CSS --- */
