/* RESET & NORMALIZATION */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #141B23;
  color: #E8EEF3;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #F0A91D;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.72,.01,.45,.82);
}
a:hover, a:focus {
  color: #fff;
  text-shadow: 0 0 2px #F0A91D, 0 0 10px #F0A91D60;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
  color: #E8EEF3;
  font-size: 16px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2rem; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 14px; }
h3 { font-size: 1.18rem; margin-bottom: 12px; }

@media (min-width: 600px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.33rem; }
}

p, .small-note {
  font-size: 16px;
  color: #E8EEF3;
  margin-bottom: 16px;
  line-height: 1.7;
}
.small-note { font-size: 14px; color: #9DB1C6; }
strong {
  color: #F0A91D;
  font-weight: 700;
}
em {
  color: #9DB1C6;
  font-style: normal;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 16px 0;
  background: rgba(25, 50, 76, 0.97);
  box-shadow: 0 2px 10px #0a142020;
  border-radius: 10px;
  overflow: hidden;
  color: #E8EEF3;
}
th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #263E59;
  font-size: 16px;
}
th { background: #19324C; color: #F0A91D; font-weight: 700; }
tr:last-child td { border-bottom: none; }

/* GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #18283D;
  border-radius: 22px;
  box-shadow: 0 6px 26px #11192530;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #132237;
  border-radius: 18px;
  box-shadow: 0 4px 24px #0b293e25;
  transition: box-shadow 0.23s;
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 275px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #22334AA6;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px #07556e70, 0 0 0 2px #F0A91D88;
  z-index: 2;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 32px;
}

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

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #E8EEF3;
  color: #151B22;
  border-left: 6px solid #F0A91D;
  box-shadow: 0 2px 24px #15233214;
  padding: 20px 24px 20px 32px;
  border-radius: 14px;
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 480px;
  font-size: 17px;
  transition: transform 0.16s;
}
.testimonial-card strong {
  color: #19324C;
}
.testimonial-card p {
  color: #222E38 !important;
  margin-bottom: 8px;
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px #F0A91D33;
}

.client-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  list-style: none;
  margin-bottom: 8px;
}
.client-list li {
  font-weight: 600;
  color: #F0A91D;
  background: #19324C;
  padding: 6px 18px;
  border-radius: 18px;
  font-size: 16px;
  margin-bottom: 8px;
  border: 1px solid #26354C;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #19324C;
  box-shadow: 0 4px 22px #0A142024;
  position: sticky;
  z-index: 20;
  top: 0;
}
.logo-area { display: flex; align-items: center; }
.logo-area img {
  height: 44px;
  width: auto;
  margin: 8px 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
  padding-bottom: 4px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  color: #E8EEF3;
  font-size: 16px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 7px 11px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s, box-shadow 0.18s;
}
nav a:hover, nav a:focus {
  background: #222E38;
  color: #F0A91D;
}
nav a.cta, .cta {
  background: linear-gradient(89deg,#F0A91D 0%,#EDB931 100%);
  color: #18283D !important;
  border: none;
  font-weight: bold;
  border-radius: 18px;
  padding: 10px 26px;
  margin-left: 14px;
  box-shadow: 0 2px 10px #F0A91D19;
  transition: box-shadow 0.18s, background 0.17s, color 0.17s;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
nav a.cta:hover, .cta:hover, nav a.cta:focus, .cta:focus {
  background: linear-gradient(92deg,#FFD765 0%,#F0A91D 100%);
  color: #151B22 !important;
  box-shadow: 0 4px 20px #F0A91D55;
}
.mini-cta {
  background: #19324C;
  color: #F0A91D !important;
  border: 1.5px solid #F0A91D;
  padding: 8px 20px;
  border-radius: 14px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 15px;
  margin-top: 18px;
  transition: background 0.18s, color 0.13s;
}
.mini-cta:hover, .mini-cta:focus {
  background: #F0A91D;
  color: #18283D !important;
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F0A91D;
  font-size: 2.1rem;
  margin-left: 12px;
  cursor: pointer;
  z-index: 100;
  transition: color 0.18s;
  padding: 4px 10px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F0A91D;
}

@media (max-width: 1010px) {
  nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #131E29CC;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.83,.03,.31,1.03);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F0A91D;
  font-size: 2rem;
  align-self: flex-end;
  margin: 18px 20px 12px 0;
  cursor: pointer;
  z-index: 220;
  transition: color 0.13s;
  border-radius: 8px;
  padding: 2px 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: #F0A91D33;
  outline: 0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 32px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #F0A91D;
  font-size: 19px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 10px 6px 10px 0;
  border-radius: 12px;
  font-weight: 600;
  transition: color 0.17s, background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F0A91D18;
  color: #fff;
}

/* --- HERO (INDEX) --- */
main > section:first-child {
  background: linear-gradient(94deg, #19324C 80%, #F0A91D 165%);
  box-shadow: 0 8px 42px #151B2250;
  margin-bottom: 60px;
  border-radius: 30px;
}
main > section:first-child h1 {
  color: #F0A91D;
  text-shadow: 0 2px 15px #FFD7655a;
  font-size: 2.3rem;
  margin-bottom: 16px;
}
main > section:first-child p {
  font-size: 18px;
  color: #E8EEF3;
  margin-bottom: 22px;
  max-width: 540px;
}

/* --- CARDS, ICONS, FEATURES --- */
ul li img, .feature-item img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  vertical-align: middle;
  filter: drop-shadow(0 0 6px #F0A91D77);
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #19324C;
  border-radius: 34px 34px 0 0;
  margin-top: 80px;
  box-shadow: 0 -8px 36px #0A142022;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav a {
  color: #E8EEF3;
  font-size: 15px;
  background: none;
  border-radius: 8px;
  padding: 7px 11px;
  transition: color 0.18s, background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #222E38;
  color: #F0A91D;
}
.social-icons {
  display: flex;
  gap: 16px;
  margin: 10px 0 4px 0;
}
.social-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(1.05) drop-shadow(0 2px 7px #F0A91D77);
  transition: filter 0.19s;
  cursor: pointer;
}
.social-icons img:hover {
  filter: brightness(1.2) drop-shadow(0 4px 18px #F0A91D);
}
.mini-logo img {
  height: 30px; width: auto;
  opacity: 0.98;
  margin: 8px 0 0 0;
}
.legal-info {
  font-size: 13px;
  color: #C5D1DC;
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container { max-width: 96vw; }
  .footer-nav { gap: 12px; font-size: 14px; }
  .card-container, .content-grid { gap: 14px; }
}
@media (max-width: 650px) {
  .section { padding: 30px 5px; margin-bottom: 34px; }
  .footer-nav { flex-direction: column; gap: 4px; align-items: center; }
}
@media (max-width: 480px) {
  header .container { padding: 0 5px; }
  .logo-area img { height: 38px; }
  .mini-logo img { height: 24px; }
}

.card, .testimonial-card, .section, .mini-cta, nav a.cta, .cta {
  transition: box-shadow 0.22s, transform 0.17s, background 0.18s, color 0.15s;
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 24px;
  z-index: 9999;
  background: #222E38ff;
  border-radius: 22px;
  box-shadow: 0 8px 32px #F0A91D22, 0 0 0 2px #F0A91D11;
  padding: 24px 36px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: translateY(44px);
  pointer-events: none;
  transition: opacity 0.33s cubic-bezier(.81,.01,.61,.98), transform 0.43s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 7px;
}
.cookie-btn {
  background: #F0A91D;
  color: #19324C;
  border: none;
  border-radius: 14px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 9px 20px;
  cursor: pointer;
  box-shadow: 0 2px 7px #F0A91D44;
  transition: background 0.18s, color 0.14s;
}
.cookie-btn.reject {
  background: #E8EEF3;
  color: #19324C;
  border: 1px solid #F0A91D;
}
.cookie-btn.settings {
  background: none;
  color: #F0A91D;
  border: 1.5px solid #F0A91D;
  box-shadow: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFD765;
  color: #151B22;
}
.cookie-btn.reject:hover {
  color: #F0A91D;
  background: #fff;
}
.cookie-btn.settings:hover {
  background: #19324C33;
}
@media (max-width: 600px) {
  .cookie-banner { padding: 15px 7px 15px 10px; font-size: 14px; left: 3px; right: 3px; }
  .cookie-btn { padding: 8px 10px; font-size: 14px; }
}

/* ---- COOKIE MODAL ---- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #19324CBB;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s cubic-bezier(.71,.05,.64,.99);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #E8EEF3;
  color: #1E2630;
  padding: 32px 26px;
  border-radius: 24px;
  max-width: 90vw;
  width: 350px;
  box-shadow: 0 14px 65px #151B2244, 0 0 0 3px #F0A91D11;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  font-size: 16px;
}
.cookie-modal-content h3 {
  margin-top: 0;
  font-size: 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F0A91D;
  margin-bottom: 8px;
}
.cookie-toggle-list {
  margin-top: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-toggle label {
  font-size: 15px;
  color: #19324C;
  font-weight: 500;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 1px; left: 0; right: 0; bottom: 1px;
  background: #C5D1DC;
  border-radius: 22px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #F0A91D;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s, background 0.16s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(22px);
  background: #19324C;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal-content .cookie-btn {
  font-size: 15px;
  padding: 8px 14px;
}

/* --- MOBILE - STACKING & ADJUSTMENTS --- */
@media (max-width: 900px) {
  .content-grid, .card-container { flex-direction: column; gap: 30px; }
}
@media (max-width: 900px) {
  .section, main > section:first-child { margin-bottom: 32px; }
  .container { padding-left: 4vw; padding-right: 4vw; }
}

@media (max-width: 650px) {
  .card { min-width: 100vw; width: 100%; padding: 20px 8px; font-size: 15px; }
  .section { padding: 18px 2px; border-radius: 16px; }
}

@media (max-width: 450px) {
  .testimonial-card { min-width: 0; padding: 15px 6px 15px 12px; font-size: 15px; }
}

/* --- FOCUS VISIBLE OUTLINES (A11Y) --- */
a:focus-visible, button:focus-visible, .mini-cta:focus, .cta:focus, .cookie-btn:focus {
  outline: 2px solid #F0A91D;
  outline-offset: 2px;
  box-shadow: 0 0 7px #F0A91D99;
  z-index: 4;
}

/* --- SCROLLBAR & HIGHLIGHTS --- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: #26354C; border-radius: 6px; }
::-webkit-scrollbar-track { background: #141B23; }
::selection { background: #F0A91D88; color: #19324C; }

/* --- FORMS --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  border-radius: 8px;
  background: #232F3D;
  color: #E8EEF3;
  border: 1px solid #37495C;
  padding: 10px 14px;
  transition: border 0.13s, background 0.18s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid #F0A91D;
  background: #232F3D;
}

button, input[type=submit] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* -------------------- END -------------------- */