/* WHERE Page Styles */

.where-page {
  background-color: #f1f4f6;
}

/* Navbar */
.where-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 32px 80px 16px;
  z-index: 999;
  transition: background-color 0.3s ease;
}

.where-navbar.scrolled {
  background-color: rgba(241, 244, 246, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 80px 12px;
}

.where-navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
}

.where-navbar-brand {
  flex: 1;
}

.where-navbar-brand .brand-text {
  color: #3b444a;
  transition: all 0.3s ease;
  text-decoration: none;
}

.where-navbar-brand .brand-text:hover {
  color: #000000;
}

/* Menu Dots Button */
.menu-dots-btn {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  padding: 0;
  align-items: center;
  justify-items: center;
  transition: all 0.3s ease;
}

.menu-dots-btn .dot {
  width: 4px;
  height: 4px;
  background-color: #3b444a;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.menu-dots-btn:hover .dot {
  background-color: #0f90e5;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

.side-menu.active {
  transform: translateX(0);
}

.side-menu-content {
  display: flex;
  flex-direction: column;
  padding: 0;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.side-menu-header {
  position: absolute;
  top: 30px;
  right: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  padding: 0;
  margin: 0;
  border: none;
}

.side-menu-header .brand-text {
  display: none;
}

.close-menu-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
  z-index: 1001;
}

.close-menu-btn:hover svg {
  stroke: #0f90e5;
}

.close-menu-btn svg {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.side-menu-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.side-menu-item {
  font-family: "Futura LT Pro", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  padding: 10px 0;
  letter-spacing: -0.4px;
}

.side-menu-item.active {
  color: #0f90e5;
}

.side-menu-item:hover {
  color: #0f90e5;
}

.side-menu-cta {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.lets-talk-btn {
  width: 100%;
  height: auto;
  padding: 20px;
  background: #0f90e5;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.lets-talk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 144, 229, 0.3);
}

.btn-text {
  font-family: "Futura LT Pro", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin: 0;
  padding: 0;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}

/* ============================================
   WHERE CONTENT
   ============================================ */

.where-content {
  width: 100%;
  overflow: hidden;
}

/* --- Shared Label Style --- */
.where-hero-label,
.model-label,
.ventures-label,
.consulting-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Futura LT Pro", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 3px;
  color: #0f90e5;
  text-transform: uppercase;
}

.label-line {
  width: 40px;
  height: 1px;
  background-color: #0f90e5;
}

/* ============================================
   HERO SECTION
   ============================================ */

.where-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 200px;
  position: relative;
}

.where-hero-inner {
  max-width: 900px;
  padding-bottom: 80px;
}

.where-hero-label {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.where-hero-title {
  font-family: "Monument Extended", sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  color: #3b444a;
  line-height: 1.05;
  margin: 0 0 40px 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.title-outline {
  -webkit-text-stroke: 2px #3b444a;
  color: transparent;
}

.title-accent {
  color: #0f90e5;
}

.where-hero-subtitle {
  font-family: "Futura LT Pro", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 24px);
  color: #666666;
  line-height: 1.7;
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.where-hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: "Futura LT Pro", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #999;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1s;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, #0f90e5, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   THE MODEL SECTION
   ============================================ */

.where-model {
  padding: 120px 80px;
  position: relative;
}

.model-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.model-label {
  margin-bottom: 64px;
}

.model-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.model-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 800px;
}

.model-title {
  font-family: "Monument Extended", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: #3b444a;
  line-height: 1.15;
  margin: 0;
}

.model-title .title-accent {
  color: #0f90e5;
}

.model-description {
  font-family: "Futura LT Pro", sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: #666666;
  line-height: 1.8;
  margin: 0;
}

.model-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  background: white;
  border-radius: 24px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.pillar-icon {
  width: 48px;
  height: 48px;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
}

.pillar-title {
  font-family: "Monument Extended", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #3b444a;
  letter-spacing: 2px;
  margin: 0;
}

.pillar-text {
  font-family: "Futura LT Pro", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   PHILOSOPHY BANNER
   ============================================ */

.where-philosophy {
  padding: 100px 80px;
  background-color: #3b444a;
  position: relative;
  overflow: hidden;
}

.where-philosophy::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #f1f4f6, transparent);
  z-index: 1;
}

.where-philosophy::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #f1f4f6, transparent);
  z-index: 1;
}

.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.philosophy-quote-mark {
  font-family: "Monument Extended", sans-serif;
  font-size: 120px;
  color: #0f90e5;
  opacity: 0.4;
  line-height: 0.6;
  margin-bottom: 20px;
}

.philosophy-quote {
  font-family: "Futura LT Pro", sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 38px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin: 0;
  border: none;
  padding: 0;
}

.quote-accent {
  color: #0f90e5;
}

/* ============================================
   CURRENT VENTURES
   ============================================ */

.where-ventures {
  padding: 120px 80px;
}

.ventures-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ventures-label {
  margin-bottom: 64px;
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.venture-card {
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.venture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.venture-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.venture-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

.status-text {
  font-family: "Monument Extended", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #22c55e;
  letter-spacing: 2px;
}

.venture-name {
  font-family: "Monument Extended", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 36px);
  color: #3b444a;
  line-height: 1.1;
  margin: 0;
}

.venture-domain {
  font-family: "Futura LT Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0f90e5;
  margin: 0;
  letter-spacing: 0.5px;
}

.venture-line {
  width: 40px;
  height: 2px;
  background: #0f90e5;
}

.venture-description {
  font-family: "Futura LT Pro", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

.venture-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Futura LT Pro", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #0f90e5;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.venture-link:hover {
  gap: 12px;
  color: #0a6db3;
}

.venture-link svg {
  transition: transform 0.3s ease;
}

.venture-link:hover svg {
  transform: translate(2px, -2px);
}

/* ============================================
   CONSULTING SECTION
   ============================================ */

.where-consulting {
  padding: 120px 80px;
  background: white;
}

.consulting-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.consulting-label {
  margin-bottom: 64px;
}

.consulting-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
}

.consulting-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.consulting-title {
  font-family: "Monument Extended", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: #3b444a;
  line-height: 1.15;
  margin: 0;
}

.consulting-description {
  font-family: "Futura LT Pro", sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: #666666;
  line-height: 1.8;
  margin: 0;
}

.consulting-services {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.consulting-service {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.consulting-service:first-child {
  padding-top: 0;
}

.consulting-service:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0f90e5;
  flex-shrink: 0;
  margin-top: 8px;
}

.service-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-name {
  font-family: "Monument Extended", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3b444a;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

.service-desc {
  font-family: "Futura LT Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

.consulting-cta {
  display: flex;
}

.consulting-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Futura LT Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0f90e5;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 16px 0;
  border-bottom: 1px solid #0f90e5;
}

.consulting-link:hover {
  gap: 16px;
  color: #0a6db3;
  border-color: #0a6db3;
}

.consulting-link svg {
  transition: transform 0.3s ease;
}

.consulting-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   CLOSING CTA
   ============================================ */

.where-closing {
  padding: 120px 80px 140px;
  text-align: center;
  background-color: #f1f4f6;
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
}

.closing-pretext {
  font-family: "Futura LT Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0f90e5;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.closing-title {
  font-family: "Monument Extended", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 64px);
  color: #3b444a;
  line-height: 1.15;
  margin: 0 0 48px 0;
}

.closing-cta {
  display: flex;
  justify-content: center;
}

.where-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #0f90e5;
  color: white;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.where-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 144, 229, 0.35);
}

.where-cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-text {
  font-family: "Futura LT Pro", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
}

.cta-arrow {
  transition: transform 0.3s ease;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .where-navbar {
    padding: 24px 60px 16px;
  }

  .where-hero {
    padding: 140px 60px 80px;
  }

  .where-model {
    padding: 100px 60px;
  }

  .model-pillars {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .where-philosophy {
    padding: 80px 60px;
  }

  .where-ventures {
    padding: 100px 60px;
  }

  .ventures-grid {
    grid-template-columns: 1fr 1fr;
  }

  .where-consulting {
    padding: 100px 60px;
  }

  .consulting-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .where-closing {
    padding: 100px 60px 120px;
  }
}

@media (max-width: 768px) {
  .where-navbar {
    padding: 24px 20px 16px;
  }

  .where-navbar.scrolled {
    padding: 16px 20px 10px;
  }

  .where-hero {
    padding: 120px 24px 60px;
    min-height: 85vh;
  }

  .where-hero-label {
    margin-bottom: 24px;
  }

  .where-hero-title {
    margin-bottom: 24px;
  }

  .where-hero-scroll-hint {
    left: 24px;
    bottom: 24px;
  }

  .hide-mobile {
    display: none;
  }

  .where-model {
    padding: 80px 24px;
  }

  .model-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pillar-card {
    padding: 36px 28px;
  }

  .model-description {
    font-size: 17px;
  }

  .where-philosophy {
    padding: 80px 24px;
  }

  .where-philosophy::before,
  .where-philosophy::after {
    height: 40px;
  }

  .philosophy-quote-mark {
    font-size: 80px;
  }

  .where-ventures {
    padding: 80px 24px;
  }

  .ventures-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .venture-card {
    padding: 36px 28px;
  }

  .where-consulting {
    padding: 80px 24px;
  }

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

  .consulting-description {
    font-size: 17px;
  }

  .where-closing {
    padding: 80px 24px 100px;
  }

  .side-menu {
    max-width: 100%;
  }

  .side-menu-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .side-menu-header {
    top: 22px;
    right: 16px;
  }

  .side-menu-item {
    font-size: 28px;
  }

  .where-navbar {
    padding: 24px 20px 16px;
  }

  .where-hero {
    padding: 100px 20px 60px;
  }

  .where-model {
    padding: 60px 20px;
  }

  .model-label {
    margin-bottom: 40px;
  }

  .model-title {
    font-size: 24px;
  }

  .model-description {
    font-size: 16px;
  }

  .where-philosophy {
    padding: 60px 20px;
  }

  .where-ventures {
    padding: 60px 20px;
  }

  .ventures-label {
    margin-bottom: 40px;
  }

  .venture-name {
    font-size: 24px;
  }

  .venture-description {
    font-size: 16px;
  }

  .where-consulting {
    padding: 60px 20px;
  }

  .consulting-label {
    margin-bottom: 40px;
  }

  .consulting-title {
    font-size: 24px;
  }

  .consulting-description {
    font-size: 16px;
  }

  .service-name {
    font-size: 14px;
  }

  .service-desc {
    font-size: 15px;
  }

  .where-closing {
    padding: 60px 20px 80px;
  }

  .closing-pretext {
    font-size: 13px;
  }

  .where-cta-btn {
    padding: 18px 32px;
    width: 100%;
    justify-content: center;
  }
}
