/* CSS RESET & BASE ======================================================= */
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,
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 100%;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #131313;
  background: #F8F8F8;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
strong, b { font-weight: 600; }
input, button, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
ul, ol {
  margin-left: 24px;
}

/* TYPOGRAPHY =============================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 600;
  color: #131313;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p { margin-bottom: 16px; color: #222; }
.section p, .content-wrapper p, .text-section p { color: #222; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.08rem; }
}

/* MONOCHROME COLOR THEME ================================================== */
:root {
  --vt-black: #111319;
  --vt-offwhite: #F8F8F8;
  --vt-dark: #181b22;
  --vt-gray1: #2e2e2e;
  --vt-gray2: #46484a;
  --vt-gray3: #d1d1d6;
  --vt-white: #fff;
  --vt-primary: #18385C;
  --vt-secondary: #F7971D;
  --vt-accent: #fff;
  --vt-shadow: 0 4px 16px 0 rgba(24,24,24,.10);
}

body {
  background: var(--vt-offwhite);
  color: var(--vt-black);
}

/* CONTAINER & RESPONSIVE LAYOUTS ========================================== */
.container {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vt-white);
  border-radius: 18px;
  box-shadow: var(--vt-shadow);
}

@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 28px;
    border-radius: 12px;
  }
}

/* HEADER & MAIN NAV ======================================================= */
header {
  background: var(--vt-white);
  box-shadow: 0 2px 18px 0 rgba(8,18,40,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}
header img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  font-size: 1rem;
  padding: 8px 0;
  font-weight: 500;
  position: relative;
}
nav a:after {
  content: '';
  display: block;
  height: 2px;
  border-radius: 6px;
  width: 0;
  background: var(--vt-primary);
  transition: width 0.25s;
  position: absolute;
  left: 0; bottom: -2px;
}
nav a:hover, nav a:focus {
  color: var(--vt-primary);
}
nav a:hover:after, nav a:focus:after {
  width: 100%;
}

.cta-button {
  background: var(--vt-primary);
  color: var(--vt-accent);
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.25s;
  margin-left: 24px;
  box-shadow: 0 2px 8px rgba(24,56,92,0.03);
}
.cta-button:hover, .cta-button:focus {
  background: var(--vt-secondary);
  color: #222;
}

@media (max-width: 1024px) {
  nav {
    gap: 20px;
  }
  .cta-button {
    margin-left: 12px;
    padding: 11px 18px;
    font-size: 1rem;
  }
}

/* BURGER MENU ============================================================ */
.mobile-menu-toggle {
  display: none;
  background: var(--vt-primary);
  color: var(--vt-accent);
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  padding: 6px 12px;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--vt-secondary);
  color: var(--vt-black);
}

@media (max-width: 990px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,16,18,.98);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100vw);
  transition: opacity 0.35s cubic-bezier(.57,.22,.45,.92), transform 0.4s cubic-bezier(.57,.22,.45,.92);
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--vt-accent);
  font-size: 2.25rem;
  align-self: flex-end;
  margin: 18px 26px 0 0;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 2010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--vt-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 44px;
  gap: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--vt-accent);
  font-size: 1.4rem;
  padding: 12px 28px;
  border-radius: 14px;
  background: transparent;
  transition: background 0.19s, color 0.18s;
  text-align: center;
  width: 90vw;
  max-width: 370px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--vt-secondary);
  color: #181b22;
}

@media (max-width: 480px) {
  .mobile-nav a {
    font-size: 1.05rem;
    padding: 10px 12px;
  }
}

/* HERO SECTIONS ========================================================== */
.hero {
  margin-bottom: 48px;
  padding: 60px 0 44px 0;
  background: linear-gradient(120deg, #fff 85%, #f2f2f4 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: var(--vt-shadow);
  display: flex;
  flex-direction: column;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero .content-wrapper {
  gap: 16px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  max-width: 680px;
  background: transparent;
}
.hero h1 {
  color: var(--vt-primary);
  font-size: 2.7rem;
  letter-spacing: 0.01em;
}
.hero p {
  color: #232323;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 18px 0;
    border-radius: 0 0 14px 14px;
    margin-bottom: 18px;
  }
  .hero .content-wrapper {
    max-width: 100%;
    padding: 0;
    gap: 14px;
  }
}

/* FLEXBOX PATTERNS ====================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: var(--vt-white);
  border-radius: 18px;
  box-shadow: var(--vt-shadow);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  min-width: 260px;
  flex: 1 1 312px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .22s, transform .21s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px rgba(24,24,24,.13);
  transform: translateY(-3px) scale(1.015);
}
.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: center;
  gap: 20px;
  padding: 20px 48px 20px 32px;
  background: #F9F9F9;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px -6px rgba(24,24,24,.08);
  color: #212121;
  font-size: 1.08rem;
  max-width: 630px;
  width: 100%;
  border-left: 4px solid var(--vt-primary);
  transition: box-shadow .2s, border-color .18s;
}
.testimonial-card span {
  color: #46484a;
  font-size: 0.93rem;
  font-style: italic;
  align-self: flex-end;
  letter-spacing: 0.011em;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px -6px rgba(24,52,122,.11);
  border-color: var(--vt-secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 28px 20px 24px 22px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(24,24,24,.03);
  margin-bottom: 20px;
  min-width: 272px;
  flex: 1 1 294px;
  transition: box-shadow 0.23s, border-color 0.21s;
  border-left: 3px solid var(--vt-primary);
}
.feature-item img {
  height: 38px;
  width: 38px;
  margin-bottom: 9px;
}
.feature-item h3 {
  color: var(--vt-primary);
  font-size: 1.2rem;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 28px -7px rgba(24,34,92,.08);
  border-color: var(--vt-secondary);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

@media (max-width: 1024px) {
  .feature-grid {
    gap: 18px;
  }
  .card-container, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-item {
    min-width: 0;
    padding: 22px 15px 18px 15px;
    border-radius: 10px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 16px 16px 16px 12px;
    border-radius: 10px;
  }
}

/* GENERAL SECTIONS ======================================================= */
.about-preview, .about, .about-features, .features, .legal, .service-preview, .confirmation, .contact, .contact-cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 16px 0 rgba(24,24,24,.06);
}
@media (max-width: 768px) {
  .about-preview, .about, .about-features, .features, .legal, .service-preview, .confirmation, .contact, .contact-cta {
    padding: 22px 8px;
    border-radius: 12px;
    margin-bottom: 26px;
  }
}

.text-section { margin-bottom: 22px; }
.story-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* CONTACT INFOS ========================================================== */
.contact-info, .contact-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
@media (min-width: 600px) {
  .contact-info {
    flex-direction: row;
    gap: 32px;
  }
  .contact-row {
    flex-direction: row;
    align-items: center;
    gap: 9px;
  }
}
.contact-row img {
  height: 21px;
  width: 21px;
  margin-right: 4px;
  opacity: 0.76;
}

/* BUTTONS & LINKS ========================================================= */
a, button {
  transition: color 0.18s, background 0.18s, border-color 0.18s, box-shadow 0.2s;
}
.button, .cta-button {
  appearance: none;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.16rem;
  cursor: pointer;
  padding: 13px 28px;
  background: var(--vt-primary);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(24,56,92,.06);
  transition: background 0.2s, color 0.17s, box-shadow 0.19s, transform 0.13s;
  outline: none;
}
.button:hover, .cta-button:hover,
.button:focus, .cta-button:focus {
  background: var(--vt-secondary);
  color: #131313;
  box-shadow: 0 6px 24px 0 rgba(24,56,92,.09);
  transform: translateY(-2px) scale(1.035);
}

/* FOOTER ================================================================= */
footer {
  background: var(--vt-primary);
  color: #fff;
  padding-top: 12px;
  padding-bottom: 18px;
  margin-top: 56px;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 6px;
}
.footer-links a {
  color: #fff;
  opacity: 0.87;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--vt-secondary);
  background: rgba(253,207,121,0.08);
}
.footer-info {
  color: #bbc7d9;
  font-size: 0.92rem;
  text-align: center;
  font-family: 'Roboto', Arial, sans-serif;
}

/* COOKIE CONSENT BANNER & MODAL ============================================ */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #16181b;
  color: #fff;
  box-shadow: 0 -2px 14px rgba(8,16,28,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  gap: 36px;
  z-index: 3000;
  font-size: 1rem;
  transition: transform 0.28s cubic-bezier(.56,.08,.41,.98), opacity 0.24s;
  opacity: 1;
  transform: translateY(0);
}
#cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
#cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
#cookie-consent-banner button {
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.14s;
  margin-left: 0;
}
#cookie-consent-banner .accept {
  background: var(--vt-secondary);
  color: #181b22;
}
#cookie-consent-banner .accept:hover { background: #fdbe53; }
#cookie-consent-banner .reject {
  background: #22232c;
  color: #fff;
}
#cookie-consent-banner .reject:hover {
  background: #31344a;
}
#cookie-consent-banner .settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
#cookie-consent-banner .settings:hover {
  background: #232634;
}
@media (max-width: 650px) {
  #cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  #cookie-consent-banner .cookie-buttons {
    gap: 7px;
  }
}

#cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,24,29,.92);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
#cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
#cookie-modal .modal-content {
  background: #fff;
  color: #181b22;
  border-radius: 24px;
  max-width: 420px;
  width: 96vw;
  padding: 34px 22px;
  box-shadow: 0 8px 42px rgba(20,24,42,0.11);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: modalPop .33s cubic-bezier(.48,1.45,.18,.96);
}
@keyframes modalPop {
  from { transform: translateY(30px) scale(0.96); opacity: 0.4; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
#cookie-modal .modal-title {
  font-weight: 600;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  color: var(--vt-primary);
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1rem;
}
#cookie-modal .cookie-category label {
  flex: 1;
}
#cookie-modal .toggle-switch {
  position: relative;
  width: 44px; height: 22px;
  display: inline-block;
}
#cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
#cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  background: #cfd4e1;
  border-radius: 16px;
  top: 0;
  left: 0;
  right: 0; bottom: 0;
  transition: background .14s;
}
#cookie-modal .toggle-switch input:checked + .slider {
  background: var(--vt-primary);
}
#cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 2px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform .18s;
}
#cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(22px);
}
#cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 14px;
  justify-content: flex-end;
}
#cookie-modal .modal-actions button {
  font-size: 1rem;
}
#cookie-modal .close-modal {
  position: absolute;
  right: 19px;
  top: 15px;
  background: none;
  border: none;
  color: #898a99;
  font-size: 1.36rem;
  cursor: pointer;
  z-index: 2;
}
#cookie-modal .close-modal:hover, #cookie-modal .close-modal:focus {
  color: var(--vt-primary);
}

/* FORM & INPUTS (if any added later) ===================================== */
input, textarea {
  border: 1px solid #e4e4e7;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fafafa;
  color: #181b22;
  font-size: 1rem;
  margin-bottom: 14px;
  transition: border-color 0.16s;
}
input:focus, textarea:focus {
  border-color: var(--vt-primary);
}

/* LISTS ================================================================== */
ul, ol {
  margin-bottom: 16px;
  color: #232323;
}
ul li, ol li {
  margin-bottom: 6px;
  letter-spacing: 0.011em;
}

/* MISCELLANEOUS EFFECTS ================================================== */
.section a:not(.cta-button), .content-wrapper a:not(.cta-button) {
  color: var(--vt-primary);
  font-weight: 500;
  border-bottom: 1.5px solid rgba(24,56,92,0.13);
  transition: color 0.14s, border-color 0.12s;
}
.section a:not(.cta-button):hover, .content-wrapper a:not(.cta-button):hover {
  color: var(--vt-secondary);
  border-color: var(--vt-secondary);
}

/* ACCESSIBILITY FOCUS INDICATORS ========================================= */
a:focus, .cta-button:focus, button:focus {
  outline: 2px solid var(--vt-secondary);
  outline-offset: 1px;
}

/* RESPONSIVE DESIGN ====================================================== */
@media (max-width: 990px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }
  .card, .feature-item {
    min-width: 200px;
    flex: 1 1 180px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .content-wrapper, .card-container, .content-grid, .feature-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}

/* UTILITIES & SPACING ==================================================== */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 28px !important; }

/* PREVENT OVERLAPPING for stacked cards/sections ========================= */
.section + .section, .about-preview + .about-preview,
.features + .features, .testimonials + .testimonials,
.footer-links + .footer-info {
  margin-top: 20px;
}

/* CUSTOM SCROLLBARS ====================================================== */
::-webkit-scrollbar {
  width: 10px;
  background: #f6f6f6;
}
::-webkit-scrollbar-thumb {
  background: #d6dae1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #bfc6dc;
}

/* Hide scrollbar for mobile */
@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 0; background: transparent;
  }
}

/* PRINT SUPPORT ========================================================== */
@media print {
  nav, .mobile-menu, .cta-button, #cookie-consent-banner, footer { display: none !important; }
  body, .container { background: #fff !important; color: #222 !important; }
}
