/* === CSS RESET & BASE STYLES === */
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #1B2A3B;
  color: #F3F6F9;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
strong {
  font-weight: 700;
}

/* === SCROLLBAR STYLING FOR DARK MODE === */
body::-webkit-scrollbar { width: 10px; background: #121923; }
body::-webkit-scrollbar-thumb { background: #2773AF; border-radius: 12px; }

/* === BRAND & TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F3F6F9;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.13; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.5rem; line-height: 1.3; }
h4, h5, h6 { font-size: 1.125rem; }
p, li, blockquote { font-size: 1rem; line-height: 1.8; color: #dde4ea; margin-bottom: 16px; }

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.125rem; }
  p, li, blockquote { font-size: 0.96rem; }
}

/* === LAYOUT CONTAINERS === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 6vw;
    margin-bottom: 32px;
  }
}

/* === HEADER, NAVIGATION, CTA === */
header {
  background: #19212b;
  border-bottom: 2px solid #2b415c;
  box-shadow: 0 2px 10px 0 #10151b1a;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  position: relative;
}
header img {
  height: 40px;
  width: auto;
  margin-right: 8px;
  /* SVG logo color can be replaced to metallic via SVG */
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 2px;
  color: #D2D7DA;
  position: relative;
  font-weight: 500;
  transition: color .18s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #2773AF;
  transition: width .2s;
  margin-top: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #2773AF;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.cta-btn {
  background: #2773AF;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  box-shadow: 0 2px 8px 0 #0005;
  font-weight: 700;
  cursor: pointer;
  transition: background .22s, color .18s, box-shadow .18s, transform .14s;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #145187;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 #2773AF99;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #F3F6F9;
  border: none;
  cursor: pointer;
  z-index: 200;
  margin-left: 12px;
  transition: color .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #2773AF;
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #1B2A3B;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.77,0,.18,1);
  box-shadow: 2px 0 16px #13213744;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 36px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #F3F6F9;
  font-size: 2rem;
  border: none;
  margin: 10px 32px 16px 0;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #2773AF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #F3F6F9;
  padding: 12px 0;
  letter-spacing: 1.1px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  border-bottom: 1px solid #283b4a;
  width: 100%;
  transition: color .18s, background .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #2773AF;
  background: #162131;
}

/* === HERO SECTION === */
.hero-section {
  background: linear-gradient(120deg, #182537 80%, #2773AF 100%);
  box-shadow: 0 4px 32px 0 #25304255 inset;
  padding: 64px 0 56px 0;
  margin-bottom: 60px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 340px;
}
.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #F3F6F9;
}
.hero-section p {
  font-size: 1.20rem;
  margin-bottom: 32px;
  color: #dde4ea;
  max-width: 600px;
}
@media (max-width: 768px) {
  .hero-section {padding: 38px 0 32px 0;}
  .hero-section .container { min-height: 220px; }
  .hero-section h1 { font-size: 1.45rem; }
  .hero-section p { font-size: 1rem; }
}

/* === FLEX BOX LAYOUTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232f3c;
  border: 1.5px solid #283b4a;
  box-shadow: 0 2px 8px 0 #13213711, 0 1.5px 0 #444b54 inset;
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  position: relative;
  transition: transform .15s, box-shadow .18s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px 0 #2773af22;
  transform: translateY(-3px) scale(1.02);
}
.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) {
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 250px;
  flex: 1 1 0px;
  background: #212a33;
  border-radius: 10px;
  border: 1.5px solid #223249;
  box-shadow: 0 2px 16px #222c3566 inset;
  padding: 24px 20px 22px 20px;
  transition: box-shadow .15s;
}
.feature-item img {
  width: 36px;
  height: 36px;
  filter: grayscale(0) contrast(1.35) brightness(1.15);
}
.feature-item h3 {
  color: #F3F6F9;
  margin-bottom: 6px;
}
.feature-item p {
  color: #b8c5d4;
  font-size: 1rem;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 4px 24px #2773AF33;
}
@media (max-width: 768px) {
  .feature-grid { flex-direction: column; gap: 18px; }
  .feature-item { min-width: 0; }
}

/* === SERVICE & LIST STYLES === */
.service-list, .service-detailed-list {
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.service-list li, .service-detailed-list li {
  background: #1B2636;
  border-left: 4px solid #2773AF;
  padding: 18px 20px 16px 18px;
  border-radius: 6px;
  color: #dde4ea;
  box-shadow: 0 2px 8px 0 #1b2a3b24;
}
.service-list h3, .service-detailed-list h3 {
  margin-bottom: 4px;
}
.service-list strong, .service-detailed-list strong {
  color: #2773AF;
  font-weight: bold;
}
ol.step-by-step-timeline {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0 32px 0;
}
ol.step-by-step-timeline li {
  position: relative;
  background: #232f3c;
  border-left: 4px solid #2773AF;
  padding: 18px 20px 16px 38px;
  color: #dde4ea;
  border-radius: 6px;
  box-shadow: 0 2px 8px 0 #25314217;
}
ol.step-by-step-timeline li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 8px;
  top: 20px;
  background: #2773AF;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 1px 4px #1b2a3bb5;
}
@media (max-width: 650px) {
ol.step-by-step-timeline li { padding: 16px 12px 16px 42px; font-size: 0.98rem; }
}

/* === PRICING TABLE === */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #1B2636;
  box-shadow: 0 2px 14px 0 #12192323;
  border-radius: 8px;
  overflow: hidden;
  margin: 30px 0 30px 0;
}
.pricing-table th, .pricing-table td {
  padding: 16px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table thead th {
  background: #19212b;
  color: #2773AF;
  letter-spacing: 1.2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid #223249;
}
.pricing-table tbody tr:nth-child(odd) {
  background: #232f3c;
}
.pricing-table tbody tr:nth-child(even) {
  background: #1B2636;
}
.pricing-table td {
  color: #F3F6F9;
}
@media (max-width: 650px) {
  .pricing-table, .pricing-table th, .pricing-table td {
    font-size: 0.97rem;
    padding: 12px 8px;
  }
}

/* === TESTIMONIALS & REVIEWS === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F6F9;
  color: #1B2A3B;
  border-radius: 8px;
  margin-bottom: 24px;
  border-left: 4px solid #2773AF;
  box-shadow: 0 4px 24px 0 #283b4a25;
}
.testimonial-card blockquote {
  color: #223249;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  line-height: 1.8;
  margin: 0 18px 0 0;
  border-left: 4px solid #2773AF;
  padding-left: 14px;
}
.testimonial-card p {
  color: #145187;
  margin-bottom: 0;
  font-size: 0.99rem;
  font-weight: bold;
}
@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; gap: 12px; padding: 14px; font-size: 0.97rem; }
  .testimonial-card blockquote { padding-left: 9px; font-size: 0.97rem; }
}
.review-summary {
  background: #232f3c;
  color: #FFCC2B;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 0 10px 0;
  border-radius: 8px;
  margin-bottom: 0;
  font-size: 1.18rem;
  text-align: center;
  letter-spacing: 0.6px;
  box-shadow: 0 2px 9px #12213b22;
}

/* === CONTACT INFO ==== */
.contact-info-block {
  background: #232f3c;
  color: #b8c5d4;
  padding: 20px 22px;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px #14202e17;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}
.contact-info-block img {
  width: 20px;
  height: 20px;
  margin-right: 11px;
  vertical-align: middle;
  display: inline;
  filter: grayscale(1) brightness(1.3) contrast(1.05); /* metallic touch */
}
.contact-info-block p {
  color: #b8c5d4;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

/* === FOOTER === */
footer {
  background: #19212b;
  border-top: 2px solid #2b415c;
  box-shadow: 0 -2px 10px 0 #23313a16;
  margin-top: 60px;
  padding: 32px 0 24px 0;
  color: #a2b5c9;
  font-size: 0.96rem;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-menu a {
  color: #F3F6F9;
  text-decoration: underline dotted #2773af22;
  transition: color .18s, text-decoration .2s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #2773AF;
  text-decoration: underline solid #2773AF;
}
footer p {
  color: #8fa9b7;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .footer-menu { flex-direction: column; gap: 10px; }
  footer { text-align: center; }
}

/* === GENERIC BUTTONS & FORM === */
button, .cta-btn, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  transition: background .18s, color .14s, box-shadow .18s;
  outline: none;
}
button:focus, .cta-btn:focus, input[type="submit"]:focus {
  outline: 2px solid #2773AF;
  outline-offset: 1px;
}
a.cta-btn:active {
  background: #145187;
  transform: scale(0.98);
  box-shadow: 0 1px 6px #2773AF44;
}

/* === TEXT SECTION === */
.text-section {
  background: #232f3c;
  padding: 24px 22px;
  border-radius: 10px;
  box-shadow: 0 2px 10px #1b263620;
  margin-bottom: 26px;
}
.text-section ul, .text-section ol {
  margin: 18px 0 18px 22px;
  list-style: disc inside;
}
.text-section li {
  font-size: 1rem;
  color: #dde4ea;
  margin-bottom: 10px;
  line-height: 1.7;
}
.text-section h3 {
  margin: 24px 0 8px 0;
  color: #2773AF;
}

/* === CARD COMPONENTS (EXTRA) === */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* === SPACING UTILITIES === */
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 900px) {
  .container { max-width: 96vw; }
  .feature-grid { gap: 20px; }
}
@media (max-width: 570px) {
  .container {
    padding: 0 6vw;
  }
}

/* === COOKIE CONSENT BANNER === */
#cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #232f3c;
  color: #F3F6F9;
  box-shadow: 0 -4px 20px #121d2c44;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 10vw 22px 6vw;
  font-size: 1rem;
  animation: fadeInCookieBanner .5s cubic-bezier(.7,0,.31,1);
}
@keyframes fadeInCookieBanner {
  from { transform: translateY(116%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
#cookie-consent-banner.hide {
  display: none !important;
}
.cookie-btn {
  background: #2773AF;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .9px;
  padding: 10px 18px;
  border-radius: 5px;
  margin-left: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px #2773af26;
  transition: background .18s, color .15s, box-shadow .2s, transform .1s;
}
.cookie-btn.settings { background: #323d46; color: #F3F6F9; }
.cookie-btn.reject {
  background: #565f6a;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #145187;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* === COOKIE MODAL === */
#cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.58);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal .28s cubic-bezier(.7,0,.31,1);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
#cookie-modal {
  background: #19212b;
  border-radius: 15px;
  max-width: 400px;
  width: 92vw;
  padding: 34px 24px 24px 24px;
  box-shadow: 0 6px 60px #24306544, 0 1.5px 0 #2773af44 inset;
  color: #F3F6F9;
  font-size: 1rem;
  z-index: 3550;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: driftUpCookieModal .48s cubic-bezier(.75,-0.01,.51,1.06);
  position: relative;
}
@keyframes driftUpCookieModal {
  from { transform: translateY(90px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
#cookie-modal h2 {
  color: #2773AF;
  font-size: 1.23rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  font-weight: 800;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  background: #232f3c;
  color: #F3F6F9;
  border-radius: 8px;
  padding: 13px 16px 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-left: 4px solid #2773AF;
  box-shadow: 0 2px 10px #25304224;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #2773AF;
  width: 20px; height: 20px;
}
.category-essential {
  opacity: 0.7;
  pointer-events: none;
}
#cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
#cookie-modal-close {
  position: absolute;
  top: 10px; right: 16px;
  background: none;
  border: none;
  color: #F3F6F9;
  font-size: 1.72rem;
  cursor: pointer;
  transition: color .16s;
  padding: 0;
}
#cookie-modal-close:hover, #cookie-modal-close:focus {
  color: #2773AF;
}

/* === ANIMATIONS FOR INTERACTIVE ELEMENTS === */
.cta-btn, .feature-item, .card, .mobile-nav a, .service-list li, .testimonial-card, .cookie-btn {
  transition: 
    background .18s, 
    color .16s, 
    box-shadow .16s, 
    transform .14s;
}

/* === ACCESSIBILITY FOCUS RINGS === */
:focus {
  outline: 2px solid #2773AF;
  outline-offset: 2px;
}

/* SPECIAL: Ensuring NO elements overlap (enforced with margin-bottom and gap settings above) */

/* === END OF STYLE.CSS === */
