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

body {
  font-family: "Segoe UI", sans-serif;
  background: #F3F4F6;
  color: #0A0A0A;
  min-height: 100vh;
}

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
.navbar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FF6900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo svg {
  width: 20px;
  height: 20px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-title {
  font-size: 15px;
  font-weight: 700;
  color: #0A0A0A;
}

.nav-sub {
  font-size: 11px;
  color: #9CA3AF;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #4A5565;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}

.nav-link:hover {
  color: #0A0A0A;
  text-decoration: none;
}

.nav-link.active {
  color: #FF6900;
  font-weight: 500;
}

.nav-icon {
  width: 16px;
  height: 16px;
}

.active-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6900;
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-user {
  font-size: 13px;
  color: #4A5565;
}

.nav-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

/* ════════════════════════════
   MAIN
════════════════════════════ */
.main {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.hero-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FF6900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.hero-logo svg {
  width: 36px;
  height: 36px;
}

.hero-title {
  font-size: 28px;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.2;
}

.hero-sub {
  font-size: 15px;
  color: #4A5565;
  line-height: 1.6;
}

/* ── Two column info cards ── */
.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.info-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon.orange {
  background: #FFF0E6;
}

.card-icon.blue {
  background: #EBF3FB;
}

.card-label {
  font-size: 14px;
  font-weight: 600;
  color: #0A0A0A;
}

.card-text {
  font-size: 13px;
  color: #4A5565;
  line-height: 1.65;
}

/* ── Why PantryChef ── */
.why-section {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 28px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 2px;
}

.why-text {
  font-size: 13px;
  color: #4A5565;
  line-height: 1.7;
}

/* ── Meet the Team ── */
.team-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.team-title {
  font-size: 22px;
  font-weight: 700;
  color: #0A0A0A;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

/* Push last two cards to center by using a nested flex trick */
.team-grid .team-card:nth-child(4),
.team-grid .team-card:nth-child(5) {
  /* handled by grid — they just fall into columns 1 and 2 naturally */
}

.team-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-img-placeholder {
  background: #F3F4F6;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.team-name {
  font-size: 14px;
  font-weight: 700;
  color: #0A0A0A;
}

.team-role {
  font-size: 13px;
  color: #9CA3AF;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 680px) {
  .two-col-cards {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }
}