/* =============================
   CSS RESET & BASE NORMALIZATION
   ============================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #181C27;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style-position: inside;
}
a {
  color: #181C27;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #EB222E;
  outline-offset: 2px;
}

/* ============
   BRAND FONTS
   ============ */
@import url('https://fonts.googleapis.com/css?family=Oswald:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  color: #181C27;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
p, ul, ol, address {
  margin-bottom: 16px;
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: #181C27;
}

/* ===============================
   LAYOUT CONTAINERS & FLEX RULES
   =============================== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(24,28,39,0.04);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(24,28,39,0.09);
  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;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F5F7FA;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(24,28,39,.06);
  min-width: 240px;
  color: #181C27;
  margin-bottom: 20px;
  transition: box-shadow .18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px rgba(24,28,39,.11);
}
.testimonial-card span {
  color: #EB222E;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Universal list spacing for minimalist look */
ul, ol {
  padding-left: 0;
  margin-left: 0;
}
ul li, ol li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
ul li img, ol li img {
  width: 26px;
  height: 26px;
}

.statistics-block {
  margin-top: 10px;
  font-weight: bold;
  color: #EB222E;
  font-size: 1.08em;
}

.text-section {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===============================
   HEADER, NAV & CTA BUTTONS
   =============================== */
header {
  background: #fff;
  border-bottom: 1px solid #F5F7FA;
  position: sticky;
  top: 0;
  z-index: 1100;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  color: #181C27;
  padding: 4px 0;
  position: relative;
  transition: color 0.22s;
}
header nav a:hover, header nav a.active {
  color: #EB222E;
}
header nav a.active::after, header nav a:hover::after {
  content: '';
  display: block;
  height: 2px;
  width: 70%;
  background: #EB222E;
  margin: 2px 0 0 0;
  border-radius: 1px;
}
header img[alt="Vibe Ventures"] {
  max-height: 46px;
  width: auto;
  margin-right: 12px;
}
.cta-btn {
  display: inline-block;
  background: #EB222E;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: .5px;
  padding: 14px 34px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(235,34,46,0.05);
  text-transform: uppercase;
  transition: background .20s, box-shadow .18s, transform .15s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #181C27;
  color: #fff;
  box-shadow: 0 6px 20px rgba(24,28,39,0.12);
  transform: translateY(-2px) scale(1.02);
  outline: none;
}

/* ===============
   MOBILE MENU
   =============== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #181C27;
  margin-left: 20px;
  cursor: pointer;
  transition: color .15s;
  z-index: 1202;
}
.mobile-menu-toggle:focus {
  color: #EB222E;
  outline: 2px solid #EB222E;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 1200;
  box-shadow: 0 8px 40px rgba(24,28,39,0.13);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.77,.03,.34,1.01);
  padding: 32px 28px 28px 28px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: #181C27;
  margin-bottom: 26px;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #EB222E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.4px;
  color: #181C27;
  padding: 10px 0 10px 2px;
  border-radius: 4px;
  transition: background .16s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5F7FA;
  color: #EB222E;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* =========================
   MAIN & SECTION STYLING
   ========================= */
main {
  padding: 0 0 60px 0;
  background: #fff;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
}

/* ================
   FOOTER STYLES
   ================ */
footer {
  background: #fff;
  border-top: 1px solid #F5F7FA;
  padding: 40px 0 24px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
footer nav a {
  color: #181C27;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.75;
  transition: opacity .17s, color .15s;
}
footer nav a:hover {
  color: #EB222E;
  opacity: 1;
}
footer address {
  font-style: normal;
  color: #181C27;
  font-size: 0.98rem;
  opacity: 0.82;
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.5;
}
footer address img {
  width: 19px;
  height: 19px;
  margin-right: 6px;
  vertical-align: middle;
  display: inline-block;
}

/* ========================
   INTERACTIVE ELEMENTS
   ======================== */
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .14s;
}
button:focus {
  outline: 2px solid #EB222E;
}

/* ===============
   MICRO-INTERACTIONS
   =============== */
a, .cta-btn, button, .mobile-menu-close {
  transition: color 0.23s, background 0.23s, box-shadow 0.20s, transform 0.18s;
}
section, .card, .testimonial-card, .cta-btn {
  transition: box-shadow 0.2s, background 0.22s;
}

/* ===============
   RESPONSIVE DESIGN
   =============== */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  section {
    padding: 30px 8px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .content-wrapper {
    gap: 18px;
  }
  .content-grid, .card-container {
    flex-direction: column !important;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .testimonial-card {
    min-width: 0;
    font-size: 0.96rem;
    gap: 14px;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 4vw;
  }
  header .container {
    min-height: 62px;
    padding: 0 10px;
  }
  .cta-btn {
    padding: 11px 20px;
    font-size: 1rem;
  }
  footer {
    padding: 26px 0 10px 0;
    font-size: 0.98rem;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.03rem;
  }
  section {
    padding: 16px 1vw;
    margin-bottom: 18px;
  }
}

/* ==============================
   COOKIE BANNER & COOKIE MODAL
   ============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #181C27;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 22px 18px 22px 18px;
  z-index: 1300;
  box-shadow: 0 0 25px rgba(24,28,39,0.17);
  transition: transform .30s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner-message {
  flex: 1 1 400px;
  max-width: 650px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  padding: 10px 24px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(235,34,46,0.04);
}
.cookie-btn.accept {
  background: #EB222E;
  color: #fff;
}
.cookie-btn.reject {
  background: #F5F7FA;
  color: #181C27;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #EB222E;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 3px 12px rgba(24,28,39,.14);
  background: #181C27;
  color: #fff;
  outline: none;
}
.cookie-btn.accept:hover {
  background: #181C27;
  color: #fff;
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 28, 39, 0.43);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .28s;
}
.cookie-modal {
  background: #fff;
  color: #181C27;
  width: 98vw;
  max-width: 425px;
  border-radius: 18px;
  box-shadow: 0 12px 38px rgba(24,28,39,0.19);
  padding: 32px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popIn .29s;
}
.cookie-modal-close {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 1.55rem;
  background: none;
  border: none;
  color: #181C27;
  cursor: pointer;
}
.cookie-modal h2 {
  color: #181C27;
  font-size: 1.25rem;
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  display: inline-block;
}
.cookie-category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F5F7FA;
  border-radius: 16px;
  transition: background .19s;
}
.cookie-category-toggle input:checked + .cookie-toggle-slider {
  background: #EB222E;
}
.cookie-toggle-slider:before {
  content: '';
  position: absolute;
  left: 5px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: .21s;
  box-shadow: 0 1px 4px rgba(24,28,39,0.13);
}
.cookie-category-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(18px);
}
.cookie-category-label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #181C27;
  flex: 1 1 auto;
}
.cookie-category-essential {
  opacity: .45;
  font-style: italic;
}

@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes popIn {
  0% { transform: scale(0.98) translateY(18px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* ================
  MISC UTILITIES
   ================ */
.mt-0 {margin-top: 0!important;}  .mb-0 {margin-bottom:0!important;}
.mt-1 {margin-top: 8px;}           .mb-1 {margin-bottom:8px;}
.mt-2 {margin-top: 16px;}          .mb-2 {margin-bottom:16px;}
.mt-3 {margin-top: 24px;}          .mb-3 {margin-bottom:24px;}
.mt-4 {margin-top: 32px;}          .mb-4 {margin-bottom:32px;}

/* =====================
   OVERRIDES/MINIMALISM
   ===================== */
hr {
  border: none;
  border-top: 1.5px solid #F5F7FA;
  margin: 24px 0;
}
blockquote {
  margin: 0 0 16px 0;
  padding-left: 19px;
  border-left: 3.6px solid #EB222E;
  color: #181C27;
  font-style: italic;
  opacity: .93;
}

/* ============================
   ACCESSIBILITY + WHITE SPACE
   ============================ */
:focus {
  outline-color: #EB222E;
}
::-webkit-input-placeholder { color: #A1A6B1; }
::-moz-placeholder { color: #A1A6B1; }
:-ms-input-placeholder { color: #A1A6B1; }
::placeholder { color: #A1A6B1; }

/* ================
   ENSURE NO GRID
   ================ */
/* (No grid, columns, break-inside, or absolute content positioning used in this stylesheet) */
