/* --- 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #253A52;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  min-width: 320px;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
a {
  color: #253A52;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #ED8B00;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #253A52;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.04em; }
h2 { font-size: 2rem; margin-bottom: 16px; letter-spacing: -0.03em;  }
h3 { font-size: 1.3rem; margin-bottom: 12px; letter-spacing: 0.01em;  }
h4, h5, h6 { margin-bottom: 10px; }
p { margin-bottom: 16px; max-width: 56em; }
strong { font-weight: bold; }
em { font-style: italic; }

/* --- STRUCTURAL LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(37,58,82,0.07);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 38px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- HEADER + NAVIGATION --- */
header {
  background: #253A52;
  box-shadow: 0 2px 12px rgba(37,58,82,0.03);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  height: 52px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.main-nav a {
  color: #fff;
  padding: 8px 6px 8px 6px;
  border-radius: 6px;
  transition: background .16s, color .22s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #ED8B00;
  color: #fff;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background: #ED8B00;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 100px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 10px rgba(37,58,82,0.09);
  cursor: pointer;
  transition: background .17s, transform .18s, box-shadow .18s;
  min-width: 150px;
  margin-left: 16px;
  text-align: center;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #253A52;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(237,139,0,0.16);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #ED8B00;
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  transition: color .16s;
  margin-left: 12px;
  outline: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #fff;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100dvh;
  background: #253A52;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .37s cubic-bezier(.72,0,.22,1);
  box-shadow: 3px 0 38px 0 rgba(37,58,82,0.24);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  margin: 18px 24px 0 0;
  padding: 2px 12px;
  background: none;
  border: none;
  color: #ED8B00;
  cursor: pointer;
  border-radius: 8px;
  transition: background .14s, color .2s;
  outline: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ED8B00;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 40px;
  margin-left: 32px;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.mobile-nav a {
  color: #fff;
  padding: 10px 0 10px 8px;
  border-radius: 8px;
  min-width: 210px;
  display: inline-block;
  transition: background .17s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ED8B00;
  color: #fff;
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none;
  }
}


/* --- FOOTER --- */
footer {
  background: #E3E3E3;
  color: #253A52;
  margin-top: 60px;
  padding: 44px 0 18px 0;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -2px 18px rgba(37,58,82,0.03);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-logo {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo img {
  height: 38px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #253A52;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #ED8B00;
}
footer p {
  font-size: 0.93rem;
  color: #253A52;
  text-align: center;
  opacity: .8;
}

/* --- MAIN CONTENT TYPOGRAPHY --- */
.section h1, .content-wrapper h1,
.section h2, .content-wrapper h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #253A52;
}
.section h3, .content-wrapper h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #253A52;
}
.section ul, .content-wrapper ul {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
li {
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
}
li img {
  width: 26px;
  height: 26px;
  min-width: 26px;
  margin-right: 6px;
  filter: grayscale(15%);
}

.price, strong {
  color: #ED8B00;
  font-weight: 700;
  font-size: 1.07rem;
  margin-left: 5px;
  letter-spacing: 0.01em;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}


/* --- CARD LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(37,58,82,0.06);
  margin-bottom: 20px;
  padding: 22px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f7f8fa;
  border-radius: 16px;
  box-shadow: 0 1px 9px 0 rgba(37,58,82,0.06);
  padding: 22px 24px;
  margin-bottom: 20px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F5F7;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(37,58,82,0.11);
  margin-bottom: 20px;
  max-width: 680px;
  color: #253A52;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: #253A52;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  quotes: "\201E" "\201D";
  margin: 0 0 10px 0;
}
.testimonial-card p {
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #ED8B00;
  font-size: 1.03rem;
  font-weight: 700;
}
@media (max-width: 576px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px;
  }
}


/* --- BUTTONS & LINK STYLES --- */
button, .cta-btn {
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 6px;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* --- SPACING UTILITIES --- */
.mt-40 { margin-top: 40px; }
.mt-24 { margin-top: 24px; }
.mb-60 { margin-bottom: 60px; }
.mb-32 { margin-bottom: 32px; }
.mb-20 { margin-bottom: 20px; }
.gap-20 { gap: 20px !important; }

/* --- MEDIA QUERIES RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .container { max-width: 970px; }
}
@media (max-width: 992px) {
  .container { max-width: 740px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 768px) {
  .container { max-width: 95vw; padding-left: 10px; padding-right: 10px; }
  .content-wrapper { gap: 15px; }
  .section { padding: 16px 2px; }
  .testimonial-card { max-width: 100%; }
}
@media (max-width: 576px) {
  .container { max-width: 100vw; padding-left: 4px; padding-right: 4px; }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.07rem; }
  .footer-logo img { height: 28px; }
}

/* ------- COOKIE CONSENT BANNER & MODAL ------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #253A52;
  color: #fff;
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 22px 12px 18px 12px;
  box-shadow: 0 -2px 24px 0 rgba(37,58,82,0.16);
  font-size: 1rem;
  animation: banner-slide-in 0.6s cubic-bezier(.7,0,.23,1);
}
@keyframes banner-slide-in {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  color: #fff;
  max-width: 400px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner button {
  background: #ED8B00;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: background .18s, color .16s;
  box-shadow: 0 2px 6px rgba(237,139,0,0.08);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #253A52;
}
.cookie-settings-btn {
  background: none !important;
  color: #ED8B00 !important;
  border: 2px solid #ED8B00 !important;
  transition: background .18s, color .16s, border .22s;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #ED8B00 !important;
  color: #fff !important;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    font-size: 0.95rem;
    padding: 14px 6px 14px 6px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100dvh;
  background: rgba(37,58,82,0.6);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .17s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #253A52;
  padding: 34px 26px 28px 26px;
  border-radius: 18px;
  box-shadow: 0 6px 40px rgba(37,58,82,0.20);
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 4100;
  animation: modal-scale-in 0.4s cubic-bezier(.7,0,.23,1);
}
@keyframes modal-scale-in {
  from { transform: scale(0.92); opacity: .5; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin-left: 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-modal label {
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  width: 26px;
  height: 26px;
  accent-color: #ED8B00;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-modal button {
  padding: 9px 22px;
  background: #ED8B00;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background .18s, color .14s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #253A52;
  color: #fff;
}
.cookie-modal .close-modal-btn {
  background: none;
  color: #253A52;
  border: 2px solid #253A52;
  margin-left: 8px;
  transition: background .13s, color .15s, border .17s;
}
.cookie-modal .close-modal-btn:hover {
  background: #253A52;
  color: #fff;
}

/* ------ GEOMETRIC / STRUCTURED SHAPES AND ACCENTS ------ */
.section, .testimonial-card, .card, .feature-item {
  border-radius: 18px;
  /* Modern geometric corners */
}
.cta-btn, .footer-nav a, .main-nav a, .cookie-banner button {
  /* angular font, uppercase, geometric accent */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-variant: small-caps;
}
hr {
  border: 0;
  border-top: 2px solid #ED8B00;
  margin: 28px 0;
  width: 40px;
  border-radius: 2px;
}

/* --- GEOMETRIC DECORATIVE DETAILS (optional, can be extended) --- */
.section::before {
  content: '';
  display: block;
  width: 48px;
  height: 6px;
  border-radius: 4px;
  background: #ED8B00;
  margin-bottom: 26px;
}

@media (max-width: 768px) {
  .section::before {
    width: 24px;
    height: 4px;
    margin-bottom: 16px;
  }
}
.section:first-of-type::before { display: none; }

/* --- MICROINTERACTIONS & TRANSITIONS --- */
.cta-btn, .card, .testimonial-card, .feature-item, .main-nav a, .footer-nav a {
  transition: box-shadow .20s, background .15s, color .20s, transform .19s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 8px 24px rgba(237,139,0,0.11);
  transform: translateY(-3px) scale(1.01);
}
.section { transition: box-shadow .14s; }
.section:hover {
  box-shadow: 0 8px 36px 0 rgba(37,58,82,0.11);
}

/* --- FOCUS VISIBLE --- */
a:focus-visible, .cta-btn:focus-visible, button:focus-visible {
  outline: 2px solid #ED8B00;
  outline-offset: 2px;
}

/* --- HIDE/SHOW UTILITIES --- */
.hide {
  display: none !important;
}

/* --- ACCESSIBLE Z-INDEX LAYERS --- */
header  { z-index: 99; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 3000; }
.cookie-modal-overlay { z-index: 4000; }

/* --- GENERAL SCROLLBAR (for dark menu, optional) --- */
.mobile-menu, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: #ED8B00 #253A52;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  width: 8px;
}
.mobile-menu::-webkit-scrollbar-thumb, .cookie-modal::-webkit-scrollbar-thumb {
  background: #ED8B00;
}
.mobile-menu::-webkit-scrollbar-track, .cookie-modal::-webkit-scrollbar-track {
  background: #253A52;
}

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