/* ============================================= */
/*           COMMON STYLES – ALL PAGES           */
/* ============================================= */

*, *::before, *::after {margin:0;padding:0;box-sizing:border-box}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #fff;
  color: #364153;
  line-height: 1.6;
  overflow-x: hidden;
}



/* ==================== HEADER BASE ==================== */
header {
  position: relative;
  min-height: 100px;
  background: #fff;
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | nav | buttons */
  align-items: center;
  padding: 0 50px;
  z-index: 1000;
  box-sizing: border-box;
}

/* ==================== LOGO ==================== */
header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  max-height: 64px;
  max-width: 180px;
  width: auto;
}

/* ==================== NAV (ALWAYS CENTERED) ==================== */
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 60px);
}

header nav a {
  font-family: 'Livvic', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  padding: 10px 4px;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #0f3dde;
}

header nav a.active {
  color: #0f3dde;
  font-weight: 700;
}

header nav a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0f3dde;
  border-radius: 2px;
}

/* ==================== BUTTONS ==================== */
header .buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

header .btn {
  min-width: 130px;
  height: 40px;
  padding: 10px 24px;
  border-radius: 22px;
  font-family: 'Livvic', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

header .btn.signup {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(180deg, #faa74a, #0f3dde) border-box;
  color: #000;
}

header .btn.get-started {
  background: linear-gradient(92deg, #0f3dde, #ff6900);
  color: #fff;
}

header .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(15, 61, 222, 0.25);
}

/* ==================== TABLET ==================== */
@media (max-width: 1024px) {
  header {
    padding: 0 32px;
    min-height: 90px;
  }

  header nav a {
    font-size: 18px;
  }

  header .btn {
    min-width: 120px;
  }
}

/* ==================== MOBILE ==================== */
@media (max-width: 768px) {
  header {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
    text-align: center;
  }

  header .logo {
    justify-content: center;
  }

  header nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  header .buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  header .btn {
    flex: 1;
    max-width: 160px;
  }
}

/* ==================== SMALL MOBILE ==================== */
@media (max-width: 480px) {
  header nav a {
    font-size: 14px;
  }

  header .logo img {
    max-width: 120px;
  }

  header .btn {
    font-size: 13px;
    min-width: 110px;
    padding: 10px 18px;
  }
}





.founder-card {
background: #fff;
border-radius: 8px;
padding: 16px;
margin-bottom: 16px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}


.click-more {
color: #0066cc;
cursor: pointer;
font-weight: bold;
}


.founder-content {
display: none; /* hidden on page */
}


/* Popup */
.popup-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.6);
display: none;
z-index: 1000;
}


.popup-overlay.active {
display: flex;
align-items: center;
justify-content: center;
}


.popup-content {
background: #fff;
width: 90%;
max-width: 1000px;
max-height: 90vh;
border-radius: 10px;
position: relative;
}


.popup-body {
padding: 20px;
overflow-y: auto;
max-height: 90vh;
}


.close-btn {
position: absolute;
top: 10px;
right: 14px;
font-size: 28px;
cursor: pointer;
}



ul {
padding-left: 20px;
}


hr {
margin: 20px 0;
border: none;
border-top: 1px solid #ddd;
}


blockquote {
margin-top: 16px;
padding-left: 14px;
border-left: 4px solid #007bff;
font-style: italic;
color: #444;
}






















/* =========================
   FOOTER BASE
========================= */

.hs-footer {
  background: linear-gradient(96deg, #faa74a 17%, #fcc88e 55%, #fff 100%);
  padding: 80px 50px 40px;
  margin-top: 50px;
}

.hs-footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================
   GRID (DESKTOP)
========================= */

.hs-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* =========================
   TYPOGRAPHY
========================= */

.hs-col h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
  color: #000;
}

.hs-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hs-col ul li {
  margin-bottom: 10px;
}

.hs-col ul li a {
  color: rgba(0,0,0,0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color .2s;
}

.hs-col ul li a:hover {
  color: #000;
}

/* =========================
   LOGO & DESCRIPTION
========================= */

.hs-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hs-logo-icon {
  background: #000;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
}

.hs-logo h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.hs-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0,0,0,0.7);
  max-width: 220px;
}

/* =========================
   SOCIALS
========================= */

.hs-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.hs-social-link {
  background: rgba(0,0,0,0.1);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: .2s;
}

.hs-social-link:hover {
  background: rgba(0,0,0,0.2);
}

/* =========================
   SUBSCRIBE
========================= */

.hs-subscribe {
  display: flex;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.2);
  max-width: 340px;
}

.hs-subscribe input {
  flex: 1;
  padding: 0 20px;
  border: none;
  background: rgba(0,0,0,0.05);
  font-size: 16px;
  outline: none;
}

.hs-subscribe button {
  width: 56px;
  background: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* =========================
   FOOTER BOTTOM
========================= */

.hs-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 15px;
  color: rgba(0,0,0,0.6);
}

.hs-bottom-links {
  display: flex;
  gap: 30px;
}

.hs-bottom-links a {
  color: rgba(0,0,0,0.6);
  text-decoration: none;
  font-weight: 500;
}

.hs-bottom-links a:hover {
  color: #000;
}

.hs-copyright img {
  height: 25px;
  width: 40px;
  margin-bottom: -7px;
}

/* =====================================================
   TABLET (STACK GRID CLEANLY)
===================================================== */

@media (max-width: 1024px) {

  .hs-footer {
    padding: 60px 30px 40px;
  }

  .hs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hs-desc {
    max-width: 100%;
  }
}

/* =====================================================
   MOBILE (VERTICAL FLOW)
===================================================== */

@media (max-width: 768px) {

  .hs-footer {
    padding: 50px 20px 30px;
  }

  .hs-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hs-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hs-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hs-subscribe {
    width: 100%;
    max-width: 100%;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

  .hs-logo h3 {
    font-size: 24px;
  }

  .hs-col h4 {
    font-size: 17px;
  }

  .hs-footer-bottom {
    font-size: 14px;
  }
}






/* COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 920px;
  width: calc(100% - 40px);
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 9999;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  font-size: 14px;
  color: #444;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn.accept {
  background: #2f80ed;
  color: #fff;
}

.cookie-btn.decline {
  background: #f2f2f2;
  color: #333;
}

/* Mobile */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
