/* === 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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  color: #244167;
  min-height: 100vh;
}
a {
  color: #1B3263;
  text-decoration: none;
  transition: color .2s;
}
a:focus {
  outline: 2px dashed #F8C186;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 22px;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
button, input, select, textarea {
  font: inherit;
  border-radius: 8px;
  border: none;
}
button {
  cursor: pointer;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1B3263;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
p, li, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #244167;
  margin-bottom: 14px;
}
strong {
  color: #C16818;
  font-weight: 600;
}

/* === Brand Colors & Warm Friendly Palette === */
:root {
  --brand-primary: #1B3263;
  --brand-secondary: #15A7C1;
  --brand-accent: #F6F8FA;
  --brand-deep-accent: #FFD8A0;
  --brand-soft-bg: #FFF3E6;
  --brand-warm-orange: #FFB37B;
  --brand-warm-coral: #F8C186;
  --brand-warm-red: #FF9D81;
  --brand-gray-light: #F9FAFB;
  --brand-shadow: 0 2px 16px 0 rgba(251, 169, 68, 0.09);
}

/* === Containers === */
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.text-section {
  background: transparent;
  border-radius: 16px;
}

/* === Section Spacing (MANDATORY PATTERN) === */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: var(--brand-accent);
  box-shadow: var(--brand-shadow);
}
.hero {
  background: var(--brand-warm-orange);
  background-image: none;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.cta-banner {
  background: var(--brand-warm-coral);
  border-radius: 30px;
  text-align: center;
  margin-bottom: 0;
  box-shadow: 0 4px 20px 0 rgba(255,179,123,0.1);
}

/* === Flexbox Layout Patterns === */
.card-container,
.feature-grid,
.benefit-grid,
.pricing-tables,
.expertise-grid,
.plan-comparison,
.trust-signals,
.testimonial-list,
.technology-stack ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.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: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--brand-shadow);
  padding: 28px 28px 20px 28px;
  margin-bottom: 24px;
  margin-right: 12px;
  min-width: 260px;
  border: 1px solid #F8C186;
  transition: box-shadow .22s, border .22s;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(251, 169, 68, 0.10);
  padding: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Cards for testimonials/opinions */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

/* Pricing Table */
.pricing-tables > div {
  flex: 1 0 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(251, 169, 68, 0.08);
  border: 1px solid #F8C186;
  padding: 28px 18px 24px 18px;
  margin-bottom: 20px;
  transition: transform .18s, box-shadow .22s;
  min-width: 220px;
}
.pricing-tables > div:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 26px 0 rgba(251, 169, 68, 0.15);
  border: 1.5px solid #FFB37B;
}

/* Plan Comparison */
.plan-comparison ul {
  margin-left: 0;
  gap: 22px;
  margin-top: 10px;
}
.plan-comparison li {
  margin-bottom: 8px;
  font-size: 1.06em;
}

/* List customizations */
ul {
  margin-bottom: 16px;
}
ol {
  margin-bottom: 16px;
  padding-left: 32px;
}
ul.contact-details, ul.faq-list {
  list-style: none;
  padding-left: 0;
}
ul.contact-details li,
ul.faq-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

/* == Banner, statistics etc == */
.statistics ul, .certifications, .results-highlights, .case-study-highlights {
  margin-bottom: 24px;
}
.statistics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: #fffbe8;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 0.98em;
}
.results-highlights, .case-study-highlights {
  background: #FFF3E6;
  border-radius: 13px;
  padding: 12px 18px;
}

/* === Main Navigation === */
header {
  background: #fff;
  box-shadow: 0 2px 32px 0 rgba(27, 50, 99, 0.04);
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 99;
}
header .container {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-grow: 1;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1B3263;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background .20s, color .20s;
  font-size: 1.03em;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: #FFB37B;
  color: #1B3263;
}

/* === Buttons === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #FFB37B 0%, #F8C186 100%);
  color: #1B3263;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12em;
  font-weight: 700;
  border-radius: 23px;
  padding: 13px 34px;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(249, 197, 122, 0.22);
  margin-left: 20px;
  margin-bottom: 0;
  cursor: pointer;
  transition: box-shadow .18s, background .22s, color .22s, transform .15s;
  outline: none;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(90deg, #F8C186 0%, #FFB37B 100%);
  color: #244167;
  box-shadow: 0 6px 32px 0 rgba(249, 197, 122, 0.22), 0 0 0 2.5px #FFD8A0;
  transform: translateY(-2px) scale(1.015);
}

/* Button icons etc. */
button.mobile-menu-toggle {
  background: #FFB37B;
  color: #1B3263;
  font-size: 2.1rem;
  border-radius: 18px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  margin-left: 16px;
  box-shadow: 0 1.5px 6px 0 rgba(249, 197, 122, 0.15);
  border: none;
  transition: box-shadow .16s, background .22s;
  z-index: 101;
}
button.mobile-menu-toggle:hover,
button.mobile-menu-toggle:focus {
  background: #F8C186;
  color: #1B3263;
  box-shadow: 0 6px 20px 0 rgba(249,197,122,0.28);
}

/* === Mobile Menu Styles === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(251,179,123, 0.97);
  box-shadow: 0 10px 40px rgba(27,50,99,0.20);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 34px 20px 20px 36px;
  transform: translateX(-105vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.4,0,.2,1), opacity .28s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  color: #1B3263;
  background: #fff;
  border-radius: 14px;
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  box-shadow: 0 2px 8px 0 rgba(234,166,84,0.20);
  cursor: pointer;
  margin-bottom: 18px;
  padding: 6px 16px;
  transition: background .17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F6F8FA;
  color: #15A7C1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.mobile-nav a {
  color: #1B3263;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.13em;
  border-radius: 15px;
  padding: 13px 8px 13px 4px;
  transition: background .18s, color .16s;
  text-align: left;
  outline: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFF3E6;
  color: #15A7C1;
}

/* Hide main-nav & show burger on mobile */
@media (max-width: 900px) {
  nav.main-nav {
    display: none !important;
  }
  .btn-primary {
    margin-left: 0;
  }
  button.mobile-menu-toggle {
    display: flex;
  }
  .container {
    gap: 14px;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  button.mobile-menu-toggle {
    display: none !important;
  }
}

/* === Footer === */
footer {
  margin-top: 32px;
  background: #F6F8FA;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 -2px 15px 0 rgba(251, 169, 68, 0.06);
  padding: 52px 0 38px 0;
}
footer .container.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  flex: 1 0 130px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-contact {
  flex: 2 0 220px;
  font-size: 1em;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: #244167;
}
.footer-nav {
  flex: 1 0 170px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #1B3263;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 0 4px 0;
  border-radius: 7px;
  transition: background .13s, color .13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #FFB37B;
  color: #1B3263;
}
.footer-social {
  flex: 0 0 100px;
  display: flex;
  gap: 13px;
  min-width: 80px;
  margin-bottom: 8px;
}
.footer-social a img {
  width: 34px;
  height: 34px;
}

/* === Testimonials: cards and lists === */
.testimonial-card {
  background: #fff;
  color: #1B3263;
  font-size: 1.08em;
  box-shadow: 0 2px 18px 0 rgba(249, 197, 122, 0.13);
}
.testimonial-card p {
  color: #1B3263;
  font-size: 1.04em;
}
.testimonial-card strong {
  color: #C16818;
  font-size: 0.98em;
}

/* === Misc blocks & visual tweaks === */
.feature-grid > div, .benefit-grid > div, .expertise-grid > div, .pricing-tables > div {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(250,197,122,0.09);
  padding: 22px 16px 20px 16px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow .18s, transform .14s;
}
.feature-grid > div:hover, .benefit-grid > div:hover {
  box-shadow: 0 6px 30px 0 rgba(255,179,123,0.13);
  transform: translateY(-2.5px) scale(1.017);
}
.feature-grid img, .benefit-grid img, .team-bio img {
  width: 44px;
  margin-bottom: 10px;
}
.expertise-grid {
  gap: 24px;
  margin-bottom: 16px;
}
.team-bio {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(251,169,68,0.12);
  padding: 20px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.technology-stack {
  margin-top: 13px;
  background: #FFF3E6;
  border-radius: 13px;
  padding: 9px 16px 8px 16px;
}
.technology-stack ul {
  flex-direction: column;
  gap: 7px;
}
.process-icons {
  display: flex;
  gap: 19px;
  margin-top: 8px;
  margin-bottom: 10px;
}
.process-icons img {
  width: 44px;
}
.benefit-grid > div h3, .feature-grid > div h3 {
  font-size: 1.14em;
  margin-bottom: 7px;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
}
.client-logos img {
  height: 38px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(27,50,99,0.04);
  padding: 6px 15px;
}

.map-location {
  background: #FFF3E6;
  border-radius: 13px;
  padding: 10px 15px; 
  margin: 22px 0 14px 0;
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: flex-start;
}
.map-location img {
  width: 36px;
}
.contact-hours {
  background: #F6F8FA;
  border-radius: 13px;
  padding: 12px 15px;
  margin-bottom: 14px;
}

/* FAQ */
.faq-list li {
  background: #FFF3E6;
  border-radius: 12px;
  padding: 12px 15px;
  margin-bottom: 13px;
  font-size: 1.02em;
}
.faq-list strong {
  color: #C16818;
}

/* Thank you section */
.thank-you {
  background: #FFB37B;
  border-radius: 28px;
  text-align: center;
  padding: 56px 18px 60px 18px;
  margin: 38px 0 0 0;
}
.thank-you h1 {
  color: #1B3263;
  font-size: 2.1rem;
}
.thank-you .btn-primary {
  margin-top: 24px;
}

/* Cookie Consent Banner & Modal */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fffbe8;
  box-shadow: 0 -8px 32px 0 rgba(255,179,123,0.13);
  padding: 24px 18px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
  border-radius: 24px 24px 0 0;
  animation: slideUpCookie .45s cubic-bezier(.36,1.3,.59,1.03);
}
@keyframes slideUpCookie {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: #1B3263;
  font-size: 1.05em;
  margin-bottom: 12px;
  text-align: center;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 4px;
  justify-content: center;
}
.cookie-btn {
  border: none;
  border-radius: 19px;
  background: #FFB37B;
  color: #1B3263;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05em;
  font-weight: 600;
  padding: 9px 25px;
  margin: 0;
  cursor: pointer;
  transition: background .2s, color .15s, box-shadow .2s, transform .11s;
  box-shadow: 0 1.5px 10px 0 rgba(255,179,123,0.12);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #F8C186;
  color: #1B3263;
  transform: translateY(-1.5px) scale(1.03);
}
.cookie-btn.cookie-settings {
  background: #fff;
  border: 2px solid #FFB37B;
  color: #E3891C;
}
.cookie-btn.cookie-settings:hover,
.cookie-btn.cookie-settings:focus {
  background: #FFF3E6;
  border: 2px solid #F8C186;
  color: #e16d0b;
}
/* Cookie consent modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(251,179,123,0.15);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .22s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe8;
  border-radius: 22px;
  box-shadow: 0 8px 40px 0 rgba(27,50,99,0.18);
  padding: 36px 28px 22px 28px;
  max-width: 420px;
  width: calc(100vw - 32px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cookie-modal h2 {
  margin-bottom: 22px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 0;
  font-size: 1.02em;
}
.cookie-modal .cookie-category input[type=checkbox] {
  accent-color: #FFB37B;
  width: 22px; height: 22px;
}
.cookie-modal .cookie-toggle[disabled] {
  opacity: 0.5;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* === Responsive Design === */
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .footer-logo, .footer-contact, .footer-nav, .footer-social {
    flex: 1 0 100%;
  }
  .footer-logo, .footer-social {
    justify-content: center;
  }
  footer .container.content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .hero .container,
  .content-wrapper,
  .feature-grid,
  .benefit-grid,
  .expertise-grid,
  .testimonial-slider,
  .card-container,
  .pricing-tables {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 22px;
  }
  .cta-banner {
    padding: 30px 8px !important;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.53rem; }
  h2 { font-size: 1.20rem; }
  .btn-primary {
    font-size: 0.98rem;
    padding: 10px 17px;
  }
  section, .section {
    padding: 28px 8px;
  }
}

/* === Utility === */
.hidden { display: none !important; }
.show { display: block !important; }

/* === Focus States for Accessibility === */
a:focus, button:focus, .btn-primary:focus {
  outline: 3px solid #F8C186;
  outline-offset: 2px;
}

/* == Subtle micro-interactions/animations == */
.card:hover, .team-bio:hover, .feature-grid > div:hover, .benefit-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 12px 36px 0 rgba(255,179,123,0.19);
  transform: translateY(-3px) scale(1.015);
}

/* === High Contrast for Testimonials & Reviews === */
.testimonial-card, .testimonial-list .testimonial-card, .testimonial-slider .testimonial-card {
  background: #fff;
  color: #1B3263 !important;
  border: 1.5px solid #FFD8A0;
  box-shadow: 0 2px 14px 0 rgba(255,179,123,0.11);
}
.testimonial-card p, .testimonial-card strong {
  color: #1B3263;
}

/* === Hide scrollbars for sliders if needed === */
.testimonial-slider {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #F8C186 #fff;
}
.testimonial-slider::-webkit-scrollbar {
  height: 5px;
}
.testimonial-slider::-webkit-scrollbar-thumb {
  background: #F8C186;
  border-radius: 8px;
}

/* == Custom Scrollbar (subtle, only for page if needed) == */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-thumb {
  background: #F8C186;
  border-radius: 7px;
}
body::-webkit-scrollbar-track {
  background: #fff;
}

/* ======== END ======== */
