/* --- 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  line-height: 1.5;
  background: #10131a;
  color: #F5F7FA;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a { color: #F6C453; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #ffe39c; outline: none; }
ul, ol { margin-left: 1.2em; }
strong { font-weight: 700; }
hr { border: none; border-top: 1px solid #234671; margin: 32px 0; } 

/* --- FONT FACE & BACKGROUND --- */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Roboto+Slab:700&display=swap');

body {
  background: linear-gradient(135deg, #133C55 0%, #111820 100%);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 { font-family: 'Roboto Slab', serif; color: #F6C453; font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; }
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.11rem; margin-bottom: 8px; }
p, ul, ol, blockquote, li, span { font-size: 1rem; color: #F5F7FA; line-height: 1.7; }
blockquote { border-left: 3px solid #F6C453; padding-left: 18px; color: #F6C453; font-style: italic; }

/* --- REUSABLE CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* --- LAYOUT SECTIONS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(19, 60, 85, 0.92);
  border-radius: 28px;
  box-shadow: 0 3px 40px 0 rgba(17, 24, 32, 0.15);
  position: relative;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #10131a;
  box-shadow: 0 2px 24px 0 rgba(19, 60, 85, 0.16);
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 22px 0 18px 0;
  font-size: 1rem;
}
.main-nav a {
  padding: 10px 16px;
  border-radius: 18px;
  font-weight: 600;
  color: #F5F7FA;
  position: relative;
  transition: background .18s, color .18s, box-shadow .2s;
}
.main-nav a.cta-primary {
  background: #F6C453;
  color: #133C55;
  box-shadow: 0 0 18px 0 #ffe39c44, 0 2px 12px 0 #133C5533;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  outline: none;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #ffdd84;
  color: #111820;
  box-shadow: 0 0 32px #F6C453aa, 0 2px 12px 0 #133C5533;
}
.main-nav a:hover:not(.cta-primary), .main-nav a:focus:not(.cta-primary) {
  background: #133C55;
  color: #F6C453;
}
.main-nav img {
  vertical-align: middle;
  height: 38px;
  width: auto;
  margin-right: 14px;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 22px;
  background: #133C55;
  color: #F6C453;
  border: none;
  font-size: 2.1rem;
  padding: 7px 15px;
  border-radius: 7px;
  z-index: 120;
  transition: background .18s, color .18s;
  cursor: pointer;
  box-shadow: 0 2px 12px #111820aa;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F6C453;
  color: #133C55;
}
.mobile-menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0; top: 0;
  background: rgba(16,19,26,0.97);
  z-index: 110;
  transform: translateX(-100vw);
  transition: transform .35s cubic-bezier(.7,0,.16,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F6C453;
  font-size: 2.2rem;
  position: absolute;
  right: 24px;
  top: 23px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #ffd97c;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.23rem;
  padding: 13px 0 13px 8px;
  color: #F5F7FA;
  border-left: 3px solid transparent;
  border-radius: 7px;
  margin-bottom: 6px;
  transition: border .2s, color .18s, background .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F6C453;
  background: #133C55;
  border-left: 3px solid #F6C453;
}

@media (max-width: 1050px){
  .main-nav a {
    font-size: 0.95rem;
    padding: 9px 10px;
  }
}
@media (max-width: 900px){
  .main-nav a:not(:first-child) { display: none; }
  .main-nav a.cta-primary { display: none; }
  .mobile-menu-toggle { display: block; }
  .main-nav img { margin-right: 0; }
}

/* --- HERO, PREVIEWS & CTA SECTIONS --- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 650px){
  section { padding: 30px 0; }
}

/* --- FEATURE LISTS / FEATURE GRID --- */
.feature-grid, .feature-item-list, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div, .feature-item {
  background: #19283b;
  border-radius: 17px;
  box-shadow: 0 2px 18px 0 #133C5544;
  padding: 24px 22px;
  flex: 1 1 205px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .23s, background .2s;
  border: 1px solid #1f445e; 
}
.feature-grid > div:hover, .feature-item:hover {
  background: #133C55;
  box-shadow: 0 0 24px #F6C45333, 0 5px 28px #133C5544;
}
.feature-grid img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 7px #F6C45355);
}

/* --- CARD DESIGN & LAYOUT --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #19283b;
  border-radius: 18px;
  padding: 30px 24px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 3px 28px #133C5540;
  border: 1px solid #1f445e;
  transition: box-shadow .23s, background .21s;
}
.card:hover {
  background: #133C55;
  box-shadow: 0 6px 28px #F6C45333;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- CASE STUDY LIST --- */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.case-study {
  background: #161e2d;
  border-radius: 15px;
  box-shadow: 0 3px 18px #133C5524;
  flex: 1 1 285px;
  min-width: 240px;
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  border: 1px solid #1f445e;
}
.case-study h3 {
  color: #F6C453;
  margin-bottom: 10px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F5F7FA;
  color: #133C55;
  box-shadow: 0 2px 18px #133C5544;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 20px;
  border-left: 5px solid #F6C453;
  border-top: 1px solid #E7E9EE;
  font-size: 1.1rem;
}
.testimonial-card p, .testimonial-card blockquote, .testimonial-card span {
  color: #133C55;
  font-size: 1.05rem;
  font-weight: 400;
}
.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  border-left: none;
}
.testimonial-card strong {
  color: #133C55;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 7px;
}
.star-rating img {
  width: 18px;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #19283b;
  color: #F5F7FA;
  padding: 20px 20px 20px 30px;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 18px #10131a99;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner p {
  font-size: 1rem;
  flex: 1 1 280px;
  color: #F5F7FA;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #133C55;
  color: #F6C453;
  border: none;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background .17s, color .17s;
  box-shadow: 0 1.5px 8px #133C5528;
}
.cookie-banner button:hover {
  background: #F6C453;
  color: #133C55;
}
.cookie-banner .cookie-settings-btn {
  background: #F6C453;
  color: #133C55;
  margin-left: 8px;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #133C55;
  color: #F6C453;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  z-index: 2100;
  background: rgba(16,19,26,0.79);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #19283b;
  color: #F5F7FA;
  border-radius: 15px;
  max-width: 96vw;
  min-width: 320px;
  width: 400px;
  box-shadow: 0 6px 44px #133C55aa;
  padding: 32px 32px 20px 32px;
  position: relative;
  animation: modalFadeIn .25s;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  margin-bottom: 14px;
  color: #F6C453;
  font-size: 1.35rem;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 18px 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 7px #133C5533;
  background: #111820;
  padding: 13px 18px;
  border-radius: 9px;
  color: #F5F7FA;
}
.cookie-category label {
  flex: 1 1 0;
  font-size: 1rem;
  color: #F5F7FA;
}
.cookie-category input[type=checkbox] {
  accent-color: #F6C453;
  width: 21px; height: 21px;
}
.cookie-modal .category-essential {
  opacity: .7;
  pointer-events: none;
  font-style: italic;
}
.cookie-modal .modal-btns {
  margin-top: 22px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: #F6C453;
  color: #133C55;
  border: none;
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 7px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-modal button:hover {
  background: #133C55;
  color: #F6C453;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 19px;
  top: 20px;
  font-size: 1.4rem;
  color: #F6C453;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2011;
  transition: color .18s;
}
.cookie-modal .modal-close:hover {
  color: #ffdc8a;
}

/* --- CTA BUTTONS --- */
.cta-primary, .cta-secondary {
  display: inline-block;
  text-align: center;
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.0px;
  padding: 12px 32px;
  border-radius: 33px;
  border: none;
  cursor: pointer;
  margin-top: 3px;
  outline: none;
  transition: background .17s, color .17s, box-shadow .18s, border .18s;
  box-shadow: 0 6px 38px -10px #F6C45355, 0 1px 10px #133C552f;
}
.cta-primary {
  background: #F6C453;
  color: #133C55;
  border: 2px solid #F6C453;
}
.cta-primary:hover, .cta-primary:focus {
  background: #133C55;
  color: #F6C453;
  box-shadow: 0 6px 38px -5px #ffe39c88, 0 1px 10px #133C552f;
  border-color: #F6C453;
}
.cta-secondary {
  background: transparent;
  color: #F6C453;
  border: 2px solid #F6C453;
  margin-left: 10px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F6C453;
  color: #133C55;
  border-color: #F6C453;
}

/* --- ICONS --- */
img[alt$="Icon"], .content-wrapper img {
  vertical-align: middle;
  margin-right: 6px;
}

/* --- CONTENT SECTIONS --- */
.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;
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #10131a;
  border-top: 2px solid #1f445e;
  margin-top: 60px;
  padding: 30px 0 0 0;
}
footer .container {
  padding-bottom: 28px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin: 8px 0;
}
footer nav a {
  color: #F6C453;
  font-size: 0.99rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 5px;
  transition: background .18s, color .15s;
}
footer nav a:hover, footer nav a:focus {
  background: #133C55;
  color: #F6C453;
}
footer img {
  height: 38px; width: auto;
}
footer .contact-summary {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.98rem;
}
footer .contact-summary span, footer .contact-summary a {
  color: #F5F7FA;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}
footer .social-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 10px;
}
footer .social-links a {
  background: #133C55;
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  transition: background .17s;
  box-shadow: 0 3px 10px #19283b24;
}
footer .social-links a:hover {
  background: #F6C453;
}
footer .social-links a img {
  filter: brightness(1.3) drop-shadow(0 0 7px #F6C45399);
  width: 20px; height: 20px;
  transition: filter .17s;
}

/* --- FAQ ACCORDION --- */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion-list > div {
  background: #19283b;
  border-radius: 14px;
  box-shadow: 0 2px 14px #133C5540;
  margin-bottom: 9px;
  border-left: 4px solid #F6C453;
  border-top: 1px solid #1f445e;
  transition: box-shadow .22s, background .17s;
}
.faq-accordion-list > div:hover {
  background: #133C55;
  box-shadow: 0 6px 18px #ffe39c44;
}
.faq-accordion-list h3 {
  cursor: pointer;
  font-size: 1.09rem;
  padding: 18px 20px 7px 20px;
  margin-bottom: 0;
  color: #F6C453;
  transition: color .18s;
}
.faq-accordion-list h3:hover { color: #ffe39c; }
.faq-accordion-list div > div {
  padding: 4px 20px 16px 20px;
  color: #F5F7FA;
}

/* --- PROCESS STEPS (SERVICES) --- */
ol {
  padding-left: 27px;
  margin-bottom: 18px;
}
ol li {
  margin-bottom: 10px;
}
ol li img {
  width: 26px;
  margin-right: 7px;
  vertical-align: middle;
}

/* --- UTILITY & RESPONSIVE --- */
@media (max-width: 850px){
  .container { max-width: 96vw; }
  .feature-grid, .case-study-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .content-wrapper { gap: 16px; }
}
@media (max-width: 700px){
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.4rem; }
  .container { max-width: 99vw; padding: 0 7px; }
  section { padding: 25px 0; margin-bottom: 32px; }
  .feature-grid, .card-container, .case-study-list, .content-grid {
    gap: 16px;
  }
  .feature-grid > div, .feature-item, .card, .case-study {
    padding: 17px 12px;
    min-width: 0;
  }
  .faq-accordion-list > div { padding: 0; }
}
@media (max-width: 560px){
  body { font-size: 0.98em; }
  h1 { font-size: 1.1rem; }
  .testimonial-card { padding: 17px 10px; }
  .main-nav img, footer img { height: 28px; }
}
@media (max-width: 900px){
  .text-image-section { flex-direction: column; gap: 18px; }
}
@media (max-width: 740px){
  .testimonial-card { font-size: 0.97rem; }
}

/* --- ANIMATIONS & INTERACTIONS --- */
a, button, .cta-primary, .cta-secondary {
  transition: background .17s, color .17s, box-shadow .17s, border .15s;
}
button:focus, a:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px solid #F6C453;
  outline-offset: 1.5px;
}
.card, .case-study, .feature-grid > div, .feature-item {
  transition: box-shadow .20s, background .22s, border .18s;
}
section, .card, .testimonial-card, .feature-grid > div, .case-study, .cookie-modal, .faq-accordion-list > div {
  will-change: box-shadow, background, color, border;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
  background: #133C55;
}
::-webkit-scrollbar-thumb {
  background: #F6C453;
  border-radius: 6px;
}

/* --- MISC --- */
.mission-statement {
  font-size: 1.11rem;
  color: #F6C453;
  font-style: italic;
  border-left: 3px solid #F6C453;
  padding-left: 14px;
  margin-top: 11px;
}

/* --- END --- */
