/* ------------------------------------------------
   Normalize & CSS Reset
-------------------------------------------------- */
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;
}
article, aside, details, figcaption, figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  color: #1A2235;
  background: #F9FAFB;
}
ol,ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
:focus{
  outline: 2px solid #FBB13C;
  outline-offset: 2px;
}

/* ------------------------------------------------
   Brand Variables (fallbacks for CSS vars)
-------------------------------------------------- */
:root {
  --primary: #253858;
  --secondary: #F9FAFB;
  --accent: #FBB13C;
  --shadow: 0 2px 12px rgba(39,50,90,0.09), 0 1.5px 6px rgba(251,177,60,0.06);
  --radius: 18px;
  --radius-button: 100px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ------------------------------------------------
   Generic Layout
-------------------------------------------------- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--secondary);
  color: #222a3b;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ------------------------------------------------------------
   Vibrant Energetic: Colors, Typography & Hierarchy
------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}
h4 { font-size: 1.08rem; }
p, li, ul, ol {
  color: #313753;
  font-size: 1rem;
  font-family: var(--font-body);
}
strong {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.08rem; }
}

/* ------------------------------------------------------
   Header, Navigation, CTA Button
------------------------------------------------------- */
header {
  width: 100%;
  background: var(--secondary);
  box-shadow: 0 2px 12px rgba(39,56,88,0.05);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  height: 50px;
  transition: transform 0.22s;
}
.logo img {
  height: 48px;
  width: auto;
}
.logo:hover {
  transform: scale(1.09) rotate(-2deg);
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s,border-color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--accent);
  border-bottom: 2.5px solid var(--accent);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-button);
  padding: 15px 36px;
  box-shadow: 0 1.5px 8px rgba(251,177,60,0.17);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.19s, color 0.19s;
  margin-left: 24px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffbc51;
  color: #192242;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 3px 24px rgba(251,177,60,0.22);
}

@media (max-width: 1100px) {
  header .container {
    flex-wrap: wrap;
    gap: 12px;
  }
  .main-nav { gap: 18px; }
  .cta-btn { margin-left: 10px; }
}

/* ----------------------------------------------------
   Mobile Hamburger Menu Styles
---------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  z-index: 1021;
  background: var(--accent);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: var(--radius-button);
  padding: 8px 20px;
  box-shadow: 0 2px 8px rgba(251,177,60,0.15);
  position: fixed;
  top: 17px;
  right: 20px;
  cursor: pointer;
  transition: background 0.18s, transform 0.17s;
}
.mobile-menu-toggle:active {
  background: #ffbc51;
  transform: scale(0.97);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #253858cc;
  z-index: 1100;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(0.6,0.2,0.2,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  padding: 16px 24px 0 0;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 32px 40px;
  gap: 28px;
  margin-top: 8vh;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .07em;
  padding: 18px 0 10px 0;
  border-bottom: 2.5px solid transparent;
  transition: color 0.17s,border-color 0.17s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: var(--accent);
  border-bottom: 2.5px solid var(--accent);
}

@media (max-width: 1024px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none;
  }
  .main-nav, .cta-btn {
    display: inline-flex;
  }
}

/* ----------------------------------------------------
   Hero Section & Top-level CTA
---------------------------------------------------- */
.hero-section {
  background: linear-gradient(125deg, #FBB13C 3%, #F9FAFB 40% 90%);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 6px 24px rgba(251,177,60,.08);
  min-height: 350px;
  margin-bottom: 40px;
  padding: 42px 0 52px 0;
}
.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  min-height: 270px;
}
.hero-section .content-wrapper {
  max-width: 650px;
  align-items: flex-start;
  gap: 21px;
}
.hero-section h1 {
  color: #222a3b;
  text-shadow: 0 2px 12px rgba(251,177,60,0.09);
}
.hero-section p {
  font-size: 1.19rem;
  color: #253858;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .hero-section {
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 28px 0 30px;
  }
  .hero-section .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-height: 120px;
  }
  .hero-section .content-wrapper { max-width: 100vw; }
}

/* ----------------------------------------------------
   Sections, Feature Grids, Cards
---------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features-section {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.features-section .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 30px;
}
.features-section .feature-grid > div {
  background: #F9FAFB;
  border-radius: 14px;
  box-shadow: 0 0.5px 2px rgba(39,50,90,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 18px 18px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.features-section .feature-grid > div:hover {
  transform: translateY(-6px) scale(1.035);
  box-shadow: 0 4px 28px rgba(39,50,90,0.18);
}
.features-section .feature-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
}
.features-section h3 {
  font-family: var(--font-display);
  font-size: 1.19rem;
  font-weight: bold;
  color: var(--primary);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(251,177,60,0.07);
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 4px 22px rgba(251,177,60,0.19);
}

.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: 900px) {
  .features-section .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid { flex-direction: column; }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* ---------------------------------------------------
   About Us / Stats / Value Props / Experience
---------------------------------------------------- */
.about-preview-section, .about-section {
  background: #F2F6FE;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-preview-section ul,
.about-section ul {
  margin-top: 10px;
  padding-left: 18px;
  color: #2c3559;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.experience-stats {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 20px 18px 16px;
  font-size: 1.17rem;
  font-weight: bold;
  margin-top: 14px;
  margin-bottom: 8px;
}

/* -------------------------------------------------------------
   Testimonials: Cards with strong contrast and vibrant edge
-------------------------------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  background: #FEFCF7;
  border-radius: var(--radius);
  box-shadow: 0 4px 32px rgba(251,177,60,0.09);
  margin-bottom: 22px;
  border-left: 6px solid var(--accent);
  min-width: 250px;
  max-width: 680px;
  font-size: 1.08rem;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #222a3b;
  font-style: italic;
  text-shadow: 0 1px 5px #fbb13c12;
}
.testimonial-meta {
  color: #566199;
  font-size: 1rem;
  opacity: 0.91;
}
.testimonial-card:hover {
  box-shadow: 0 14px 44px rgba(39,50,90,.11);
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 18px 10px;
  }
}

/* Reference logos */
.client-logos {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 16px 0 0;
}
.client-logos img {
  height: 46px;
  width: auto;
  opacity: 0.72;
  filter: grayscale(1);
  transition: filter .22s,opacity .2s;
}
.client-logos img:hover {
  filter: none;
  opacity: 1;
}

/* ----------------------------------------------------------
   FAQ Accordion Styles
------------------------------------------------------------ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 22px;
}
.faq-item {
  background: #F9FAFB;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  min-width: 220px;
  transition: box-shadow 0.14s;
}
.faq-item h2 {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--primary);
}
.faq-item p {
  font-size: 1.01rem;
  color: #343a54;
  margin-top: 8px;
}

/* -----------------------------------------------------
   Feature Items List
----------------------------------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------------------------------------
   Service Highlights & Process
--------------------------------------------------- */
.service-highlights-section ul,
.services-section ul,
.process-section ol {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 22px 0 18px 0;
}
.service-highlights-section ul li,
.services-section ul li, .process-section ol li {
  background: #fff;
  box-shadow: 0 2px 14px rgba(251,177,60,0.07);
  border-radius: 11px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
}
.service-highlights-section ul li img {
  height: 30px;
  width: 30px;
  margin-right: 5px;
}
.process-section ol li {
  counter-increment: step;
  position: relative;
}
.process-section ol li:before {
  content: counter(step);
  position: relative;
  margin-right: 16px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  padding: 6px 12px;
  box-shadow: 0 2px 10px #fbb13c22;
}
.guarantee-promise {
  display: flex;
  align-items: center;
  background: #fffbe7;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 1px 7px #fbb13c29;
  padding: 16px;
  margin-top: 14px;
  gap: 16px;
}
.guarantee-promise img {
  height: 32px;
  width: 32px;
}

/* ----------------------------------------------------
   Contact & Company Info
----------------------------------------------------- */
.contact-section {
  background: #E9F2FD;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
}
.contact-details img {
  height: 22px;
  width: 22px;
  filter: drop-shadow(0 1px 4px #ffb93022);
}
.company-info-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  font-size: 1.02rem;
}

/* -----------------------------------------------------
   CTAs and Section Spacing
------------------------------------------------------ */
.cta-section {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 7px 34px #25385813;
  padding: 38px 20px;
  text-align: center;
  margin-bottom: 60px;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 10px;
}
.cta-section p {
  color: #F9FAFB;
  margin-bottom: 14px;
}
.cta-section .cta-btn {
  margin-left:0;
  margin-top: 14px;
}

/* -------------------------------
   Cookie Consent Banner & Modal
----------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #253858;
  color: #fff;
  font-family: var(--font-body);
  z-index: 3000;
  box-shadow: 0 -2px 18px #25385822;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px 20px 16px;
  gap: 22px;
  animation: banner-fade-in 0.8s cubic-bezier(.59,.07,.27,1.09) both;
}
@keyframes banner-fade-in {
  from { opacity:0; transform:translateY(36px); }
  to { opacity:1; transform:translateY(0); }
}
.cookie-banner p {
  font-size: 1rem;
  color: #fff;
}
.cookie-banner .cookie-btn {
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-button);
  padding: 10px 23px;
  font-size: 1.06rem;
  margin-left: 12px;
  cursor: pointer;
  box-shadow: 0 1.5px 8px rgba(251,177,60,0.09);
  transition: background 0.19s, color 0.17s, box-shadow .15s;
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: #fff;
  border: 2px solid var(--accent);
}
.cookie-btn:hover {
  background: #ffbe61;
  color: #1A2235;
}
.cookie-btn.cookie-reject {
  background:#fff;
  border:2px solid var(--accent);
  color: var(--primary);
}
.cookie-btn.cookie-reject:hover {
  background: #ffe3b0;
  color: #253858;
}
@media (max-width: 730px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 12px 14px 11px;
  }
  .cookie-banner .cookie-btn { margin: 5px 5px 0 0; }
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 340px;
  max-width: 92vw;
  width: 460px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 14px 49px #25385823;
  z-index: 4000;
  transform: translate(-50%, -53%) scale(.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s, transform 0.32s;
  padding: 28px 22px 16px 22px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.26rem;
}
.cookie-modal .cookie-options {
  margin:16px 0 8px 0;
  display:flex;
  flex-direction:column;
  gap:13px;
  font-size: 1rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  color: #232b45;
}
.cookie-modal input[type="checkbox"]:not(:checked){
  accent-color: #bcbfd9;
}
.cookie-modal input[type="checkbox"]:checked{
  accent-color: var(--accent);
}
.cookie-modal .cookie-modal-actions {
  margin-top:20px;
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  border: none;
  color: #1A2235;
  font-size: 2.2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: color 0.16s, opacity .16s;
  z-index: 6;
}
.cookie-modal-close:hover { color:var(--accent); opacity: 1; }

@media (max-width: 520px) {
  .cookie-modal { min-width: 90vw; padding: 18px 7vw 10px 7vw; width: 98vw; }
}

/* -----------------------------------------------
   Footer Styles
-------------------------------------------------- */
footer {
  background: #253858;
  color: #fff;
  padding: 49px 0 18px 0;
  margin-top: 80px;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -2px 22px #25385833;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #fffbe2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.85;
  transition: color .13s,opacity .13s;
}
.footer-links a:hover {
  color: var(--accent);
  opacity: 1;
}
.brand-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  font-size: 1rem;
  text-align: right;
}
.brand-footer img {
  height: 50px;
  filter: brightness(102%) drop-shadow(0 1px 8px #fbb13c35);
}
.brand-footer span {
  color: #fbb13c;
  font-weight: 600;
  font-family: var(--font-display);
  font-size:1.07rem;
}
.brand-footer div {
  color: #c2c8da;
  font-size: .97rem;
}
@media (max-width: 780px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
  .brand-footer { align-items: center; justify-content:center; }
}

/* --------------------------------------------
   Typography Utilities & Microanimations
--------------------------------------------- */
a, .cta-btn, button, .cookie-btn {
  transition: color 0.12s, background 0.13s, box-shadow 0.13s, transform 0.11s;
}
.card, .testimonial-card, .features-section .feature-grid > div, .faq-item {
  transition: box-shadow 0.18s, transform 0.16s;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.96);
}

/* ----------------------
   Responsive Spacing
------------------------ */
.section, .features-section, .about-preview-section,
.cta-section, .testimonial-card, .faq-section, .services-section, .company-info-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 1000px) {
  .section, .features-section, .about-preview-section,
  .cta-section, .testimonial-card, .faq-section, .services-section, .company-info-section {
    padding: 24px 7px;
    margin-bottom: 33px;
  }
}

/* ----------------------
   Miscellaneous
------------------------ */
::-webkit-scrollbar { width: 10px; background: #d4dae9; }
::-webkit-scrollbar-thumb { background: #fbb13c; border-radius: var(--radius); }

/* Utility classes for cards, flex gap, etc. */
.card-container { gap: 24px; flex-wrap: wrap; }
.card { margin-bottom: 20px; position: relative; }
.content-grid, .feature-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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/*
Keep section margin and padding always as specified for ALL top-level section containers!
*/

/* END OF STYLES */