/* ===================
   CSS RESET & BASELINE
   =================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Roboto', Georgia, serif;
  background: #F9F7F1;
  color: #1A2537;
  line-height: 1.7;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1.2em;
}
a {
  color: #1A2537;
  text-decoration: none;
  transition: color 0.2s;
}
a:active, a:visited {
  color: #1A2537;
}

/* ========================
   TYPOGRAPHY & HEADINGS
   ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  color: #1A2537;
  margin-bottom: 0.5em;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: #232C3B;
}
.subheadline {
  font-family: 'Roboto', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #5a6473;
  margin-bottom: 30px;
}
strong {
  font-weight: 700;
}

/* ===============
   CONTAINER
   =============== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 720px;
  margin: 0 auto;
  align-items: flex-start;
}

/* ===============
   HEADER & NAV
   =============== */
header {
  background: #fff;
  box-shadow: 0 6px 20px rgba(26, 37, 55, 0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  color: #1A2537;
  padding: 8px 6px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #A5C46222;
  color: #A5C462;
  outline: none;
}
.cta.primary {
  background: #A5C462;
  color: #1A2537;
  border-radius: 32px;
  padding: 10px 32px;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-left: 24px;
  box-shadow: 0 2px 12px rgba(165, 196, 98, 0.09);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  outline: none;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #91ac4f;
  color: #fff;
  box-shadow: 0 6px 18px rgba(165, 196, 98, 0.18);
}
.cta.secondary {
  background: #fff;
  color: #1A2537;
  border: 2px solid #A5C462;
  border-radius: 32px;
  padding: 10px 32px;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 18px;
  margin-bottom: 10px;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-shadow: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  outline: none;
  display: inline-block;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #A5C462;
  color: #fff;
  border: 2px solid #A5C462;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #1A2537;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 26px;
  padding: 6px 10px;
  border-radius: 5px;
  display: none;
  line-height: 1;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #A5C46233;
  color: #A5C462;
}

/* ===============
   MOBILE MENU
   =============== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F9F7F1ee;
  z-index: 1000;
  transform: translateX(-100vw);
  transition: transform 0.40s cubic-bezier(0.5, 0, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1A2537;
  padding: 28px 20px 18px 20px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.22s;
  z-index: 30;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A5C462;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.25rem;
  padding: 18px 12px;
  color: #1A2537;
  border-bottom: 1px solid #ece9dd;
  width: 100%;
  transition: background 0.2s, color 0.2s;
  border-radius: 6px;
  margin-bottom: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A5C46222;
  color: #A5C462;
}

/* ===============
   SECTION & SPACING
   =============== */
section {
  width: 100%;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
main > section:not(:last-child) {
  margin-bottom: 60px;
}
main {
  margin-top: 18px;
}

/* ===============
   LISTS, CARDS
   =============== */
.features-list, .strategy-list, .team-list, .timeline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 8px;
}
.features-list li, .strategy-list li, .team-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(26,37,55,0.06);
  padding: 24px 22px 22px 22px;
  flex: 1 1 265px;
  min-width: 250px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.24s;
  position: relative;
}
.features-list li:hover, .strategy-list li:hover, .team-list li:hover {
  box-shadow: 0 6px 24px rgba(26,37,55,0.13);
  transform: translateY(-3px) scale(1.022);
}
.features-list img, .strategy-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}
.strategy-list li {
  border-left: 4px solid #A5C46244;
}
.timeline {
  flex-direction: column;
  gap: 15px;
}
.timeline li {
  background: #fff;
  border-left: 4px solid #A5C462;
  padding: 14px 18px 14px 24px;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* =====================
   INVESTOR/INTERVIEW CARD GRIDS
   ===================== */
.investor-grid, .blog-list, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.investor-profile,
.blog-preview,
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(26,37,55,0.08);
  padding: 26px 20px 20px 26px;
  min-width: 240px;
  flex: 1 1 265px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.22s;
  position: relative;
}
.investor-profile:hover,
.blog-preview:hover,
.testimonial-card:hover {
  box-shadow: 0 8px 25px rgba(26,37,55,0.15);
  transform: translateY(-2px) scale(1.019);
}

/* =================
   TESTIMONIALS
   ================= */
.testimonial-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  align-items: flex-start;
  background: #F9F7F1;
  border: 1.5px solid #ece9dd;
  color: #1a2537;
  min-width: 240px;
  max-width: 340px;
  position: relative;
  margin-bottom: 20px;
  padding: 28px 22px 22px 26px;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(26,37,55,0.09);
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #232C3B;
  font-style: italic;
}
.testimonial-meta {
  margin-top: 14px;
  font-size: 0.96rem;
  color: #72787b;
}
.stars {
  color: #A5C462;
  font-size: 1.11em;
  margin-left: 8px;
}
/* Ensures testimonial text and meta are always readable */
.testimonial-card,
.testimonial-card p,
.testimonial-meta {
  color: #1A2537;
}

/* ================
   BLOG PREVIEW
   ================ */
.blog-list {
  margin-bottom: 18px;
}
.blog-preview {
  flex: 1 1 270px;
  border-left: 4px solid #A5C46222;
  box-shadow: 0 2px 12px rgba(165, 196, 98, 0.07);
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-preview h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.read-more {
  color: #A5C462;
  font-weight: bold;
  font-family: 'Montserrat', serif;
  display: inline-block;
  font-size: 1.03rem;
  margin-top: 8px;
  transition: color 0.18s;
}
.read-more:hover, .read-more:focus {
  color: #1A2537;
  text-decoration: underline;
}

.categories {
  background: #F9F7F1;
  border-radius: 10px;
  padding: 18px 18px 8px 18px;
  margin-top: 10px;
  max-width: 400px;
}
.categories h3 {
  margin-top: 10px;
  margin-bottom: 5px;
}
.categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-left: 0;
}
.categories li {
  font-size: 0.98rem;
  background: #fff;
  color: #1A2537;
  border-radius: 7px;
  padding: 7px 14px;
  margin-bottom: 8px;
}

/* ==================
   FOOTER
   ================== */
footer {
  background: #1A2537;
  color: #F9F7F1;
  width: 100%;
  padding-top: 28px;
}
.footer-main, .footer-contact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
}
.footer-main {
  justify-content: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-left: 16px;
}
.footer-nav a {
  color: #F9F7F1;
  opacity: 0.85;
  font-size: 1rem;
  font-family: 'Montserrat', Georgia, serif;
  transition: color 0.18s, opacity 0.18s;
  border-radius: 3px;
  padding: 4px 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A5C462;
  opacity: 1;
  background: #fff1;
}
.footer-contact {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  gap: 8px;
  color: #F9F7F1;
  font-size: 0.97rem;
}
.footer-contact img {
  margin-right: 9px;
  vertical-align: middle;
  display: inline-block;
}
.footer-contact a {
  color: #A5C462;
}
.footer-bottom {
  font-size: 0.96rem;
  margin-top: 22px;
  padding-bottom: 10px;
  color: #d7dbc0;
}

/* ===========================
   FLEXBOX CARD & CONTENT SYSTEMS
   =========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(26,37,55,0.06);
  padding: 24px 20px 18px 24px;
  min-width: 230px;
  flex: 1 1 255px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =================
   INTERVIEWS & BLOCKQUOTES
   ================= */
blockquote {
  border-left: 4.5px solid #A5C462;
  background: #fff;
  color: #232C3B;
  border-radius: 10px;
  margin: 20px 0;
  padding: 18px 24px 18px 18px;
  font-style: italic;
  font-size: 1.13rem;
}

/* ============
   ADDRESS STYLING
   ============ */
address {
  font-style: normal;
  background: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 8px;
  color: #1A2537;
  font-size: 1.02rem;
  box-shadow: 0 2px 8px rgba(26,37,55,0.04);
}

/* ============
   SECTION SPACING
   ============ */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =====================
   COOKIE BANNER + MODAL
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffaf5;
  color: #1A2537;
  box-shadow: 0 -4px 18px rgba(26,37,55,0.12);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  transition: transform 0.33s cubic-bezier(0.35, 0, 0.26, 1);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner__text {
  font-size: 1.06rem;
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  border-radius: 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Georgia, serif;
  padding: 7px 23px;
  cursor: pointer;
  outline: none;
  border: none;
  margin-left: 0;
  margin-bottom: 0;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(165, 196, 98, 0.09);
  transition: background 0.22s, color 0.22s;
  min-width: 108px;
}
.cookie-btn.accept {
  background: #A5C462;
  color: #1A2537;
  border: 2px solid #A5C462;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #91ac4f;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #1A2537;
  border: 2px solid #d2d5bd;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  border: 2px solid #A5C462;
  color: #A5C462;
}
.cookie-btn.settings {
  background: #fff;
  color: #A5C462;
  border: 2px solid #A5C462;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #A5C462;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background: #fff;
  color: #1A2537;
  box-shadow: 0 10px 50px rgba(26,37,55,0.20);
  border-radius: 14px;
  transform: translate(-50%, -50%) scale(0.97);
  z-index: 99999;
  width: 96vw;
  max-width: 420px;
  padding: 30px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 1;
  transition: opacity 0.26s, transform 0.28s;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__header {
  font-size: 1.33rem;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-modal__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 9px;
}
.cookie-toggle-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #dce5bd;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.24s;
}
.cookie-toggle:checked {
  background: #A5C462;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3.5px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.26s;
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 1.32rem;
  background: none;
  border: none;
  color: #1A2537;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 20;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #A5C462;
}
.cookie-modal__save {
  margin-top: 10px;
}

/* =====================
   RESPONSIVE (MOBILE FIRST)
   ===================== */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 6vw;
  }
  .features-list, .strategy-list, .investor-grid, .team-list, .testimonial-grid, .blog-list, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  header .container,
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .main-nav,
  .footer-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta.primary {
    margin-left: 0;
    margin-top: 8px;
  }
  .features-list,
  .strategy-list,
  .investor-grid,
  .team-list,
  .testimonial-grid,
  .blog-list,
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .features-list li,
  .strategy-list li,
  .investor-profile,
  .blog-preview,
  .testimonial-card {
    min-width: unset;
    width: 100%;
  }
  .content-wrapper {
    gap: 14px;
  }
  .section,
  section {
    padding: 28px 5vw;
    margin-bottom: 36px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-contact {
    padding-top: 8px;
    gap: 7px;
    font-size: 0.98rem;
  }
  .categories {
    max-width: 100%;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 18px 8vw 18px 6vw;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  .cta.primary, .cta.secondary, .cookie-btn {
    font-size: 0.99rem;
    padding: 8px 13vw;
  }
  .footer-contact, .footer-nav, .categories ul {
    font-size: 0.97rem;
  }
  .section, section {
    padding: 17vw 2vw;
  }
}

/* =====================
  MISC UTILS
  ===================== */
::-webkit-input-placeholder { color: #ACB2C6; }
::-moz-placeholder { color: #ACB2C6; }
:-ms-input-placeholder { color: #ACB2C6; }
::placeholder { color: #ACB2C6; }

hr {
  border: none;
  border-top: 1.5px solid #ece9dd;
  margin: 36px 0;
}

/* Micro-interactions */
.cta.primary, .cta.secondary, .cookie-btn, .read-more {
  transition: background 0.17s, box-shadow 0.2s, color 0.19s, border 0.18s, transform 0.22s;
}
.card:hover, .features-list li:hover, .strategy-list li:hover, .investor-profile:hover, .testimonial-card:hover, .blog-preview:hover {
  transform: translateY(-3px) scale(1.019);
  box-shadow: 0 6px 22px rgba(26,37,55,0.13);
}

/* Accessibility/Selection */
:focus {
  outline: 2px solid #A5C462;
  outline-offset: 2px;
}
::-moz-selection { background: #A5C462; color: #fff; }
::selection { background: #A5C462; color: #fff; }

/* ========================
   PRINT
   ======================== */
@media print {
  *, *:before, *:after { background: none !important; box-shadow: none !important; color: #000 !important; }
  header, .main-nav, .footer-main, .footer-bottom, .mobile-menu, .cookie-banner, .cookie-modal { display:none !important; }
}